我不确定我是否正确使用了这个转换。我试图在单击一次按钮时锁定按钮的颜色调整。我试着开始调整 alpha=0,它工作正常。我对 as3 不是很好,所以一点帮助会很好。
我收到此错误:“ReferenceError:错误 #1056:无法在 flash.display.SimpleButton 上创建属性 colorTransform。在 movie_fla::MainTimeline/onMouseClickEvent()”
谢谢特里
stop();
this.wheelsMain.inner4.Inner1btn.addEventListener(MouseEvent.CLICK, onMouseClickEvent);
function onMouseClickEvent(event:Event) {
Object(this).wheelsMain.inner4.Inner1btn.colorTransform = new ColorTransform(1, 1, 1, 1, 20, 0, 0,0);
}