| Author |
Message |
Topic: Dumb question - How do I use WinText without WinTitle? |
Krogdor
Replies: 2
Views: 50
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 6:31 am Subject: Dumb question - How do I use WinText without WinTitle? |
| That code works fine for me... |
Topic: Noob ini and GUI menu togglecheck problem |
Krogdor
Replies: 23
Views: 318
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 6:11 am Subject: Noob ini and GUI menu togglecheck problem |
| Well you could do something like have the user specify a directory, and then include that directory as a variable before all of the files. Or set the working directory to a different location. |
Topic: Noob ini and GUI menu togglecheck problem |
Krogdor
Replies: 23
Views: 318
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 5:22 am Subject: Noob ini and GUI menu togglecheck problem |
That seems weird...
Are any of the settings different? SendMode, KeyDelay, etc? |
Topic: Help with a toggle key on/off script |
Krogdor
Replies: 2
Views: 43
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 5:21 am Subject: Help with a toggle key on/off script |
$*space::
Loop
{
GetKeyState, state, space, P
if state=U
{
return
}
Send % "{space " (Mod(A_Index,2) ? "down ... |
Topic: Disable Nth item in a listbox |
Krogdor
Replies: 3
Views: 47
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 5:13 am Subject: Disable Nth item in a listbox |
| Hm. Well, then I suppose the control won't let you disable it... Because that is the proper AHK command to disable it. |
Topic: Transparent background for checkboxes |
Krogdor
Replies: 7
Views: 281
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 5:12 am Subject: Transparent background for checkboxes |
Well, you can continue using the workaround posted, and then add a label to the text component that toggles the checkbox?
Example:
Gui, Add, Checkbox, vCheckbox w10 h10 ;or whatever to have only ... |
Topic: Appskey only performing real function on hold |
Krogdor
Replies: 5
Views: 76
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 5:05 am Subject: Appskey only performing real function on hold |
Right, sorry... forgot the KeyWait. Happened last time I did something like this too ><
For your new issue... I'm not too sure. I don't use any hotkeys that are a combination of two keys (exc ... |
Topic: Disable Nth item in a listbox |
Krogdor
Replies: 3
Views: 47
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 4:58 am Subject: Disable Nth item in a listbox |
| Control, Disable, 6, Listbox1, ahk_class ReclassifyDialog |
Topic: Using CoordMode incorrectly? newbie here |
Krogdor
Replies: 4
Views: 62
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 3:33 am Subject: Using CoordMode incorrectly? newbie here |
Worked perfectly, I didn't even realize I could leave X and Y as just X and Y- I thought they required actual numbers. Exactly what I needed, thanks
It only works because MouseGetPos stored the ... |
Topic: random moves (up, down, left, right) |
Krogdor
Replies: 12
Views: 117
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 3:32 am Subject: random moves (up, down, left, right) |
x::
Sendmode, event
Send, {f10 down}{f10 up}
SetKeyDelay, 10, 100
Keys = {Up},{down},{left},{right}
StringSplit, key, k ... |
Topic: COM Standard Library |
Krogdor
Replies: 145
Views: 14126
|
Forum: Scripts & Functions Posted: Thu Jul 24, 2008 3:23 am Subject: COM Standard Library |
Great! Thanks!
Now... I need a little help with syntax >< The help file for id3lib says:
Almost all functionality occurs via an ID3_Tag object. An ID3_Tag object basically encapsulates two ... |
Topic: Using CoordMode incorrectly? newbie here |
Krogdor
Replies: 4
Views: 62
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 1:51 am Subject: Using CoordMode incorrectly? newbie here |
If you don't give MouseClick any parameters, it will just click wherever the cursor is... Try something like this:
MouseGetPos, X, Y
Click, %X%, %Y%
Sleep 1000
IfWinExist Window A
{
WinAc ... |
Topic: semi-complex data parse question, please help |
Krogdor
Replies: 2
Views: 44
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 1:48 am Subject: semi-complex data parse question, please help |
FileRead, Data, data.txt
Data := RegExReplace(Data,"remove1="".+""")
MsgBox, % Data |
Topic: Appskey only performing real function on hold |
Krogdor
Replies: 5
Views: 76
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 1:45 am Subject: Appskey only performing real function on hold |
AppsKey::
Loop, 100
{
If !(GetKeyState("AppsKey","P"))
Break
Sleep 10
Times := A_Index
}
If (Times != 100)
GoSub, OpenDol ... |
Topic: random moves (up, down, left, right) |
Krogdor
Replies: 12
Views: 117
|
Forum: Ask for Help Posted: Wed Jul 23, 2008 9:40 pm Subject: random moves (up, down, left, right) |
It realy works for me, but is the best way of doing it?
Pretty much... The random command only supports numbers, so you then have to convert that into a key name. A bit shorter would be to do:
R ... |
| |