tell application \"FastScripts\"
every script item whose keyboard shortcut is not missing value
end tell
Daniel Jalkut said:If you haven't already looked at the beta for FastScripts 2.3, give it a look.
Daniel
NovaScotian said:Great. I can certainly deal with only the boolean - it's still easy to write a script that chugs through the files in my Scripts folder, asks FastScripts if that script (how to refer to it not clear) has a keyboard shortcut, and labeling the file if it has.
tell application \"FastScripts\"
set s to script items where has keyboard shortcut is true
set SL to {}
repeat with k from 1 to count s
if k < 10 then
set m to \"0\" & k
else
set m to k as rich text
end if
set end of SL to (m & \" \" & name of item k of s)
end repeat
set SF to script file of item ¬
((rich text 1 thru 2 of ((choose from list SL) as string)) ¬
as string as number) of s
end tell
run script alias SF
It looks like you're new here. If you want to get involved, click one of these buttons!