View Single Post
  #1 (permalink)  
Old Feb 15th, 2007, 14:59
kisaragi kisaragi is offline
New Member
Join Date: Feb 2007
Location: Toronto, Ontario, Canada
Age: 31
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
how to set volume to 0%

I have attempted to set the volume on my embeded video to 0% with no success

here is the coding

video loaded

<DIV style="MARGIN-TOP: 0px; MARGIN-LEFT: 15px">
<table height="10" width="204" height="152" align="center">
<iframe src="./video/video.php" height=152 width=204 frameborder=0 border=0 name="fvp"></iframe>
</table>
</div>

video setup

<DIV style="MARGIN-TOP: 0px; MARGIN-LEFT: 15px">
<table height="10" width="204" height="152" align="center">
<iframe src="./video/video.php" height=152 width=204 frameborder=0 border=0 name="fvp"></iframe>
</table>
</div>

video defined

function mpw(ura){
document.write('<object classid=\"clsid27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" id=\"videoplayerclassic\" width=\"188\" height=\"142\">\n');
document.write('<param name=\"movie\" value=\"videoplayerclassic.swf\">\n');
document.write('<param name=\"volume\" value=\"10%\">\n');
document.write('<param name=\"bgcolor\" value=\"#EEEEEE\">\n');
document.write('<param name=\"quality\" value=\"high\">\n');
document.write('<param name=\"allowscriptaccess\" value=\"samedomain\">\n');
document.write('<PARAM NAME=FlashVars VALUE=\"vaddress=' + ura + '\">\n');
document.write('<embed type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" name=\"videoplayerclassic\" width=\"188\" height=\"142\" src=\"videoplayerclassic.swf\" FlashVars=\"vaddress=' + ura + '\" volume=\"10%\" bgcolor=\"#EEEEEE\" quality=\"high\" swliveconnect=\"true\" allowscriptaccess=\"samedomain\">\n');
document.write('<noembed>\n');
document.write('</noembed>\n');
document.write('</embed>\n');
document.write('</object>\n');
}

tried implementing

document.write('<param name=\"volume\" value=\"10%\">\n');
with no success

any helpo would be appreciated

thanks
Reply With Quote