how to set volume to 0%

This is a discussion on "how to set volume to 0%" within the JavaScript Forum section. This forum, and the thread "how to set volume to 0% are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 15th, 2007, 14:59
New Member
Join Date: Feb 2007
Location: Toronto, Ontario, Canada
Age: 30
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

  #2 (permalink)  
Old Feb 15th, 2007, 18:35
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: how to set volume to 0%

JavaScript cannot change system or program settings.
Reply With Quote
Reply

Tags
volume

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problems with Volume Control for Flash MP3 Player Phil Flash & Multimedia Forum 3 Aug 16th, 2007 09:39
main timeline volume control? edd_jedi Flash & Multimedia Forum 1 Jun 14th, 2007 20:40


All times are GMT. The time now is 04:24.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43