📄 bellicon.as
字号:
#initclip 10
this.pressed = false;
#endinitclip
stop();
this.onMouseDown = function() {
if (this._parent.btnBell.getEnabled() && this._parent.btnBell._visible && this._parent.btnBell.hitTest(_root._xmouse, _root._ymouse, false)) {
this.pressed = true;
gotoAndStop(2);
}
};
this.onMouseUp = function() {
this.pressed = false;
gotoAndStop(1);
};
this.onMouseMove = function() {
if (this.pressed) {
if (this._parent.btnBell.hitTest(_root._xmouse, _root._ymouse, false)) {
gotoAndStop(2);
} else {
gotoAndStop(1);
}
}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -