swfファイルとflvファイル、それを表示するhtmlファイルは全て同じディレクトリにあります。相対パスの方が保守性も高いので、相対パスにしたいのです。
htmlからはobjectタグで Application.application.parameters.msrc にflvファイルのパスが渡る様に、player.swf?msrc=xxxx.flv という風に指定しています。
↓mxmlファイルの抜粋です↓
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="525" height="391" creationComplete="initVars()">
<mx:Script><![CDATA[
private function initVars():void {
thevideo.source = Application.application.parameters.msrc;
}
]]></mx:Script>
<mx:VideoDisplay x="0" y="0" width="525" height="350" autoPlay="true" id="thevideo"/>
コメント(0件)