davidjmorin
02-08-2008, 05:20 PM
i have the following code. how do i save the files in my folder? i got this code off a script page and it has no instructions on how to do that.
i have folder
/flash
inside that folder
/video
and the videos are in that folder above. heres the code
function display_flash(id, authent) {
document.write('<object width="612" height="480" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" > \
<param name="quality" value="high" /> \
<param name="bgcolor" value="#000000" /> \
<param name="movie" value="http://www.mysite.net/flash/flv_player_site_v3.swf" /> \
<param name="allowFullScreen" value="true" /> \
<param name="flashvars" value="id_video=' + id + '&key=' + authent + '" /> \
<embed src="http://www.mysite.net/flash/flv_player_site_v3.swf" \
allowScriptAccess="always" width="612" height="480" \
menu="false" quality="high" bgcolor="#000000" allowFullScreen="true" \
flashvars="id_video=' + id + '&key=' + authent + '" type="application/x-shockwave-flash" \
pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
i have folder
/flash
inside that folder
/video
and the videos are in that folder above. heres the code
function display_flash(id, authent) {
document.write('<object width="612" height="480" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" > \
<param name="quality" value="high" /> \
<param name="bgcolor" value="#000000" /> \
<param name="movie" value="http://www.mysite.net/flash/flv_player_site_v3.swf" /> \
<param name="allowFullScreen" value="true" /> \
<param name="flashvars" value="id_video=' + id + '&key=' + authent + '" /> \
<embed src="http://www.mysite.net/flash/flv_player_site_v3.swf" \
allowScriptAccess="always" width="612" height="480" \
menu="false" quality="high" bgcolor="#000000" allowFullScreen="true" \
flashvars="id_video=' + id + '&key=' + authent + '" type="application/x-shockwave-flash" \
pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}