jingman
July 7th, 2003, 02:31 AM
I have some simple script:
Mouse.addListener(_root);
_root.onMouseDown = function(){
trace("bangarang");
}
I debug, and when I press the mouse, it traces TWICE! Why is this? (Does the same thing for onMouseUp).
Mouse.addListener(_root);
_root.onMouseDown = function(){
trace("bangarang");
}
I debug, and when I press the mouse, it traces TWICE! Why is this? (Does the same thing for onMouseUp).