AutoHotkey Community

It is currently May 21st, 2012, 4:44 pm

All times are UTC [ DST ]


Search found 11 matches
Search these results:

Author Message

 Forum: Support   Topic: Close GUI window when window is not active

Posted: November 4th, 2010, 9:04 am 

Replies: 3
Views: 159


Code:
#Persistent
Gui, Add, Edit
Gui, Show
Gui, +LastFound
WinGet, GuiID, ID
SetTimer, GuiTimer
Return

GuiTimer:
  ifWinNotActive ahk_id %GuiID%
  {
    Gui, Cancel
    SetTimer, GuiTimer, Off
  }
  Return

 Forum: Issues   Topic: (Fixed) AutoHotkey_L #if bug?

Posted: October 21st, 2010, 1:10 pm 

Replies: 4
Views: 708


Thanks, Lexikos.

An egoistic report: I've just implemented a workaround (which occurred easier than I expected). Therefore, (1), (2), and (3) became practically equivalent to me (for now). :-)

 Forum: Issues   Topic: (Fixed) AutoHotkey_L #if bug?

Posted: October 21st, 2010, 10:14 am 

Replies: 4
Views: 708


Thanks for the reply, Lexikos . In my, rather exotic, case (in which certain AHK files are generated by a program rather than coded by a human) literal strings, with possible escaping, do occur in #if expressions, and I have to decide what to do now: wait for a fix or implement a workaround. Could y...

 Forum: Issues   Topic: (Fixed) AutoHotkey_L #if bug?

Posted: October 20th, 2010, 3:23 pm 

Replies: 4
Views: 708


Code:
; AutoHotkey_L 1.0.48.05.L60
x := "``"
#if x == "``"
  F11:: MsgBox {F11} OK.
  F12:: MsgBox {F12} OK.
#if x == "`"
  F11:: MsgBox {F11} Bug?
#if
F12:: MsgBox {F12} Bug?

 Forum: Support   Topic: EditBox - Read Only

Posted: October 4th, 2010, 1:37 pm 

Replies: 6
Views: 220


SKAN, adabo, thanks! I've got the idea.

 Forum: Support   Topic: EditBox - Read Only

Posted: October 4th, 2010, 12:28 pm 

Replies: 6
Views: 220


By the way, is there an easy way to make an Edit readonly without affecting the background color?
I'd like to obtain an Edit that looks like an ordinal Edit (black-on-white), but behaves so as if it is readonly.

 Forum: Scripts   Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...

Posted: September 24th, 2010, 11:56 am 

Replies: 1035
Views: 183361


Code:
x := Object()
x.y := 0
x.y += 1 ; This line does not contain a recognized action.

Is it possible to enrich AHK_L with the above syntax?

 Forum: Scripts   Topic: AutoHotkey_L: Arrays, Debugger, x64, COM, #If expression ...

 Post subject: Updating AutoHotkey_L
Posted: August 31st, 2010, 11:28 am 

Replies: 1035
Views: 183361


I've got AutoHotkey L55 installed and now I see that L56 is out.
What should I do to update *.exe, *.chm. etc.?
Should I download and run AutoHotkey_L_Install.exe?
Or should I download AutoHotkey_Lw.zip + AutoHotkey.chm
and replace the files by hand?

 Forum: Support   Topic: Getting input locale for a console window

Posted: August 25th, 2010, 1:30 pm 

Replies: 3
Views: 435


I have just switched to Windows 7 Pro x64 and AutoHotkey 1.0.48.05.L55. The situation got worse: now the AHK solutions I found always get (and set) "English" and only "English", regardless of the window/process. To be honest, I am a bit surprised: keyboard layout switching seems ...

 Forum: Support   Topic: Getting input locale for a console window

Posted: August 13th, 2010, 3:10 pm 

Replies: 3
Views: 435


TLM wrote:
Probably the best and easiest way to obtain a windows ID is [...]
Thanks, TLM, but I would like to obtain the window locale ID (sometimes called "keyboard layout") rather than the window ID. :-)

 Forum: Support   Topic: Getting input locale for a console window

Posted: August 13th, 2010, 2:37 pm 

Replies: 3
Views: 435


I've just discovered AutoHotkey. Awesome product, thanks! While studying the app, I am trying to monitor the "current" input locale (i.e., that of the active window). My bad, I cannot figure out how to get it. The solutions presented in " Keyboard layout switcher " and " Get...
Sort by:  
Page 1 of 1 [ Search found 11 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group