1
Applescript: сбой сравнения переменной со строкой
У меня есть appleScript, который получает список элементов, а затем перебирает их: 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 namesПеременная получает значение массива …
11
applescript