brainpudding
Technical User
OK here is what im trying to do. I have a movie clip with 2 frames, a diff graphic on each frame. on frame one of the main time line (thats where i try to keep all my code now.. thanks to Bill Watson) I have this code
//Mouse
//**************************************************************
Button.prototype.onRollOver = function(){
bluedot.gotoAndStop(2);
}
Button.prototype.onRollOut = function(){
bluedot.gotoAndStop(1);
}
I did this because i want it to change the mouse when ever you mouse over a button. (there is probably a better way to do that)...
ANYWAY the question is what would the code look like if i wanted it so that each time the user depressed the mouse a small movie clip would load at that place and run then disappear.
i am trying to make a cursor that look like a scope and when you click it kinda shoots a bullethole into the flash .. then after like a second it fades away. i can do the fading thing the old way in the movie .. unless there is a easier way..
Thanks
//Mouse
//**************************************************************
Button.prototype.onRollOver = function(){
bluedot.gotoAndStop(2);
}
Button.prototype.onRollOut = function(){
bluedot.gotoAndStop(1);
}
I did this because i want it to change the mouse when ever you mouse over a button. (there is probably a better way to do that)...
ANYWAY the question is what would the code look like if i wanted it so that each time the user depressed the mouse a small movie clip would load at that place and run then disappear.
i am trying to make a cursor that look like a scope and when you click it kinda shoots a bullethole into the flash .. then after like a second it fades away. i can do the fading thing the old way in the movie .. unless there is a easier way..
Thanks