Flash Player 6。
someListener
.onSetFocus = function(
oldFocus
,
newFocus
){
statements; }
侦听器;当输入焦点更改时获得通知。若要使用 onSetFocus
,必须创建一个侦听器对象。然后可以为 onSetFocus
定义一个函数,并使用 addListener()
将该侦听器注册到 Selection 对象,如下所示:
someListener = new Object(); someListener.onSetFocus = function () { ... }; Selection.addListener(someListener);
侦听器可以使不同的代码片段协同工作,因为多个侦听器可以接收有关单个事件的通知。