Movies in a Library

Hi to all!

I have created an indipendent movie, and I imported this movie inside the library of a new swf file. Now I need to load it from inside the library to my frames during runtime. What I have is a set of buttons, and when the user clicks on one of the buttons this movie should be loaded from the library to my frames!!
Does anybody know how to do this, or whether it can be done?

Thanks to all in advance
Sim

in the library pane selec your movie clip and choose properties, select export for runtime sharing or something like that then on your button use the code attachmovie

The attachMovie syntax is like this:

attachMovie(“Name of symbol in Library”, “give it a new instance name here”, level);

ex.

attachMovie(“Symbol 1”, “symbol_1”, 1);

Thanks I’ll try that! :slight_smile: