| Author |
Message |
Topic: [fn][L] Placeholder() - placeholder text for edit controls |
infogulch
Replies: 13
Views: 782
|
Forum: Scripts & Functions Posted: Sat Feb 04, 2012 9:45 pm Subject: [fn][L] Placeholder() - placeholder text for edit controls |
No, the difference is that Placeholder() only checks when the edit control itself is focused or unfocused.
After you do: ^a{Del}, the focus is still in the edit control. It will not add placeholde ... |
Topic: [fn][L] Placeholder() - placeholder text for edit controls |
infogulch
Replies: 13
Views: 782
|
Forum: Scripts & Functions Posted: Wed Feb 01, 2012 5:57 pm Subject: [fn][L] Placeholder() - placeholder text for edit controls |
Hmm, apparently the difference between them is that EM_SETCUEBANNER is better than this function and has the advantage of being built into the edit control. *facepalm*
You know, I've always enjoyed ... |
Topic: The 'Let's Ban Anonymous Posters!' hysteria ... |
infogulch
Replies: 13
Views: 393
|
Forum: General Chat Posted: Fri Jan 27, 2012 9:02 pm Subject: The 'Let's Ban Anonymous Posters!' hysteria ... |
Ah well then that is a good point. I remember my first few posts (as guest of course) where I wanted to go back and edit to use code tags.
Also about viewing previous questions. Sortof a shortcut t ... |
Topic: The 'Let's Ban Anonymous Posters!' hysteria ... |
infogulch
Replies: 13
Views: 393
|
Forum: General Chat Posted: Fri Jan 27, 2012 8:48 pm Subject: The 'Let's Ban Anonymous Posters!' hysteria ... |
| @Mickers: to be clear, it's not necessairly guests that forget to use ]code] tags, it's most likely new users who haven't ever posted and don't feel their simple question warrants signing up for an ac ... |
Topic: better DllCall structure support |
infogulch
Replies: 14
Views: 300
|
Forum: Wish List Posted: Wed Jan 25, 2012 7:13 pm Subject: better DllCall structure support |
| @jaco: No. All ahk can see in a dll is the total size of the params. Parameters in a dll function are passed as a data blob, but there is no way to tell how that blob is split up and used in the funct ... |
Topic: better DllCall structure support |
infogulch
Replies: 14
Views: 300
|
Forum: Wish List Posted: Wed Jan 25, 2012 6:45 pm Subject: better DllCall structure support |
there should be a means to retrieve structure sizes. Agree.
get rid of ... variable types in DllCall by having a new function like DllCallEx() or something and just pass what is written on MSDN to t ... |
Topic: CloudAHK - Cloud Compiling |
infogulch
Replies: 27
Views: 863
|
Forum: Utilities & Resources Posted: Sun Jan 22, 2012 12:47 am Subject: CloudAHK - Cloud Compiling |
| I wonder if this could be integrated to http://cloud9ide.com/ as a plugin or something. |
Topic: RegisterCallback should accept func objects |
infogulch
Replies: 3
Views: 143
|
Forum: Wish List Posted: Fri Jan 20, 2012 4:46 pm Subject: RegisterCallback should accept func objects |
I completely agree.
With a func object, one might not have to supply ParamCount. |
Topic: array.max() / array.min() |
infogulch
Replies: 21
Views: 869
|
Forum: Wish List Posted: Thu Jan 05, 2012 4:03 pm Subject: array.max() / array.min() |
Oh, uh well I totally meant to point out that bug...
In any case, what do you guys think of Max() and Min() ?
I've been thinking, I would actually prefer to have two additional built-in object f ... |
Topic: array.max() / array.min() |
infogulch
Replies: 21
Views: 869
|
Forum: Wish List Posted: Wed Jan 04, 2012 10:21 pm Subject: array.max() / array.min() |
Contains++
Good question, what happens when you increment a function?
obj := { fn: Func("function") }
obj.fn++
msgbox % obj.fn()
function ... |
Topic: array.max() / array.min() |
infogulch
Replies: 21
Views: 869
|
Forum: Wish List Posted: Wed Jan 04, 2012 10:06 pm Subject: array.max() / array.min() |
Old topic, I know.
For a search function, I like "Contains". It's similar to ahk B/L's if var contains convention and would bring similar functionality to v2 where all non-expression if's ... |
Topic: Launch your scripts from Notepad++, just with CTRL+F11! |
infogulch
Replies: 11
Views: 507
|
Forum: Utilities & Resources Posted: Sat Dec 24, 2011 5:07 am Subject: Launch your scripts from Notepad++, just with CTRL+F11! |
| There's an extension for npp, called RunMe, that will not only run the current file, but also launch explorer at the file's directory, or run a cmd prompt at the current directory, all with the hotkey ... |
Topic: SuperGlobal variables ... [mistaken] |
infogulch
Replies: 5
Views: 359
|
Forum: Wish List Posted: Thu Dec 15, 2011 5:02 pm Subject: SuperGlobal variables ... [mistaken] |
Aaah I see.
How about this then:
When ahk encounters a class X extends Y and Y is not yet an object: Create an (empty) object for Y and use it as X's base.
If the script encounters class Y, pop ... |
Topic: SuperGlobal variables ... [mistaken] |
infogulch
Replies: 5
Views: 359
|
Forum: Wish List Posted: Wed Dec 14, 2011 7:26 pm Subject: SuperGlobal variables ... [mistaken] |
| Ok I'll turn this into a question: If explicitly declared global variables are NOT position sensitive, why are class declarations? |
Topic: Hotstrings should delete as little as they can |
infogulch
Replies: 7
Views: 275
|
Forum: Wish List Posted: Tue Dec 13, 2011 8:12 pm Subject: Hotstrings should delete as little as they can |
Take another look:the #Hotstring directive is positional when used
#Hotstring NewOptions works the same as any of the #if* directives.
Edit: Whoops, I forgot something in the function. Updated ab ... |
| |