Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Window Spy Shift+Alt+Tab doesn't freeze text


  • Please log in to reply
4 replies to this topic
AlmostThere
  • Members
  • 59 posts
  • Last active: Oct 04 2015 10:51 PM
  • Joined: 17 Aug 2014

Hi.

 

On Windows 7, when AutoIt3 Window Spy is running, it doesn't freeze when key combination Shift+Alt+Tab is pressed. Instead, the program manager (Alt tab between open windows) appear.

 

This is a big problem when button ID is a long string, and I have to write it down on paper :(

 

Is this a known problem with Windows Spy, or is there any Windows settings to prevent this behaviour?

 

On WIndows XP, Window Spy works as expected.



AlmostThere
  • Members
  • 59 posts
  • Last active: Oct 04 2015 10:51 PM
  • Joined: 17 Aug 2014

Bump

 

Any ideas?

 

Nobody experienced this before, just me?



lifeweaver
  • Members
  • 868 posts
  • Last active: Jan 25 2016 01:29 AM
  • Joined: 04 Mar 2013

Hi AlmostThere,

 

I have suffered the same problem, this seems to work for me:

#IfWinExist ahk_class AU3Reveal
+!Tab::
ControlSend,, +!Tab, ahk_class AU3Reveal
return

My script runs in A_AhkVersion:=1.1.22.07, get the latest version at http://ahkscript.org/download/

Check out this AutoHotkey tutorial: http://ahkscript.git...o/AHK_Tutorial/

Read the documentation: http://ahkscript.org.../AutoHotkey.htm


Rarien
  • Members
  • 3 posts
  • Last active: Oct 13 2014 03:26 PM
  • Joined: 25 Dec 2013

Yeah, it's never worked.. it's Autoit's crap.  I just try to remember, Lol.



T_Lube
  • Members
  • 640 posts
  • Last active: Sep 09 2016 02:19 AM
  • Joined: 16 Oct 2014
^LButton::
Try this. In case you are unfamiliar with the syntax in "MouseGetPos" i've included it, commented obviously.
;MouseGetPos, [OutputVarX, OutputVarY, OutputVarWin, OutputVarControl, 1|2|3]
MouseGetPos, M_X, M_Y, M_Win, M_Ctrl, 2
;See the help file on this one or it won't make sense why I am using it this way. Syntax below
;ControlGetText, OutputVar [, Control, WinTitle, WinText, ExcludeTitle, ExcludeText
ControlGetText, OutputVar,, %M_Ctrl%, WinText, ExcludeTitle, ExcludeText
Msgbox, The text for %M_Ctrl% is %OutputVar%
Return