I have a program that create an embedded player and skin that I can embed into my webpages.
It creates four files a *.flv, *.swf, *.html and a *.js
I need to edit the man .html file and past this code after the <head> tag.
<script type="text/javascript" src="swfobject.js"></script>
The above script works with the below .thlm script that I embed with the html script function withing the bluevoda client:
<body>
<center>
<h1><font face="Verdana"></font></h1>
<br>
<div id="flashcontent">
Upgrade your Flash Player to version 8 to view this video! (<a href=http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player.exe target=_blank>Click here for the download</a>)
</div>
<script type="text/javascript">
var so = new SWFObject("http://www.getglobalresults.com/videos/VideoTestimonials2/SkyBlue.swf?path=http://www.getglobalresults.com/videos/VideoTestimonials2/FLVVideo.FLV&buffersize=8&startauto=false&redirect =", "player", "500", "410", "8", "#ffffff");
so.write("flashcontent");</script>
</center>
</body>
I am able to get this to work if I manually if I download the .html file with an ftp client, edit it with notepad, and then upload it via the ftp client, however, if I edit the file again with the BlueVoda client it overwrites the change. How can I insert this code in the main .html file withing the bluevoda client?
Thanks,
Arnold
It creates four files a *.flv, *.swf, *.html and a *.js
I need to edit the man .html file and past this code after the <head> tag.
<script type="text/javascript" src="swfobject.js"></script>
The above script works with the below .thlm script that I embed with the html script function withing the bluevoda client:
<body>
<center>
<h1><font face="Verdana"></font></h1>
<br>
<div id="flashcontent">
Upgrade your Flash Player to version 8 to view this video! (<a href=http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player.exe target=_blank>Click here for the download</a>)
</div>
<script type="text/javascript">
var so = new SWFObject("http://www.getglobalresults.com/videos/VideoTestimonials2/SkyBlue.swf?path=http://www.getglobalresults.com/videos/VideoTestimonials2/FLVVideo.FLV&buffersize=8&startauto=false&redirect =", "player", "500", "410", "8", "#ffffff");
so.write("flashcontent");</script>
</center>
</body>
I am able to get this to work if I manually if I download the .html file with an ftp client, edit it with notepad, and then upload it via the ftp client, however, if I edit the file again with the BlueVoda client it overwrites the change. How can I insert this code in the main .html file withing the bluevoda client?
Thanks,
Arnold
Comment