More articles : » Getting Reliable z-index Cross-BrowserTurns out it is not as easy as one might think to get thecorrect z-index of an element using a javascript call like $(element).css(‘z-index’). The problem is how browser vendors apply the z-indexto an element. But, no worries I have created a... » Automatic Downloader in PythonThis article will walk you through creating a python script to download all files on a web-page as fast as possible. The same script can then be used to download all sorts of content on the web, especially when combining the code with a web crawler.... » Script Tag Stripping Workaround in JoomlaIf you ever tried inserting javascript into a Joomla article you may find it is a very difficult task; so, I went a head and made a plug-in to make this fast and easy. The reason why joomla makes it so difficult is because cross site scripting... » Multiple Popup Windows WorkaroundPop-up window management poses a challenge in itself, but with an elusive Firefox bug effecting this process, it may seem impossible to do it well. I will present you with an account of my struggle with this issue and the simple solution I found for... » Analog Clock in FlashAnalog clocks have always fascinated me, not just because they look great (think sports watches) but the challenge they present. How do we animate an analog clock using a computer? Well I decided to once and for all answer this question... |






Comments
You simply cannot make an object remove itself, object do not tend to commit suicide (and that is true regardless of the programming language you use). You would usually want to remove the object from it's parents.
You might try something like this:
_root.removeMovieClip (RainDrop);
OR
this.removeMovieClip (RainDrop); // in AS3 _parent and _root were removed
RSS feed for comments to this post.