I am using Run Revolution to make a program that will do 3 things:
Screen recording
Audio recording
combining the two into one mp4 or aiff
I have a button that does this apple script:
tell application "QuickTime Player"
activate
start new screen recording
end tell
I am trying to figure how to stop the recording now, I have tried this script but it is not working:
tell application "QuickTime Player"
stop new screen recording
end tell
Do I need to make give a name to the video recording before it starts, so that I will have a filename to stop??
I am lost
Screen recording
Audio recording
combining the two into one mp4 or aiff
I have a button that does this apple script:
tell application "QuickTime Player"
activate
start new screen recording
end tell
I am trying to figure how to stop the recording now, I have tried this script but it is not working:
tell application "QuickTime Player"
stop new screen recording
end tell
Do I need to make give a name to the video recording before it starts, so that I will have a filename to stop??
I am lost