When creating a 3d environment with lots of movement, beware of InteractiveScene3DEvent. Im my scene i have a number of moving objects that have listeners that fire InteractiveScene3DEvent’s. Object_over and object_out, (the equivalents to mouse_over and mouse_out on a display object in 2D) will NOT RECEIVE those events if the mouse is kept still. Think… Read more »
Monthly Archives: November 2009
AS3 Json integration quick and dirty
Ive been dealing with Json data recently which may be a faster/less convoluted alternative for handling data between backend and frontend interfaces than xml. This is probably the quickest and lightweight serialization i’ve found that works. Credit goes to http://www.ekameleon.net for the class file, and can be found here. Implementation goes something like this:- import… Read more »
AS3 mouseEnabled not working with nested Movieclips
Had a little bit of a problem with mouseEnabled= false not working. I had two movieclips. One was a button and one a ‘tooltip’ mc that was on top of the button. The button mc had mouseEvent listeners for mouseover and mouseout. Now the standard thing to do to stop recieving mouse interactivity on a… Read more »