| Author |
Message |
Topic: Forum suggestion to fight spam |
ahklerner
Replies: 15
Views: 1077
|
Forum: Wish List Posted: Mon Oct 26, 2009 9:36 pm Subject: Forum suggestion to fight spam |
| RTFM probably just did the same thing i did which is read the bold print saying there is no WinDeActivate. WinSet, Bottom does do that. it does not de-select the icons. sorry. |
Topic: IE Cache Delete (index.dat) |
ahklerner
Replies: 19
Views: 6102
|
Forum: Scripts & Functions Posted: Wed Oct 14, 2009 10:09 pm Subject: IE Cache Delete (index.dat) |
so here would be the correct code:
ClearWebHistory(sCmd) {
; by ahklerner
ValidCmdList = Files,Cookies,History,Forms,Passwords,All,All2
Files = 8 ; Clear Temporary Internet ... |
Topic: [Live Chat] Instant AutoHotkey help! Just add water... |
ahklerner
Replies: 67
Views: 39371
|
Forum: Ask for Help Posted: Wed Oct 14, 2009 6:54 pm Subject: [Live Chat] Instant AutoHotkey help! Just add water... |
| stop posting you fool !!!! |
Topic: Is there a reason why winGet returns different values? |
ahklerner
Replies: 7
Views: 269
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 3:43 am Subject: Is there a reason why winGet returns different values? |
| perhaps the program you are running is creating multiple windows ? (you may not be able to see all of them) in that case also specify a window title or something like My Window Title ahk_pid %pid% ... ... |
Topic: Is there a reason why winGet returns different values? |
ahklerner
Replies: 7
Views: 269
|
Forum: Ask for Help Posted: Tue Oct 13, 2009 2:37 am Subject: Is there a reason why winGet returns different values? |
| to use pid you have to have full path to exe |
Topic: IRC |
ahklerner
Replies: 2
Views: 252
|
Forum: General Chat Posted: Mon Oct 12, 2009 7:54 pm Subject: IRC |
right now the freenode web client is banned in the channel because of spammers. feel free to use an actual irc client like pidgin to access the channel.  |
Topic: file read issues |
ahklerner
Replies: 5
Views: 355
|
Forum: Ask for Help Posted: Sun Oct 11, 2009 5:50 am Subject: file read issues |
exporevar != explorevar
 |
Topic: Function - Control_GetClassNN() - Get a control ClassNN |
ahklerner
Replies: 11
Views: 1350
|
Forum: Scripts & Functions Posted: Sun Oct 11, 2009 5:16 am Subject: Function - Control_GetClassNN() - Get a control ClassNN |
Very Nice! mine takes fewer query performance counter increments. at least here
freq := 0
Gui, +LastFound
hWindow := WinExist()
Gui, Add, Text, hwndhWnd, some text
Gui, Show
WinG ... |
Topic: Function - Control_GetClassNN() - Get a control ClassNN |
ahklerner
Replies: 11
Views: 1350
|
Forum: Scripts & Functions Posted: Tue Oct 06, 2009 5:48 am Subject: Function - Control_GetClassNN() - Get a control ClassNN |
i was interested in the dllcall version, but it just gets classname and not classNN  |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
ahklerner
Replies: 441
Views: 82497
|
Forum: Scripts & Functions Posted: Sun Oct 04, 2009 5:48 am Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
| very nice thanks |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
ahklerner
Replies: 441
Views: 82497
|
Forum: Scripts & Functions Posted: Fri Oct 02, 2009 4:41 pm Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
Why do you want to do that by address?
so that something like this will work
e := object()
e.base.MsgBox := "MsgBox"
cb := RegisterCallback( "TestObj_cb" ... |
Topic: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
ahklerner
Replies: 441
Views: 82497
|
Forum: Scripts & Functions Posted: Fri Oct 02, 2009 8:22 am Subject: AutoHotkey_L : Arrays, Debugger, #If expression, etc. |
how can i make this work?
e := object()
func(&e)
MsgBox % e.text
return
func(ObjAddress){
; some magic codes go here
obj := ??? ObjAddress ???
... |
Topic: Debugger |
ahklerner
Replies: 3
Views: 150
|
Forum: Ask for Help Posted: Fri Oct 02, 2009 7:51 am Subject: Debugger |
eastiest would be to put
ToolTip % A_Index . ": " var
somewhere in the loop |
Topic: gui.ahkl - a gui object for AutoHotkey_L v.1a |
ahklerner
Replies: 8
Views: 1042
|
Forum: Scripts & Functions Posted: Thu Oct 01, 2009 4:12 am Subject: gui.ahkl - a gui object for AutoHotkey_L v.1a |
for the people whe are line concious
a 1 liner Gui (I manually added a line break so word wrap didnt kick in)
(It Works)
o:=GUI(),o.Color("Lime"),o.Add("Te ... |
Topic: control.ahkl - a gui control object for AutoHotkey_L - v.1a |
ahklerner
Replies: 4
Views: 425
|
Forum: Scripts & Functions Posted: Thu Oct 01, 2009 4:04 am Subject: control.ahkl - a gui control object for AutoHotkey_L - v.1a |
updated
Now Allows Gui.ClassNN.* to be used to select control (after Gui.Show() has been called) |
| |