- differences between jet and odbc
- sugarcrm not inserting email
- select random records from access
- button click event firing twice
- how to send an email using cdosys
- installing perl on win2003 64 bit
- asp.net page event order
- rewrite rule for subdomains only
- extra items in javascript array
- IE7 margin auto not working
- IE7 border style dotted glitch
- ByRef and ByVal in vbscript
- weather rss feed
- Classic asp crib sheet
- Firefox onsubmit image change
- limit records in access
- AccessDataSource is thick
- double margins in IE6
- extra image padding in html emails
- decimal places in linux flash player
- broken emails in outlook 2007
- double spaced IE list items
- cannot remove movieclip
articles:
cannot remove movieclip
(this certainly applies to flash 7 and 8)
Have you ever dynamically created a movieclip using actionscript and then not been able to remove it again?
The chances are because the flash player's depth manager is playing silly devils. If you have any components in your swf then the depth manager will have its sticky little fingers all over your swf. This plays havoc with dynamically generated movieclips.
The short answer to this problem is that you need to swapDepths for the movieclip you are trying to remove before you can remove it. I would suggest swapping to a depth of 63000, and then removing the movieclip.
Have you ever dynamically created a movieclip using actionscript and then not been able to remove it again?
The chances are because the flash player's depth manager is playing silly devils. If you have any components in your swf then the depth manager will have its sticky little fingers all over your swf. This plays havoc with dynamically generated movieclips.
The short answer to this problem is that you need to swapDepths for the movieclip you are trying to remove before you can remove it. I would suggest swapping to a depth of 63000, and then removing the movieclip.