cc.stop();//cc要是一個動態的mc
//enterframe 按鈕上運用_________________
cc.onRollOver = function() {
cc.onEnterFrame = function () {
cc.nextFrame();
trace(cc._x)
}
};//當滑鼠移上去之後、處發一個onEnterFrame 事件、不停的cc.nextFrame();
cc.onRollOut = function() {
cc.onEnterFrame = function () {
cc.prevFrame();
trace(cc._x)
//delete cc.onEnterFrame;
}
};
};//當滑鼠離開去之後、處發一個onEnterFrame 事件、不停的cc.prevFrame();
//記得可以在onpress的時候關掉onEnterFrame
No comments:
Post a Comment