| Author |
Message |
Topic: retrieving font size |
rousni
Replies: 2
Views: 61
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 3:00 pm Subject: retrieving font size |
That's an ahk gui edit control - the goal is to temporarily change the font size (a kind of zoom) without recording the new settings.
I did it using variables, but it seems to me that retrieving th ... |
Topic: retrieving font size |
rousni
Replies: 2
Views: 61
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 9:54 am Subject: retrieving font size |
Is there any way to retrieve the font size of an edit control?
(GuiControlGet and ControlGet don't have such a command.)
Thanks |
Topic: BLOCKINPUT doesnt work |
rousni
Replies: 2
Views: 129
|
Forum: Ask for Help Posted: Tue May 13, 2008 4:54 pm Subject: "blockinput, on" doesnt work at all |
| In Vista, blockinput works only if your script/exe was run as administrator. |
Topic: Vista bug fix |
rousni
Replies: 3
Views: 411
|
Forum: Bug Reports Posted: Tue Apr 29, 2008 4:21 pm Subject: "use WinXp insted" |
We all will use Vista sooner or later...
BlockInput doesn't work unless with administrative privileges.
Not a bug, indeed, but very very annoying! |
Topic: FileAppend, % Chr(10), 2-bytes file.txt |
rousni
Replies: 2
Views: 138
|
Forum: Ask for Help Posted: Sun Nov 11, 2007 9:15 pm Subject: FileAppend, % Chr(10), 2-bytes file.txt |
I am very sorry, this is in the help file:
To append in binary mode rather than text mode, prepend an asterisk to the filename. This causes each linefeed character (`n) to be written as as a single ... |
Topic: FileAppend, % Chr(10), 2-bytes file.txt |
rousni
Replies: 2
Views: 138
|
Forum: Ask for Help Posted: Sun Nov 11, 2007 8:58 pm Subject: FileAppend, % Chr(10), 2-bytes file.txt |
FileAppend, % Chr(10), 2-bytes file.txt
I would like to append only one char - Chr(10) -
but this appends Chr(13)+Chr(10)
Can this be avoid?
Thank you for your help |
Topic: Changing the clipbord from within the OnClipboardChange |
rousni
Replies: 1
Views: 120
|
Forum: Ask for Help Posted: Thu Nov 08, 2007 11:48 am Subject: Changing the clipbord from within the OnClipboardChange |
Is there any way to change the clipbord from within the label named OnClipboardChange (especially by: Clipboard = %Clipboard%) without launching repeatedly the same label?
Thanks |
Topic: "Input" - unexpected behavior |
rousni
Replies: 8
Views: 293
|
Forum: Ask for Help Posted: Mon Nov 05, 2007 9:53 am Subject: "Input" - unexpected behavior |
setbatchlines -1
doesn't help
it is a side effect of the repeat rate hitting keys
Is it possible to change this rate temporarily (DllCall, SendMessage,...)? |
Topic: "Input" - unexpected behavior |
rousni
Replies: 8
Views: 293
|
Forum: Ask for Help Posted: Fri Nov 02, 2007 8:00 pm Subject: "Input" - unexpected behavior |
| my goal is to create a keyboard launcher like the Windows Run edit box, but using aliases and a tooltip displaying pressed keys |
Topic: "Input" - unexpected behavior |
rousni
Replies: 8
Views: 293
|
Forum: Ask for Help Posted: Fri Nov 02, 2007 7:36 pm Subject: "Input" - unexpected behavior |
Loop
Input, var, L1
Normally, the user's input is blocked.
However, when holding down a key long enough, the keystroke is sent (repeatedly) to the active window. |
Topic: StringLower / StringUpper for UTF-8 strings |
rousni
Replies: 0
Views: 219
|
Forum: Ask for Help Posted: Thu Nov 01, 2007 5:33 pm Subject: StringLower / StringUpper for UTF-8 strings |
I use this to convert UTF-8 string to uppercase:
Transform, UTF8, Unicode
ChrLst = a~A|b~B|c~C|d~D|e~E|f~F|g~G|h~H|i~I|j~J|k~K|l~L|m~M|n~N|o~O|p~P|q~Q|r~R|s~S|t~T|u~U|v~V|w~W|x~X|y~Y|z~Z|Ã ~Ã ... |
Topic: How to find out what is the current keyboard layout? |
rousni
Replies: 6
Views: 455
|
Forum: Ask for Help Posted: Wed Oct 31, 2007 6:34 pm Subject: How to find out what is the current keyboard layout? |
Keyboard layout for a specific window:
IniRead, BG, %A_ScriptDir%\%1%, TRAFL, BG, 0x00000402
IniRead, EN, %A_ScriptDir%\%1%, TRAFL, EN, 0x00000809
IniRead, FR, %A_ScriptDir%\%1%, TRAFL, FR, 0x00000 ... |
Topic: "Input" - unexpected behavior |
rousni
Replies: 0
Views: 269
|
Forum: Ask for Help Posted: Wed Oct 31, 2007 6:27 pm Subject: "Input" - unexpected behavior |
Loop
Input, var, L1
Normally, the user's input is blocked.
However, when holding down a key long enough, the keystroke is sent (repeatedly) to the active window.
Is there any way to avoi ... |
Topic: POS := InStr(Haystack, Needle) : a contradictory result |
rousni
Replies: 2
Views: 244
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 8:21 pm Subject: POS := InStr(Haystack, Needle) : a contradictory result |
SetFormat, integer, h
VAR = 123456
POS := InStr(VAR, "789")
MsgBox, POS = %POS% `n ErrorLevel = %ErrorLevel%
;Result: POS = 0x0 and ErrorLevel = 0, which is contradicto ... |
Topic: If SubStr(VALUE, 0) = x |
rousni
Replies: 1
Views: 142
|
Forum: Ask for Help Posted: Mon Oct 08, 2007 11:47 am Subject: If SubStr(VALUE, 0) = x |
Why this doesn't work:
VALUE = blablax
If SubStr(VALUE, 0) = x
SoundBeep
Thanks |
| |