我还有一个“我该怎么做”的问题 :) 假设我有一个组件并想在运行时更改它的焦点颜色。这是给你的一个例子(我已经排除了任何按钮等以防止组件失去焦点,因为在这种情况下它会完美地改变它的颜色):
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="init()">
<mx:Script><![CDATA[
private function init():void {
//putting focus inside needed component
focusTest.setFocus();
focusTest.setSelection(0, 0);
// creates a new Timer
var minuteTimer:Timer = new Timer(1000, 30);
// designates listeners for the interval and completion events
minuteTimer.addEventListener(TimerEvent.TIMER, onTick);
minuteTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete);
// starts the timer ticking
minuteTimer.start();
}
public function onTick(event:TimerEvent):void {
// displays the tick count so far
trace("tick " + event.target.currentCount);
if (focusTest.getStyle('focusColor') != 0x008CEA) {
focusTest.setStyle('focusColor', 0x008CEA);
} else {
focusTest.setStyle('focusColor', 0xFF0000);
}
//Update everything somehow :)
}
public function onTimerComplete(event:TimerEvent):void {
trace("Time's Up!");
}
]]></mx:Script>
<mx:TextInput id="focusTest"/>
</mx:Application>
我有什么:计时器在滴答作响。该属性正在发生变化(您可以看到,例如,在浏览器中切换选项卡时......当颜色发生变化时,只需捕捉正确的状态)。
我想要什么:如何在没有魔法的情况下重绘这个焦点(我已经尝试了所有方法,从“ validate
”开始,我尝试过调用updateDisplayList()
整个应用程序,我尝试过调用styleChanged
... aggrrh ..我没有想法:))。
有什么想法吗?
任何帮助,像往常一样,非常感谢:)