PDA

View Full Version : removing a movie clip...



derleek
July 29th, 2008, 07:18 PM
So i am by no means a flash guru... or even really proficient lol

What i need is the ability to remove a flash clip after it is done running, so the content that is under the flash video can be interacted with.

I have been doing some serious inter-web browsing and came up with 'MovieClip.removeMovieClip()' but i don't know how this function can be used.... is it actionscript?

further more can this even be done??!?

saxx
July 29th, 2008, 07:25 PM
Yes it can be done fairly easy

removeChild(moveclipsname)
moveclipsname = null;

That will remove it from the display list and make it null.
You could set up a timer to remove it after a certain amount of time, look up timer events.