Attach a library item to the stage with AS2

Hey all,

Long time since i’ve done this and i’m a little rusty.
How do I attach a library item to the Stage using AS2??

[LEFT][AS]
Stage.attachMovie(“myLogo”, “myLogo”, 1);
[/AS]
[/LEFT]

Does not seem to work??

Thanks in advance!
George

_root.attachMovie(bla bla bla);

or

_root.my_mc.attachMovie(bla bla bla);

:wink:

yep, just not Stage.

this.attachMovie(“thing”, “thing1”, 1); is also fine, and attaches it wherever you place the code.

as long as you dont forget to set the linkage name!

Yeh i got it working fine now - thanks heaps all!

Haha needed that touchup class!