flash on 2011-2-15
,n,nj
♥0 |
Line 18 |
Modified 2011-02-15 16:51:00 |
MIT License
archived:2017-03-20 09:06:23
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/92ku
*/
<?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://sansali.perso.sfr.fr/videos/kc.flv</mx:String>
<mx:String>http://sansali.perso.sfr.fr/videos/lesud.flv</mx:String>
<mx:String>http://localhost/megan3.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="200" height="100" />
</mx:Application>