Actionsript help?
Actionsript help?
Out of context: Reply #7
- Started
- Last post
- 11 Responses
- unfittoprint0
you could use this function inside your mouse movieclip:
changeMouse = function (){
if (_root._xmouse>Stage.width/2) {
gotoAndStop("right");
} else {
gotoAndStop("left");
}
}changeLoop = setinterval(this, "changeMouse", 30)