Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text input detection
#1
Hi

Is it possible to detect when text input is expected. I need to auto-popup the on-screen keyboard when this happens.

Thank you.
#2
This macro detects when caret (text cursor) is visible, usually then text input is expected. Note that some windows use a nonstandard caret; this macro does not detect it.

Macro Macro2772
Code:
Copy      Help
rep
,1
,GUITHREADINFO g.cbSize=sizeof(GUITHREADINFO)
,if GetGUIThreadInfo(0 &g) and g.hwndCaret
,,out "yes"
,else
,,out "no"
#3
Thanks


Forum Jump:


Users browsing this thread: 1 Guest(s)