Im working on a banner testing application coded in flashdevelop on Adobe Air 1.5, testing sizes, kb, animation time etc. One of the tests ran by the application is clickthroughs via clicktags. Since most of these banners are coded in AS2, I’m injecting the variables via querystring when loading the banners swf files (via a browse/drag drop File reference).
var req:URLRequest = new URLRequest("banner300x250.swf?clickTag=hello");
This works fine for _root references to clicktags, but when the banner is looking for the variable in _level0 I just can’t figure out how to write these variables.
I’ve tried to load a bridge AS2 movie and set the variables there, something like AVM2 localConnection --> AVM1 localConnection --> AVM1 banner, wich worked fine on flash IDE testings, reading all _level0 on the AVM1 bridge, but compiled on Air became into a security errors storm and *undefined *values for _level0.
Probably I can’t understand adobe Air sandbox, but if anyone have a clue or any scratch to start trying something new on this I’ll be thankful. Sorry for my english!