vote up 0 vote down star

I have an assignment where at one point, I have to put a movieclip on the stage. I can't just drag it and place it and set it to visible at some point in time, I have to use Actionscript to pull it from the library and make it appear on the stage at certain X/Y coordinates.

My assignment says that the function attachMovie() would be useful, but I don't see how, since that's used for attaching movieclips to other movieclips...

Can anybody help here?

flag

Actionscript 2 I pressume? – Kriem Apr 26 at 12:32
Yes, Actionscript 2 in CS3 on Windows – WebDevHobo Apr 26 at 17:00

1 Answer

vote up 2 vote down check

You can use attachMovie with the stage.

In AS2 is something like:

_root.attachMovie("name_of_the_original_clip", "name_of_the_new_clip", _root.getNextHighestDepth());

In AS2 the stage is considered a MovieClip in itself. I hope it helps!

link|flag
Indeed, also, the reason it didn't work was because I forgot to add linkage... – WebDevHobo Apr 28 at 8:57
I just changed the variable names. Sorry, I typed too quickly & it's difficult remember the old AS2! :) – ozke Apr 29 at 9:38
No problems. I deleted my answer below and the original comment here. They're redundant now. :) Thanks for the update! – Kriem May 7 at 20:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.