Skip to main content
Known Participant
April 3, 2007
Question

playing mp3s

  • April 3, 2007
  • 2 replies
  • 335 views
how do i stop mp3s from automatically playing when the page loads

when the page loads the mp3s start to play i dont want them to play until they are clicked

<embed src="../../images/uploadedfiles/<%=(musicmp3s.Fields.Item("Filename").Value)%>" width="20" height="16"></embed>
This topic has been closed for replies.

2 replies

Günter_Schenk
Inspiring
April 3, 2007
just change it to a regular link, like...

<a href="../../images/uploadedfiles/<%=(musicmp3s.Fields.Item("Filename").Value)%>">listen to <%=(musicmp3s.Fields.Item("Filename").Value)%> mp3</a>
Inspiring
April 3, 2007

> how do i stop mp3s from automatically playing when the page loads

Don't embed them in your page.

Use a flash player or just link to the MP3 directly.

-Darrel