■ フォーカスが移動したことを判断するには
//メインタイムラインのフレームアクション
focusListener
= new Object();
focusListener.onSetFocus
= function(oldFocus,
newFocus) {
oldFocus.borderColor
= 0x000000;
newFocus.borderColor
= 0xFF0000;
};
Selection.addListener(focusListener);

