Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sound in a page

Status
Not open for further replies.

NoKeS

Programmer
Sep 27, 2001
21
PT
hi,
i'm working with templates in dw, and i want to put a sound in the page, every time i click on a link the sound starts from the begining, and i want that the sound start and finish just one time when i enter in the page! how do i do? URGENT!
Thanks.

 
Try only calling the MM_ControlSound function in the onLoad property of the body.

A quick comment in your gallery of images you set the popup window to a fixed size with no resize handles and your images are larger than the window, this forces horizontal & vertical scroll bars.

Cheech The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
the funcion is onLoad property!
i'v try to put it onActivate, on Reload... etc...
do you know why the sound is always begining when i click on a link?

Thanks for the tip of the gallery.
 
Try changing (goes without saying make a backup of your file first)
Code:
     <td height=&quot;59&quot; colspan=&quot;2&quot; valign=&quot;top&quot;><img src=&quot;Images/rad_anim.gif&quot; width=&quot;224&quot; height=&quot;59&quot; onbeforeunload=&quot;MM_controlSound('play','document.CS1027628628385','visage.swf')&quot;></td>

To

     <td height=&quot;59&quot; colspan=&quot;2&quot; valign=&quot;top&quot;><img src=&quot;Images/rad_anim.gif&quot; width=&quot;224&quot; height=&quot;59&quot;></td>

And

<body bgcolor=&quot;#000000&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; onLoad=&quot;MM_preloadImages('Images/img_loc_on.gif','Images/img_gal_on.gif','Images/img_tun_on.gif','Images/img_aud_on.gif','Images/img_ctc_on.gif'),&quot; link=&quot;#FFFF00&quot; vlink=&quot;#0000FF&quot; alink=&quot;#FF0000&quot;>

To

<body bgcolor=&quot;#000000&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; onLoad=&quot;MM_preloadImages('Images/img_loc_on.gif','Images/img_gal_on.gif','Images/img_tun_on.gif','Images/img_aud_on.gif','Images/img_ctc_on.gif'),MM_controlSound('play','document.CS1027628628385','visage.swf')&quot; link=&quot;#FFFF00&quot; vlink=&quot;#0000FF&quot; alink=&quot;#FF0000&quot;>

Cheech The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top