0
AppleScriptでキーが押されたことを検出する方法と、そのキーが解放されるまで遅延する方法がわかりません。私はズームのためのトグルをしたい、と私は他のすべてを(私は思う)持っている。これは私の現在のコードですキーが押されるまでのキーストップと遅延の検出AppleScript
on idle
set ztoggle to 0
repeat
--how do i make it so a key is needed to run this loop? maybe an 'if (im not sure what to put here) then' loop?--
if (ztoggle = 1) then
set ztoggle to 0
else if (ztoggle = 0) then
set ztoggle to 1
end if
--how do i make it so the program waits at this line until the key from before is released? i was thinking delay, but im not sure--
if (ztoggle = 1) then
tell application "System Events"
key code 28 using {option down, command down}
end tell
end if
set ztoggle to 0
end repeat
end idle
どのように私はこれを行うだろう知っていますか?また、AppleScriptで何かを試してみるのは初めてのことです。だから私が他のところでうんざりしたら、教えてください。