Im embedding flash video into a page and I want to the user to be able to add video themselves, the current workflow i have is:
This is the code I have to use to embed into the page:
[removed]
// <![CDATA[
var so = new SWFObject("videos/VPlayer.swf", "flash", "428", "275", "8", "#fff");
so.addVariable("xml", "videos/settings.xml");
so.write("flashcontent");
// ]]>
[removed]With the settings.xml like this:
<settings>
<!-- path to the flv file -->
<set name="flv" value="users_uploaded_video_here.flv" >
Mute|Volume" >
</settings>Is it possible to use a custom entry field in the external xml file like this?:
<settings>
<!-- path to the flv file -->
<set name="flv" value="{custom_field_name}" >
Mute|Volume" >
</settings>Im not sure how to go about doing this because you cant use a custom field for a variable pair in a different template correct?
Any help would be appreciated.