move a movieclip to top of everything in Actionsctipt 3.0
AS3Flash
A quick and easy way to move a movieclip to top of everything in Actionsctipt 3.0: function moveToTop( mc:DisplayObject ):void { (mc.parent != null) ? mc.parent.setChildIndex(mc, mc.parent.numChildren-1) : null; }
For some reason the fscommand(“exec”,”some_app.app”); does not work when you publish a mac projector through flash CS5. the fscommand(“exec”,”some_exe.exe”); works fine when...
I recently started developing a Facebook App, and i thought of sharing my experiences with all the people trying to get them started to build there own first app for facebook. By the way this is my first ever post in the...