| Author |
Message |
Topic: Monthcal - Week numbers wrong |
nick
Replies: 4
Views: 242
|
Forum: Bug Reports Posted: Sun Feb 28, 2010 7:21 am Subject: Monthcal - Week numbers wrong |
WDay: Day of the week (1 – 7). Sunday is 1.
So isn't it somewhat consistent (for MS at least)? |
Topic: [Solved] Create struct and get data from it. |
nick
Replies: 8
Views: 194
|
Forum: Ask for Help Posted: Sun Feb 07, 2010 12:30 pm Subject: [Solved] Create struct and get data from it. |
Moin,
wenn es ANSI ist, probier mal sowas / if it is ANSI, you might try something like this:
pName := NumGet(BASS_DEVICEINFO, 0, "UInt")
pDriver := NumGet(BASS_DEVI ... |
Topic: [Solved] UpDown control causing trouble |
nick
Replies: 11
Views: 289
|
Forum: Ask for Help Posted: Sun Feb 07, 2010 8:54 am Subject: [Solved] UpDown control causing trouble |
Well, you might try this:
Gui, Add, Edit, x+5 w45 hp Number Right Limit3 gcalculate ; typing directly into this edit control has never caused trouble
Gui, Add, UpDown, 0x2 0x80 Range0-366 vreqDays ... |
Topic: edit controls with transparency |
nick
Replies: 13
Views: 287
|
Forum: Ask for Help Posted: Thu Feb 04, 2010 9:12 am Subject: edit controls with transparency |
| Yes, both "work", and even -BackgroundAndForeground and -BackgroundWhite, too. "Gracious" AHK will permit everything following the word "Background" in the options of an ... |
Topic: (Solved) Replacing no result with the number 0 |
nick
Replies: 6
Views: 134
|
Forum: Ask for Help Posted: Wed Feb 03, 2010 11:05 am Subject: (Solved) Replacing no result with the number 0 |
; ...
NewStr := RegExReplace(Sub1, "\(.*?\)", "", count) ; removes the parenethis in a name.
; ...
L%A_Index%Results := RegexReplace(RegExReplace( ... |
Topic: Suggestions on documentation improvements |
nick
Replies: 91
Views: 15537
|
Forum: Bug Reports Posted: Sun Dec 27, 2009 8:40 am Subject: Click command syntax line |
| Wouldn't it be nice to have a "CommandSyntax" line for the Click command too? |
Topic: [module] RE.ahk - Poor Man's Rich Edit |
nick
Replies: 4
Views: 1193
|
Forum: Scripts & Functions Posted: Fri Dec 25, 2009 10:37 am Subject: [module] RE.ahk - Poor Man's Rich Edit |
Moin,
I've found some of those last-minute typos in RE_SETFONT() (Styles instead of Style), so I had to update RE.ahk.
@hugov:
Here's some example code to include some hotkeys into the demo:Gu ... |
Topic: [module] RE.ahk - Poor Man's Rich Edit |
nick
Replies: 4
Views: 1193
|
Forum: Scripts & Functions Posted: Wed Dec 23, 2009 12:48 pm Subject: [module] RE.ahk - Poor Man's Rich Edit |
Moin,
I had to implement an advanced edit control, so I had a look around the forum for some suitable code. There isn't really much, but I've found two awesome posts:
corrupt's cRichEditjballi's H ... |
Topic: Problem with variables(?) - Works only outside a function |
nick
Replies: 27
Views: 737
|
Forum: Ask for Help Posted: Mon Nov 30, 2009 2:35 pm Subject: Problem with variables(?) - Works only outside a function |
Moin a_h_k,
you know the difference between hidden and autohidden, don't you?
#NoEnv
ABM_GETSTATE := 0x00000004
ABS_AUTOHIDE := 0x1
ABS_ALWAYSONTOP := 0x2
NumPut(VarSetCapacity ... |
Topic: Timers |
nick
Replies: 4
Views: 559
|
Forum: Wish List Posted: Sun Nov 29, 2009 10:53 am Subject: Timers |
| You might add the name and the current time to a list, which is checked by a timer at regular intervals. If 60 seconds are elapsed, send an invitation and remove the entry from the list. |
Topic: FileGetSize Bug |
nick
Replies: 5
Views: 347
|
Forum: Bug Reports Posted: Sun Nov 29, 2009 10:27 am Subject: FileGetSize Bug |
Another one:
FileGetSize(File, Units="") {
; Units: K = KB, M = MB
; optional immediately followed by the number of decimal places (1 - 9)
Static K ... |
Topic: Problem with variables(?) - Works only outside a function |
nick
Replies: 27
Views: 737
|
Forum: Ask for Help Posted: Sat Nov 28, 2009 10:04 am Subject: Problem with variables(?) - Works only outside a function |
; http://msdn.microsoft.com/en-us/library/ms633530%28VS.85%29.aspx
MsgBox, % DllCall("IsWindowVisible", UInt, WinExist("ahk_class Shell_TrayWnd")) ? "Visi ... |
Topic: Have #SetTitleMatchMode |
nick
Replies: 17
Views: 930
|
Forum: Wish List Posted: Sat Nov 28, 2009 9:51 am Subject: Have #SetTitleMatchMode |
Good morning a_h_k,
I'd say, SetTitleMatchMode is positional for all commands other than #IfWin or Hotkey, IfWin and the last one in the auto-execute section is positional for those and all followi ... |
Topic: Have #SetTitleMatchMode |
nick
Replies: 17
Views: 930
|
Forum: Wish List Posted: Fri Nov 27, 2009 7:50 am Subject: Have #SetTitleMatchMode |
This WILL work:
; ##############################################################################
#NoEnv
SetTitleMatchmode, 2
; ...
; ...
; ...
HotKey, IfWinActive, ^must be exactly another titl ... |
Topic: Have #SetTitleMatchMode |
nick
Replies: 17
Views: 930
|
Forum: Wish List Posted: Thu Nov 26, 2009 3:28 pm Subject: Have #SetTitleMatchMode |
(with your way all the :: hotkeys have to be changed to Hotkey hotkeys)
Why should they have to be changed?
The title or partial title of the target window (the matching behavior is determined by ... |
| |