PDA

View Full Version : Getting a .wav to loop


richardlpalmer
09-01-2002, 04:04 AM
(Using Dreamweaver3 and IE5.5) I'm trying to have a .wav plug-in loop twice. In the Parameters Dialog Box, I've tried six different ways to write the parameters and values:
#)(PARM~VALUE) [result]
1) LOOP~2 [one play]
2) LOOP~(2) [one play]
3) LOOP~N(2) [one play]
4) LOOP~TRUE
---Playcount~2[continuous play]
5) Playcount~2
---LOOP~TRUE[continuous play]
and finally
6) LOOP~2
---Paycount~2[one play]
Am I missing something?

Tonz
09-01-2002, 11:28 PM
Try changing the Param to ..

<embed src="MUSICSTUFF.wav loop="2">


Or try ..

<PARAM name="playcount" value="2">


Tonz:cool:

richardlpalmer
09-02-2002, 03:47 AM
Thanks a lot Tonz. I'll let you know how it goes.