Flash AS2 help
Flash AS2 help
Out of context: Reply #5
- Started
- Last post
- 5 Responses
- thatblokemike0
you've got 2 events you can take advantage of...
if your using something like..
myVidPlayer.onPress = function():Void
{
startDrag(this);
}you will still have your mouseDown available
myVidPlayer.onMouseDown = function():Void
{
trace("I was called regardless of the drag");
}I think thats probably better than messing around with depths and nesting clips.
- in fact swap em round so mouseDown is your drag.thatblokemike