I have “Shane’s Script Library Pack” installed. Of the three libraries included only the Myriad Tables dictionary appears in the dictionary options to the left.
I started using FastScripts on this mac, and I’m noticing that in the Running category of the left pane in the dictionary window, there are three versions of FastScript.
“FastScripts,” and two versions of “FastScript Script Runner.”
Thanks for the heads-up! I probably don’t need to have that flag set - it might be vestigial from earlier in development. I’ll have to double check, but if I can I’ll remove it!
Yes, the “display message” an “open web page” commands are part of FastScripts’s additions, so you use them by telling FastScripts itself, not the script runner. For example:
tell app "FastScripts"
display message "Hi" at screen position top left dismissing after delay 1
end tell
The open web page command does some smarts to navigate in whatever your default browser is in the active window to the specified URL. I use it myself to write scripts that serve as shortcuts to web pages I visit often.
FastScripts does support showing progress since 3.0 was released. If you run a script like:
set progress total steps to 100
repeat with i from 1 to progress total steps
set progress description to "Take one down, pass it around"
set progress additional description to ((i as string) & " bottles of beer on the wall")
set progress completed steps to i
delay 0.15
end repeat
Then you will see the progress of the running script displayed in the FastScripts menu itself, near the top of the menu.
I built a 3.0.6b1 update with the NSAppleScriptEnabled Info.plist key removed. In my quick tests here it seems to work to get the script runners to not show up in Script Debugger.