LoginSignup
1
0

Zoom の「手を挙げる」を他のアプリを使用中にも操作したい

Posted at

Zoom の「手を挙げる」を他のアプリを使用中にも操作したい

会議で「手を挙げる」場合に,他の作業をしている場合,一旦 zoom アプリをActiveにしたあとに,リアクションから「手を挙げる」を選ぶか,キーボードショートカットの Alt + y を押しているかと思います.

結構時間がかかるので,AutoHotKey で Alt + Shift + y を押すとなにか作業中でも Zoom で手を上げることができるスクリプトを書いてみました.

実装は単純で,

  1. Zoom ミーティング という Windows を見つける
  2. その Windows を Active にする
  3. Zoom に Alt + y を送る

としているだけです.

<!<+y::
   IfWinExist, Zoom ミーティング
   {
     WinActivate
     Send, !y
     return
   }
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0