[]SimpleButton的状态layaFlash支持吗?

譬如按钮弹起(upState)、鼠标悬停(overState)、按下(downState)、点击热区(hitState)四个状态。我做了一个demo,用到了simpleButton,但是转换后按钮的状态没有实现?为什么呢?
已邀请:

cuixueying

赞同来自:

SimpleButton;SimpleButton继承的是MovieClip,所以获取按钮的状态是没有的,假如操作按钮状态失效,就需要修改自己的代码逻辑。
get upState,get overState,get downState,get hitTestState  都返回null;
set upState,set overState,set downState,set hitTestState 都不可设置。

例如:
var btn:SimpleButton = new SimpleButton(_upState, _overState, _downState, _hitTestState);
trace(btn.upState); //Output:null
trace(btn.overState); //Output:null
trace(btn.downState); //Output:null
trace(btn.hitTestState); //Output:null
可参考:http://layaflash.ldc.layabox.c ... %3D65

要回复问题请先

商务合作
商务合作