![]() ![]() | |
Flash Player 6。
my_mc.onDragOut = function() {
// 此处是您的语句
}
无。
无。
事件处理函数;当按下鼠标按钮并且指针滑出对象时调用。必须定义一个在调用事件处理函数时执行的函数。
下面的示例为 onDragOut 方法定义一个函数,该函数将 trace() 动作发送到“输出”面板。
my_mc.onDragOut = function () {
trace ("onDragOut called");
};
![]() ![]() | |