What's wrong with the following Applescript (it works fine in the Applescript editor) when I use it with Automator?:
	
	
	
		
It looks like this in the "Run Applescript" Automator action -I've just pasted the Applescript into where it says (* Your script goes here *):
	
	
	
		
The error message I get is:
Syntax error
Expected “,” but found “"”.
	
		
			
		
		
	
				
			
		Code:
	
	display alert "Bold title here" as warning message "More text here" buttons {"OK"} default button "OK"It looks like this in the "Run Applescript" Automator action -I've just pasted the Applescript into where it says (* Your script goes here *):
		Code:
	
	on run {input, parameters}
 
    (display alert "Bold title here" as warning message "More text here" buttons {"OK"} default button "OK")
 
    return input
end runThe error message I get is:
Syntax error
Expected “,” but found “"”.
 
 
		