I'm looking to make a project in Flash that can dynamically load and unload other SWF files, where a SWF file can loaded, and a Movieclip inside can send information to the framework, and the framework can send information to the Movieclip.
Thanks!
|
|
I'm looking to make a project in Flash that can dynamically load and unload other SWF files, where a SWF file can loaded, and a Movieclip inside can send information to the framework, and the framework can send information to the Movieclip. Thanks! |
|||
|
|
|
|
To load the the swf files you use the Loader class. Then to pass variables to the loaded swf file you have to create a setter in the documentclass of that swf file. Here's an simple example:
As you can see, you load the file, instansiate it and then pass a variable into it. Now to the other part how to pass variables back I would probably use an event to pass it back. So you have an event listener in the main document class which listens for an event in the loaded swf. When an event is dispatchen the main class either does something or retrives a variable or sets a variable in the loaded swf with the getter or setter function. How to set up a event dispatch is pretty straight forward. I hope I made some sense. Otherwise just comment and I'll try to explain. |
||||
|