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