flex1.mxml

by marcsali
♥0 | Line 17 | Modified 2011-03-07 07:43:46 | MIT License
play

ActionScript3 source code

/**
 * Copyright marcsali ( http://wonderfl.net/user/marcsali )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/3Vha
 */

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
  layout="horizontal">
<mx:Array id="movieList">
    <mx:String>http://skydro.perso.sfr.fr/videos/jjgoldman.flv</mx:String>
    <mx:String>http://skydro.perso.sfr.fr/videos/tomdice.flv</mx:String>
</mx:Array>
<mx:VBox>
    <mx:List id="cntlMovie" dataProvider="{movieList}" 
      width="300" />
    <mx:Button label="Pause" click="cntlDisp.pause();" />
    <mx:Button label="Play" click="cntlDisp.play();" />
</mx:VBox>
<mx:VideoDisplay id="cntlDisp" 
  source="{cntlMovie.selectedItem.valueOf()}"
width="400" height="300" />
</mx:Application> 

Forked