pass value swt to swf
I have a two swf, index and gallery. I am call gallery.swf in to index.swf.
loadMovie("image_gallery/gallery.swf",1);
I want to make pass value from 开发者_开发问答gallery.swf.
How can I do this.
Thanks for answers.
You can send values in the URL, like this:
loadMovie("image_gallery/gallery.swf?variableName=value",1);
精彩评论