alertactionbutton.as

来自「国外强大的xml相册」· AS 代码 · 共 27 行

AS
27
字号
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 + =
减小字号Ctrl + -
显示快捷键?