| Author |
Message |
Topic: Add Thousands Separator |
infogulch
Replies: 9
Views: 570
|
Forum: Scripts & Functions Posted: Tue Mar 16, 2010 10:17 pm Subject: Add Thousands Separator |
Maybe specifying the decimal separator (period or comma) would be helpful, too.Ah, good point! So I added another param to the function above.
However, I don't know how one could get the separator ... |
Topic: Notepad ++ code support |
infogulch
Replies: 47
Views: 7402
|
Forum: Bug Reports Posted: Mon Mar 15, 2010 4:22 pm Subject: Notepad ++ code support |
| Uh no hitting space is unnecessary. And you have to select the region anyway, so I don't get why selecting is a big deal in the first place. But each to his own I guess. |
Topic: GDI+ standard library 1.30 by tic |
infogulch
Replies: 347
Views: 54196
|
Forum: Scripts & Functions Posted: Fri Mar 12, 2010 7:02 pm Subject: GDI+ standard library 1.30 by tic |
| Thanks tic. I'm planning on releasing a new version of my RegionGetColor script soon, and it requires the GetCompatibleBitmap function. Currently I'm using my own mfc wrapper, but one of the new examp ... |
Topic: GDI+ standard library 1.30 by tic |
infogulch
Replies: 347
Views: 54196
|
Forum: Scripts & Functions Posted: Fri Mar 12, 2010 12:19 am Subject: GDI+ standard library 1.30 by tic |
tic, could you include the CreateCompatibleBitmap function with the other mfc wrapper functions? This would be nice not to have to include manually.
CreateCompatibleBitmap(hdc, w, h) { ... |
Topic: Tooltip text repetition |
infogulch
Replies: 5
Views: 100
|
Forum: Bug Reports Posted: Thu Mar 11, 2010 5:27 am Subject: Tooltip text repetition |
This has some very unexpected and buggy behavior:
loop
{
WinGetTitle, Title, Untitled - Notepad
ToolTip, %Title% Repeated
}
Esc::ExitApp ;you'll want a quick exit
It ha ... |
Topic: Notepad ++ code support |
infogulch
Replies: 47
Views: 7402
|
Forum: Bug Reports Posted: Wed Mar 10, 2010 9:22 pm Subject: Notepad ++ code support |
...
To column select, Hold the Alt key, click at the first character on the first line you want to comment, drag it to the last line you want commented and release. Then hit the ; key. It's called ... |
Topic: Notepad ++ code support |
infogulch
Replies: 47
Views: 7402
|
Forum: Bug Reports Posted: Sat Mar 06, 2010 4:16 pm Subject: Notepad ++ code support |
The reason stream comments aren't working is because autohotkey requires the comment open and comment close to be on lines of their own and not embbeded with other code on the same line.
I have al ... |
Topic: [lib] SimpleArray - short & fast string array - v3.5 |
infogulch
Replies: 72
Views: 11492
|
Forum: Scripts & Functions Posted: Sat Mar 06, 2010 6:10 am Subject: [lib] SimpleArray - short & fast string array - v3.5 |
| Actually I have considered this before. A blank variable is considered an array of length 1 as it is no different than initializing the array with a blank first element. Though I would be open to cons ... |
Topic: Add a space every 3rd digit? |
infogulch
Replies: 6
Views: 127
|
Forum: Ask for Help Posted: Thu Mar 04, 2010 8:01 pm Subject: Add a space every 3rd digit? |
| FYI I updated [url=http://www.autohotkey.com/forum/viewtopic.php?t=54149]ThousandsSep() with a user-defined separator param to cover instances like this. |
Topic: Add Thousands Separator |
infogulch
Replies: 9
Views: 570
|
Forum: Scripts & Functions Posted: Thu Mar 04, 2010 7:59 pm Subject: Add Thousands Separator |
In response to the need shown in [url=http://www.autohotkey.com/forum/viewtopic.php?t=55290]this thread, I decided to add an optional param for specifying your own seperator.
Updated.  |
Topic: InStr() enchancements |
infogulch
Replies: 12
Views: 475
|
Forum: Wish List Posted: Tue Mar 02, 2010 6:00 pm Subject: InStr() enchancements |
| ... but this completely misses the point. We need this functionality built in to ahk directly. If I wanted a wrapper function I would have made it myself and shut up. I made this thread because we nee ... |
Topic: InStr() enchancements |
infogulch
Replies: 12
Views: 475
|
Forum: Wish List Posted: Tue Feb 23, 2010 10:31 pm Subject: InStr() enchancements |
1. Support negative StartingPos for starting a certain number of characters from the end and going right to left.
2. Add an Occurrence param to find the n occurrence of Needle in the direction speci ... |
Topic: Machine code functions: Bit Wizardry |
infogulch
Replies: 253
Views: 39571
|
Forum: Scripts & Functions Posted: Tue Feb 23, 2010 6:28 pm Subject: Machine code functions: Bit Wizardry |
oh, then how about this:
haystackLenlen := BinRead(haystack, "binaryfile2.bin")
needleLen := BinRead(Needle, "somefile.bin")
;(btw, i'm making up t ... |
Topic: Machine code functions: Bit Wizardry |
infogulch
Replies: 253
Views: 39571
|
Forum: Scripts & Functions Posted: Tue Feb 23, 2010 12:35 am Subject: Re: Find binary sequence in memory |
Next Request to the best!
Again I would need the MCode-hex-string.
Isn't this what [url=http://msdn.microsoft.com/en-us/library/d7zdhf37%28VS.80%29.aspx]MemChr does? |
Topic: Question about Notepad++ |
infogulch
Replies: 1
Views: 132
|
Forum: General Chat Posted: Wed Feb 17, 2010 10:14 pm Subject: Question about Notepad++ |
| Look in the UserDefineDialog under Folder Open Keywords Settings and Folder Close Keywords Settings |
| |