This content has been marked as final.
Show 3 replies
-
1. Re: function onMouseDown(){
Ned Murphy Oct 3, 2011 2:27 PM (in response to Ron Colmen)Why not just use an onPress for the movieclip. A MouseDown event occurs regardless of where you click, but you can assign an onPress to the movieclip containing the shape and clicking down on it will trigger...
mc.onPress = function(){
trace("whatever you want to have happen");
}
-
2. Re: function onMouseDown(){
Ron Colmen Oct 4, 2011 4:40 AM (in response to Ned Murphy)Thanks Ned.
-
3. Re: function onMouseDown(){
Ned Murphy Oct 4, 2011 4:44 AM (in response to Ron Colmen)You're welcome Ron



