Flex Type Coercion,我认为这是精神上的

Bil*_*oom 5 apache-flex flash mxml actionscript-3

我基本上有一节课:

public class WindowEvent extends Event
{
    public static const WARNEVENT:String = "warnEvent";
    public static const TASKREQEVENT:String = "taskRequestEvent";
    public static const TASKANNOUNCE:String = "taskAnnounce";
    public static const WINDOWCHANGE:String = "windowChange";
    public static const ILLEGALPOSITION:String = "illegalPosition";

    // insert brevity   
}
Run Code Online (Sandbox Code Playgroud)

前四个事件工作正常,但我只是添加ILLEGALPOSITION并尝试了这个:

    // inside Window.as
    private function checkDimensions():void {
       if(!Window._legalBoundaryEnable)
           return;
...    var pass:Boolean = Window.legalBoundary.containsRect(
455        this.getBounds(stage));
456    if(!pass) {
457        this.dispatchEvent(new WindowEvent(WindowEvent.ILLEGALPOSITION,
...           "Illegal Position etc."));
       }
    }
Run Code Online (Sandbox Code Playgroud)

所以当我点击调度方法时,Flex会向我发出这个堆栈:

TypeError: Error #1034: Type Coercion failed: cannot convert ¬
        flex.utils.ui::WindowEvent@511dce41 to flash.events.MouseEvent.
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent() ¬
        [C:\autobuild\~\UIComponent.as:9298]
    at flex.utils.ui::Window/checkDimensions()[C:\Users\~\Window.as:457]
    at flex.utils.ui::Window/stageResized()[C:\Users\~\Window.as:220]

从跟踪中可以看出,是最后一个用户代码行.所以WTF正在努力做到?Window.as:457flash.events.EventDispatcher.dispatchEventFunctionMouseEvent

Jam*_*Hay 5

通常会发生该错误,因为您设置的侦听器具有不正确的事件参数类型.我很确定这一定是这种情况.

检查您为该事件设置的所有侦听器,并确保该功能

someFunction(event : WindowEvent) : void
Run Code Online (Sandbox Code Playgroud)