前提・実現したいこと
Pyautoguiを用いてメールを自動送信しようとしています。
メールアドレスは半角のため、日本語入力がONの時はOFFの状態にしたいので、
下記コードを作成しました。
Python
1import pyautogui as pg 2import ctypes 3 4pg.press('win') 5pg.write('mail') 6pg.press('enter') 7 8# 0=日本語ON 9VK_KANJI = pg.platformModule.keyboardMapping['kanji'] 10print(ctypes.windll.user32.GetKeyState(VK_KANJI)) 11 12if ctypes.windll.user32.GetKeyState(VK_KANJI) == 0: 13 pg.press('kanji') 14 print("おしました") 15 16print(ctypes.windll.user32.GetKeyState(VK_KANJI)) 17 18pg.press("a") 19
発生している問題・エラーメッセージ
上記コードの結果は毎回下記通りです。
0 おしました 1
しかしメールアプリに入力される文字は毎回切り替わっています。
1回目:a 2回目:あ 3回目:a 4回目:あ
試したこと
下記を試しましたが、結果は同じでした。
・VK_KANJI = 0x19
・下記コードを試すと、0↔1に切り替わるので、pg.press('kanji')は
機能しているようです。
pg.press('kanji') VK_KANJI = pg.platformModule.keyboardMapping['kanji'] print(ctypes.windll.user32.GetKeyState(VK_KANJI))
試したこと② 3/18追加
- 各動作時のキー状態確認
windowsキーを押すと0になっているようです。
Python
1import pyautogui as pg 2import ctypes 3import time 4 5VK_KANJI = pg.platformModule.keyboardMapping['kanji'] 6 7print("起動直後:",ctypes.windll.user32.GetKeyState(VK_KANJI)) 8 9pg.press('win') 10print("win入力後:",ctypes.windll.user32.GetKeyState(VK_KANJI)) 11 12pg.write('mail') 13time.sleep(1) 14pg.press('enter') 15time.sleep(1) 16print("メールアプリ開いた後:",ctypes.windll.user32.GetKeyState(VK_KANJI)) 17 18pg.press('kanji') 19print("press'kanji'後:",ctypes.windll.user32.GetKeyState(VK_KANJI)) 20 21if ctypes.windll.user32.GetKeyState(VK_KANJI) == 0: 22 pg.press('kanji') 23 print("おしました") 24print("press'kanji'後:",ctypes.windll.user32.GetKeyState(VK_KANJI)) 25 26pg.press("a")
↓出力結果
起動直後: 1 win入力後: 0 メールアプリ開いた後: 0 press'kanji'後: 1 press'kanji'後: 1 ※毎回同じ出力
- 参考資料確認
難しくて詳細は理解できていませんが、
下記資料によると、日本語入力キーの取得状態は
アプリが変わると認識できないようです。
https://teratail.com/questions/137570
補足情報(FW/ツールのバージョンなど)
OS:windows10 64bit
Python:3.8.3
pip:21.0.1
PyAutoGUI:0.9.52

回答2件
あなたの回答
tips
プレビュー