event log with drag n drop applets

Is there a way to run drag n drop applets from within the applescript editor so as to view the actions of the script in the event log?

thanks, mike

Check out Matt Ridley’s AppleScript Output palette.
http://www.mattridley.com/software/aso/aso.html

It might be what you need. I haven’t messed with it yet, but he does good work (I’ve used some of his GoLive tools), and it sounds promissing for debugging ‘non-editor’ run scripts.

Not that I know of, but a bit of simple editing can remove the on open…end, then substitute a file path as such:

on open x
end
becomes
set x to “Hard Drive:folder:folder” – whatever the applet expects

mg