diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml')
-rw-r--r-- | Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml b/Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml index 4379385d75b..ca7e74c64ac 100644 --- a/Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml +++ b/Master/texmf-dist/source/latex/media9/players/VPlayer9.mxml @@ -4,7 +4,7 @@ <!-- a FlashPlayer-9 compatible component for playing --> <!-- FLV and MP4/H.264 video files and streams. --> <!-- --> -<!-- version 20150722 --> +<!-- version 20150729 --> <!-- --> <!-- Copyright (C) 2012-today Alexander Grahn --> <!-- --> @@ -23,7 +23,8 @@ <!-- The current maintainer of this work is A. Grahn. --> <!-- --> -<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" +<mx:Application + xmlns:mx="http://www.adobe.com/2006/mxml" preinitialize="initialise(this.parameters);" applicationComplete="initApp();" backgroundAlpha="0" @@ -63,8 +64,9 @@ } import mx.events.VideoEvent; + //import flash.events.VideoEvent; import mx.controls.Alert; - private function onStateChange(event:VideoEvent):void { + private function onStateChange(event:mx.events.VideoEvent):void { vidComplete=false; if(event.state=='connectionError') Alert.show('Unable to play \''+event.target.source+'\'','Error'); |