скрипт автоматического обновления flex, показывающий ошибку - PullRequest
1 голос
/ 10 сентября 2009

Я хочу включить скрипт автоматического обновления в flex3. Я использую приведенный ниже код, чтобы сделать это, но гибкий редактор, показывающий красную метку в строке 39, и редактор, показывающий ошибку при наведении курсора мыши на красную метку:

1046: тип не найден или не является константой времени компиляции: UpdateEvent.

как я могу удалить эту ошибку. пожалуйста, ведите меня.

    // Instantiate the updater
    private var appUpdater:ApplicationUpdaterUI = new ApplicationUpdaterUI();

    private function checkForUpdate():void {
        // The code below is a hack to work around a bug in the framework so that CMD-Q still works on MacOS
        // This is a temporary fix until the framework is updated
        // See http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=670&threadid=1373568
        NativeApplication.nativeApplication.addEventListener( Event.EXITING, 
            function(e:Event):void {
                var opened:Array = NativeApplication.nativeApplication.openedWindows;
                for (var i:int = 0; i < opened.length; i ++) {
                    opened[i].close();
                }
        });    

        setApplicationVersion(); // Find the current version so we can show it below

        // Configuration stuff - see update framework docs for more details
        appUpdater.updateURL = "http://www.mytoplinks.net/flex/update.xml"; // Server-side XML file describing update
        appUpdater.isCheckForUpdateVisible = false; // We won't ask permission to check for an update
        appUpdater.addEventListener(UpdateEvent.INITIALIZED, onUpdate); // Once initialized, run onUpdate
        appUpdater.addEventListener(ErrorEvent.ERROR, onError); // If something goes wrong, run onError
        appUpdater.initialize(); // Initialize the update framework
    }

    private function onError(event:ErrorEvent):void {
        Alert.show(event.toString());
    }

    private function onUpdate(event:UpdateEvent):void {
        appUpdater.checkNow(); //Go check for an update now
    }

    // Find the current version for our Label below
    private function setApplicationVersion():void {
        var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
        var ns:Namespace = appXML.namespace();
        ver.text = "Current version is " + appXML.ns::version;
    }
]]>
</mx:Script>

<mx:VBox backgroundColor="blue" x="0" y="0" width="100%" height="100%">
    <mx:Label color="white" id="ver" />
</mx:VBox>

1 Ответ

1 голос
/ 10 сентября 2009

добавить импорт в UpdateEvent в начало раздела скрипта

import air.update.events.UpdateEvent;

НТН

Koen

...