We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为了微信输入消息中方便输入回车ENTER,将微信消息的发送键改为CTRL+ENTER了。 wxauto使用editbox.SendKeys('{Enter}'),导致信息无法发送。能否可以自定义发送键为CTRL+ENTER?
The text was updated successfully, but these errors were encountered:
SendKeys参数里加个{Ctrl}就好了呀
Sorry, something went wrong.
直接修改wxauto.py模块OK了 #editbox.SendKeys('{Enter}') editbox.SendKeys('{Ctrl}{Enter}') # modified by Thomas in 20241009, for Wechat Send key CTRL+ENTER
No branches or pull requests
为了微信输入消息中方便输入回车ENTER,将微信消息的发送键改为CTRL+ENTER了。
wxauto使用editbox.SendKeys('{Enter}'),导致信息无法发送。能否可以自定义发送键为CTRL+ENTER?
The text was updated successfully, but these errors were encountered: