美文网首页
用AppleScript打开工程

用AppleScript打开工程

作者: Realank | 来源:发表于2019-05-06 14:04 被阅读0次
    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
    

    相关文章

      网友评论

          本文标题:用AppleScript打开工程

          本文链接:https://www.haomeiwen.com/subject/yovroqtx.html