Speakable Items & Scripts

I am having trouble getting a script to run using speach recgocnition. (OS X 10.2.8)
The computer will recognize the script name but the script will not run. If I run the script via the script editor, the script will run properly.

Scripts that came with the computer are recognized and run fine.

Thanks

Jim

Have you added an error handler to the script to see if it offers any useful feedback?

try
	-- your commands here
on error err_ number errNum
	display dialog err_ & return & return & "Error # " & errNum
end try

– Rob