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변수가 제대로 문자열 배열로 설정됩니다. 목록을 반복하면 각 currentName변수를 …
11
applescript