| Author |
Message |
Topic: Valid timestamp? |
Peter
Replies: 1
Views: 61
|
Forum: Bug Reports Posted: Sat Aug 16, 2008 1:10 pm Subject: Valid timestamp? |
I don't see much of a feature in it. I've tested a bit more.
And it seems that Ahk doesn't care about the month number, any number will be valid according to Ahk. On the other hand it checks correct ... |
Topic: WinExist() finds more windows then WinGet,var,list |
Peter
Replies: 4
Views: 116
|
Forum: Bug Reports Posted: Thu Aug 14, 2008 9:15 am Subject: WinExist() finds more windows then WinGet,var,list |
| you can use WinGet, , ControlList to get the children windows of a window...Yes, I checked and that's true. I've added that to the code. |
Topic: WinExist() finds more windows then WinGet,var,list |
Peter
Replies: 4
Views: 116
|
Forum: Bug Reports Posted: Wed Aug 13, 2008 11:00 pm Subject: WinExist() finds more windows then WinGet,var,list |
When I make a Listview of all windows, I'm sometimes interested in finding the parent window in my Listview, where some window belongs to.
But sometimes "WinGet,var,list" can't find it, alt ... |
Topic: Looping a range of dates (xxxx/xx/xx/ - xxxx/xx/xx) by month |
Peter
Replies: 5
Views: 165
|
Forum: Ask for Help Posted: Tue Aug 12, 2008 9:29 pm Subject: Looping a range of dates (xxxx/xx/xx/ - xxxx/xx/xx) by month |
| Is there any way to store each date that gets generated in IntervalList as its own variable? I know I might be able to stringsplit the value of IntervalList...If you look in IntervalList := " ... |
Topic: Looping a range of dates (xxxx/xx/xx/ - xxxx/xx/xx) by month |
Peter
Replies: 5
Views: 165
|
Forum: Ask for Help Posted: Mon Aug 11, 2008 11:31 pm Subject: Looping a range of dates (xxxx/xx/xx/ - xxxx/xx/xx) by month |
It was a bit more difficult then I thought , but I came up with this: Gui, Add, MonthCal, vStartDate, 20081122
Gui, Add, MonthCal, x+10 vEndDate, 20090210
Gui, add, button, gSplitMonths , Sp ... |
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
Peter
Replies: 2
Views: 109
|
Forum: Bug Reports Posted: Mon Aug 11, 2008 6:45 pm Subject: "Lbutton up" in Gui gLabel calls first hotkey |
I asked in ; (Tested with 1.0.47.00 and 1.0.47.06 on WindowsXP)
Gui, add, text, gtxtLbutton, Click on this text (Ahk V%A_AhkVersion%).
Gui, show, x300 y500 w250, Lbutton up ... |
Topic: How To Minimize Everything? |
Peter
Replies: 3
Views: 93
|
Forum: Ask for Help Posted: Sun Aug 10, 2008 11:09 am Subject: How To Minimize Everything? |
It means you want to minimize all Windows, except one (Widget window) maybe?
If so, you can try via
WinGet, IDlist, list
Loop, %IDlist% {
; minimize the right windows, except 1
... |
Topic: How To Minimize Everything? |
Peter
Replies: 3
Views: 93
|
Forum: Ask for Help Posted: Sun Aug 10, 2008 9:19 am Subject: How To Minimize Everything? |
I'm not sure what your problem is.
If you use the Windows hotkey Win+D, it will minimize all windows (or at least, brings the desktop to the front which is visually the same).
But in your code, you ... |
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
Peter
Replies: 6
Views: 138
|
Forum: Ask for Help Posted: Sun Aug 10, 2008 8:54 am Subject: "Lbutton up" in Gui gLabel calls first hotkey |
Thanks for your effort, but that's no solution for me (tried already before).
I think you got a solution if you can detect when you stopped dragging a window (i.e. also LButton up, but when dragging) ... |
Topic: Simple Quick Copy script question |
Peter
Replies: 6
Views: 116
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 11:55 pm Subject: Simple Quick Copy script question |
@mindlesspuppet: Umm, you're not a super noob to Autohotkey as you say, because you made a good workaround for using If-else statements!
But you used again !`:: in your code. I guess your hotkey is o ... |
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
Peter
Replies: 6
Views: 138
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 11:20 pm Subject: "Lbutton up" in Gui gLabel calls first hotkey |
| Just out of interest I guess you are trying to get a label to fire when the left button is release upon that control, in which case a solution could be worked using onmessage.What I'm doing with my ot ... |
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
Peter
Replies: 6
Views: 138
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 6:25 pm Subject: "Lbutton up" in Gui gLabel calls first hotkey |
Slight work around.Thanks for your workaround.
But if you hold down Lbutton longer then the delay, it gives the same result.
And if you don't hold it down, it doesn't respond to "Lbutton up&q ... |
Topic: Simple Quick Copy script question |
Peter
Replies: 6
Views: 116
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 5:46 pm Subject: Simple Quick Copy script question |
If-else statements are not apllicable here. The #IfWinActive is only there for the next hotkey(s) definition.
Once they are defined, those lines are normally never used anymore, not like an If-Else s ... |
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
Peter
Replies: 6
Views: 138
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 4:30 pm Subject: "Lbutton up" in Gui gLabel calls first hotkey |
If a hotkey "Lbutton up" is placed in a label routine of Gui, then another hotkey routine is called first.
Namely the first defined hotkey routine in the script, in this case FirstHotkey ... |
Topic: help with lists please |
Peter
Replies: 2
Views: 54
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 4:15 pm Subject: help with lists please |
I guess you have to go the OCR way.
Look e.g. [url=http://www.autohotkey.com/forum/viewtopic.php?t=22137ocr]here on the AHK forum. |
| |