I have an app that includes functionality for the user to record and playback their voice. The problem I am having is that the playback quality is very scratchy. I have had three different people try this and they have the same problem.
Here is the code for my Record button:
Code: Select all
on mouseUp
global userSoundFile
set the recordInput to "dflt" // default mic
record sound file userSoundFile
end mouseUp
Code: Select all
on mouseUp
global userSoundFile
set the recording to false
play userSoundFile
end mouseUp
Am I missing something? Any help would be appreciated.
Thanks,
Ed