Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが一定時間アクション(キーボードまたはマウス)を実行していない場合、ウィンドウのフォーカスが切り替わるスクリプトを作成しようとしています。
このスクリプトは、ユーザーが 30 秒間アイドル状態になったときにメモ帳をアクティブにします。
#include <Timers.au3> while (true) $idleTime = _Timer_GetIdleTime() if $idleTime > 30000 and not WinActive("Untitled - Notepad") Then WinActivate("Untitled - Notepad") EndIf Sleep(1000) WEnd
php を使用した HTML からのタグとそのコンテンツ