set AppList to {"WebStorm", "Android Studio", "Sublime Text"}
set AppListAnswer to choose from list AppList with title "Application" with prompt "Choose an app to open this folder" default items "WebStorm"
set AppName to AppListAnswer as text
tell application "Finder"
if exists Finder window 1 then
set currentDir to (target of front Finder window) as text
if (AppName is equal to "WebStorm") then
tell application "WebStorm" to open (POSIX path of currentDir)
else if (AppName is equal to "Android Studio") then
tell application "Android Studio" to open (POSIX path of currentDir)
else if (AppName is equal to "Sublime Text") then
tell application "Sublime Text" to open (POSIX path of currentDir)
else
display dialog "cannot open with " & (AppName)
end if
end if
end tell
网友评论