Proxi v0.19
Monday, April 10th, 2006link: Proxi v0.19
In this update:
- AppleScript trigger
- Help menu now available in dockless mode
- About box / Splash screen reworked
- Improved updater
- Updater preferences
- Fixed extra value and filter item selections after a delete
- Exported blueprints check to make sure they are not replacing an existing file
- Assorted cleanup in anticipation of open beta
Mostly minor and cosmetic changes in anticipation of the open beta. I did add the AppleScript trigger though and that’s not really so minor. Not only is it useful for the obvious reasons, but you can also have Proxi trigger itself through an AppleScript task, allowing you to chain together triggers (be careful to avoid an endless loop). The AppleScript trigger definition takes this form:
trigger v : Proxi AppleScript trigger trigger reference : the object for the command description Unicode text : Description of the trigger name Unicode text : Name of the trigger [image TIFF picture] : An optional TIFF image for the trigger [pictImage picture] : An optional PICT image for the trigger [value integer] : An optional value for the trigger
To try it out, add an AppleScript trigger to your trigger list and set the AppleScript trigger name to “test”. Add a Screen Message task displaying the Description value or whatever. Then create a new AppleScript in Script Editor that looks like this:
tell application "Proxi" trigger name "test" description "Testing Proxi triggers via AppleScript" end tell
Run the script and marvel at the results. I’ll leave the rest to your imagination.