Re: play sound problem

2014-04-30 Thread larry
Thanks to Jerry (and everyone who gave good feedback) for answering this question. Larry - Original Message - From: "Jerry Jensen" To: "How to use LiveCode" Sent: Tuesday, April 29, 2014 3:11 PM Subject: Re: play sound problem wait with messages. See the

Re: play sound problem

2014-04-29 Thread Alejandro Tejada
curiosity, Did anyone test this on Linux? What results you get? Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/play-sound-problem-tp4678826p4678832.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Re: play sound problem

2014-04-29 Thread J. Landman Gay
On 4/29/14, 4:05 PM, la...@significantplanet.org wrote: How do I wait to play the 2nd clip, but still allow the user to click on a Stop Play button? For another approach, don't use embedded audio, use an audio file on disk and a player in the stack. Set the filename of the player to the file

Re: play sound problem

2014-04-29 Thread Jerry Jensen
wait with messages. See the dictionary entry for wait. On Apr 29, 2014, at 2:05 PM, la...@significantplanet.org wrote: > Here is my problem: > > I have this in my code: > play audioclip "myClip1.wav" - which is 8 seconds in duration. > wait 8 seconds > play audioclip "myClip2.wav" looping > >

Re: play sound problem

2014-04-29 Thread Marc Siskin
Larry, Try adding “with messages” to the wait command. That should allow other actions to occur while the sound is playing. Marc On Apr 29, 2014, at 5:05 PM, la...@significantplanet.org wrote: Here is my problem: I have this in my code: play audioclip "myC

play sound problem

2014-04-29 Thread larry
Here is my problem: I have this in my code: play audioclip "myClip1.wav" - which is 8 seconds in duration. wait 8 seconds play audioclip "myClip2.wav" looping The problem is that any form of the wait command means that I cannot do anything else during the wait period - such as clicking on a but