Reputation: 178
I've a .fla program that decompresses ZIP files using BiteArray. In order to use this BiteArray I change the publish settings of the document in Adobe AIR.
I tried to embed this app in an HTML page as you would for a swf file, so with SWFObject, but nothing is shown, even if I run the swf locally.
There is a particular way to manage an swf in Adobe AIR?
Upvotes: 1
Views: 631
Reputation: 646
There is no way you can embed an AIR app in a html. AIR is for desktop applications (or mobile).
But you do not need AIR to use ByteArray
...
The code you found may use the File
class. This one is AIR only.
You'll have to work that around.
Upvotes: 5