tags:

views:

231

answers:

1

how can i load a movie clip using AS2 from library into my stage. and how to unload it. could u help me ? i appreciate it

A: 

Hi

In the library, you must to assign a Linkage (right click on th mc) and chech Export for Actionscript and set a name (for example myMovieClip). That name will be used by attachMovie method:

this.attachMovie('myMovieClip', 'myMovieClipNewName', depth);

and for remove;

this.removeMovieClip('myMovieClipNewName');

chaus

returnvoid