views:

17

answers:

0

We're writing an iPad app that saves out information as a plist for later reading by a Flash movie. Originally we designed the plist to export out as a simple plain text xml file and the Flash player read that fine. The problem with that was that the files were monumentally big and verbose so we converted it over to a binary plist. Unfortunately after making the changes necessary for a binary xml file to be read on the Flash end and the iOS device end, we're having no luck with this new file going through.

Has anyone developed something using binary Plists to talk between an iOS/Mac device and Flash? Are there encoding issues or something else we should be thinking about? I'm even cool with doing a work around on the server end to transform a binary plist to a binary xml file that Flash can read if that is a solution.

Many thanks.