フレックスに初めて出会ったPHPジュニアは、これが私の頭を何日間も傷つけます。 flashvarには、Flexビデオコンポーネントで再生するビデオのソースが含まれています。プレイヤーのHTMLは次のようになります。フレックスにフラッシュバーを渡す
function createPlayer(videoSource){
document.writeln("<div id=\"player\">");
document.writeln("<object width=\"489\" height=\"414\" FlashVars=\""+videoSource+"\">");
document.writeln("<param name=\"player\" value=\"bin-debug/FlexPlayer.swf\">");
document.writeln("<embed src=\"bin-debug/FlexPlayer.swf\" name=\"player\" width=\"489\" height=\"414\" FlashVars=\""+videoSource+"\">");
document.writeln("</embed>");
document.writeln("</object>");
document.writeln("</div>");
}
私はFlexPlayer.mxmlでのFlashVarsを呼び出そうとしましたが、それは働いていません。 FlashVarsにアクセスするには、mxmlのソースに適用する必要があることを教えてください。
<s:VideoPlayer id="Player" left="0" top="0" width="497" height="414"
skinClass="MySkin" source="FlashVars"/>
</s:Group>
コードでparam要素をどのように探すべきか() – George