I am using Livecode Community 7.0.4
and I'm trying to create an audio.
I am in windows 10
.
I created three
buttons record
, stop
and play
.
And on each button I have these code:
//record
on mouseUp
record sound test.wav
end mouseUp
//stop
on mouseUp
stop recording
end mouseUp
//play
on mouseUp
play test.wav
end mouseUp
But these are not working. No audio file generated.
What should be the right way to do it?
For the record
, I also tried this code, but same result.
on mouseUp
set the dontUseQT to false
record sound test.wav
end mouseUp
For starters, you left out the keyword
file
.Here's the more complete answer. For now, sound recording will only work if you have QuickTime for Windows installed on your system. Be sure to set the recording properties to what you want first. The correct syntax is:
The audio recording framework is being completely rewritten, and will be available sometime in the LC v. 9 series. (Initial alpha releases of v. 9 are out now.) That will remove the QuickTime dependency for audio recording.