Script for Audio Hijack Pro

Greetings. I’m completely uneducated when it comes to AppleScript. That being said, I’d love to learn how and will educate myself when I have time but I’m looking for a quick script for Audio Hijack Pro http://www.rogueamoeba.com/audiohijackpro/
I’m trying to find/create a script that opens my audio editor (Amadeus Pro) after Hijack finishes recording audio.
I’ve browsed through Hijack’s Script dictionary but didn’t find anything close (again, I’m not a scripter).
Can anyone help me out here?
Maybe a simple script outline?
Thanks

Maybe the manual was a better start! :slight_smile:

Save the following script:

on process(theArgs)
	
	--Into Amadeus ye files shall go
	tell application "Amadeus Pro"
		repeat with theFile in theArgs
			open theFile
		end repeat
	end tell
	
end process


Add the script in the “When the recording finishes” box or save it in ~/Library/Application Support/Audio Hijack Pro/Recording Scripts. (Or wherever it is these days: it’s in the manual) and it should appear in the scripts popup menu

Awesome mouramartins. I’ll give it a try!

It works! Thanks again.