📄 alertactionbutton.as
字号:
import pssclasses.icons.*;
class AlertActionButton extends MovieClip {
private var label_mc:MovieClip;
private var topWhite_mc:MovieClip;
private var __this:MovieClip;
function AlertActionButton() {
this.useHandCursor = false;
label_mc._alpha = 70;
this.onRollOver = function() {
topWhite_mc._alpha = 70;
label_mc._alpha = 100;
};
this.onRollOut = function() {
topWhite_mc._alpha = 100;
label_mc._alpha = 70;
};
this.onReleaseOutside = function() {
topWhite_mc._alpha = 100;
label_mc._alpha = 70;
};
this.onPress = function() {
topWhite_mc._alpha = 100;
label_mc._alpha = 70;
};
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -