代码之家  ›  专栏  ›  技术社区  ›  Dark star

Apple脚本从代码块中获取结果值

  •  0
  • Dark star  · 技术社区  · 6 年前

    我有一段代码,返回输入语言的当前值

    tell process "SystemUIServer" to 
       get the value of the first menu bar item of menu bar 1 
       whose description is "text input"
    tell end
    

    IF Else 但我不知道该怎么做!

    谢谢

    1 回复  |  直到 6 年前
        1
  •  1
  •   vadian    6 年前

    首先你得告诉我 System Events

    只需将结果赋给一个变量

    activate application "SystemUIServer"
    tell application "System Events"
        tell process "SystemUIServer"
            set textInput to (get value of the first menu bar item of menu bar 1 whose description is "text input")
        end tell
    end tell