| Banish visual feedback
"This means that visual feedback will happen when the application is launched. The Applescript icon will show up in the dock, the application will move to the foreground and run then quit. It happens pretty quick and short of your dock expand and contracting you'd never know it was running."
You can get rid of the visual feedback by saving the applescript as an application bundle and editing the Info.plist inside of the package contents. Add the following lines with a text editor:
<key>NSUIElement</key>
<string>1</string>
This will prevent your application from popping up on the dock when it runs.
|