1
Applescript: A comparação da variável com a string está falhando
Eu tenho um AppleScript que obtém uma lista de itens e itera sobre eles: tell application "GeekTool Helper" set names to name of geeklets repeat with currentName in names if (currentName is equal to "Top_CPU_Processes") then display dialog "found it" end if return currentName end repeat end tell A namesvariável …
11
applescript