Matt Ganz wrote:
i've been using this method to listen for mouse movements and mouse clicks on the first frame of my .fla
You might want to consider to use a MouseListener.
var mouseListener:Object = new Object();
mouseListener.onMouseUp = function() {
print "CLICKERDE CLICK";
}
Mouse.addListener( mouseListener );
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

