flash - Place a movie clip on the stage via Actionscript -


I have an assignment, where at one point, I have to put a movie clip on the stage. I can not just drag it and set it to be visible at any time, I have to use the action script to pull it from the library and it must be displayed on the platform on some X / Y coordinates.

My assignment says that the function attachMovie () will be useful, but I do not think how, this is used to connect filmclips to other movie clips. .

Can anyone help here?

You can use the movie attached to the stage.

AS2 is something like this:

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

The forum in AS2 is considered to be a movie clip in its own right. I hope it helps!


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -