| Author |
Message |
Topic: Toggling hotkey to pause and unpause. |
Justatoken
Replies: 1
Views: 92
|
Forum: Ask for Help Posted: Fri Jan 18, 2008 6:36 am Subject: Toggling hotkey to pause and unpause. |
| ^CtrlBreak::pausehttp://www.autohotkey.com/docs/commands/Pause.htm |
Topic: Indeterminate progressbar |
Justatoken
Replies: 22
Views: 678
|
Forum: Ask for Help Posted: Mon Dec 31, 2007 1:39 am Subject: Indeterminate progressbar |
Does anyone know if you can make it move backwards? No good reason, I was just curious. Was having Night Rider flashbacks I guess and was wondering if I could simulate the front light on Kit.  |
Topic: problem with imagesearch |
Justatoken
Replies: 4
Views: 319
|
Forum: Ask for Help Posted: Sun Dec 23, 2007 12:31 am Subject: problem with imagesearch |
maybe this:
Loop
{
ImageSearch,,, 275, 620, 390, 690, c:\gron.bmp
if Errorlevel = 0
{
Send, vb
}
sleep 1 ;to keep cpu usage down, can remove if you wish
} |
Topic: Loop and different actions for one "if" |
Justatoken
Replies: 2
Views: 174
|
Forum: Ask for Help Posted: Sun Dec 23, 2007 12:21 am Subject: Loop and different actions for one "if" |
I think your asking for this:
Loop, Read, MY_LOG.txt
LastLine = %A_LoopReadLine% ; keep the content of the last line
IfInString, LastLine, option1
ControlSend,, g, MY_WiNDOW, ;first option actio ... |
Topic: sleep less than 10ms? |
Justatoken
Replies: 9
Views: 307
|
Forum: Ask for Help Posted: Sun Dec 02, 2007 7:22 pm Subject: sleep less than 10ms? |
| Specifically I'm looking for an object that moves rapidly around the screen. With the sleep 1(apparently 10ms) it sometimes misses this object which is where the "not fast enough" comes in. ... |
Topic: sleep less than 10ms? |
Justatoken
Replies: 9
Views: 307
|
Forum: Ask for Help Posted: Sun Dec 02, 2007 6:02 pm Subject: sleep less than 10ms? |
Thanks for the reply. I'll try it out but I remember there was a reason I opted not to use timers, before speed was an issue, in the first place. Just don't remember what that reason is now.
peac ... |
Topic: sleep less than 10ms? |
Justatoken
Replies: 9
Views: 307
|
Forum: Ask for Help Posted: Sun Dec 02, 2007 4:36 pm Subject: sleep less than 10ms? |
Manual wrote:
Due to the granularity of the OS's time-keeping system, Delay is typically rounded up to the nearest multiple of 10. For example, a delay between 1 and 10 (inclusive) is equivalent to 1 ... |
Topic: Transparent background for checkboxes |
Justatoken
Replies: 7
Views: 348
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 8:18 am Subject: Transparent background for checkboxes |
| I have the same problem. I just make the checkbox same size as the actual box then put a text control beside it for the description. Works for me. |
Topic: RegExReplace, multiple replaces |
Justatoken
Replies: 2
Views: 212
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 8:13 am Subject: RegExReplace, multiple replaces |
I was trying to make a script that would do some scripting for me, to save me time . I thought that RegEx could replace them at same time preventing like a1 being changed to a6 then changing it bac ... |
Topic: RegExReplace, multiple replaces |
Justatoken
Replies: 2
Views: 212
|
Forum: Ask for Help Posted: Sun Sep 23, 2007 8:45 pm Subject: RegExReplace, multiple replaces |
hello all.
I've read the RegEx pages in the manual a few times and still don't see how to do this. Maybe I over looked it, I've never needed to use regex before now and really don't understand it ... |
Topic: Retreive first part of each line in a csv file |
Justatoken
Replies: 4
Views: 195
|
Forum: Ask for Help Posted: Mon May 21, 2007 12:33 am Subject: Retreive first part of each line in a csv file |
This worked for me but surely better ways.
FileRead, Data, List.csv
;Loop, Parse, InputVar [, Delimiters, OmitChars]
skip = 0
Loop, parse, data, `n
{
if s ... |
Topic: Need help with Random command |
Justatoken
Replies: 2
Views: 204
|
Forum: Ask for Help Posted: Sat Apr 14, 2007 4:05 am Subject: Need help with Random command |
Random, my_name, 1, 10
Send, Adrian{SPACE}%my_name%{ENTER} |
Topic: Sript pastes a phrase: I would like to add a TAB at end |
Justatoken
Replies: 2
Views: 197
|
Forum: Ask for Help Posted: Sat Feb 03, 2007 9:14 pm Subject: Sript pastes a phrase: I would like to add a TAB at end |
| #1::send,Client interview{Tab} |
Topic: changing image |
Justatoken
Replies: 3
Views: 224
|
Forum: Ask for Help Posted: Fri Feb 02, 2007 10:58 pm Subject: changing image |
| http://www.autohotkey.com/forum/viewtopic.php?t=1731 |
Topic: CLICK command help needed |
Justatoken
Replies: 8
Views: 243
|
Forum: Ask for Help Posted: Thu Feb 01, 2007 4:24 pm Subject: Re: CLICK command help needed |
Is there any way to place a click in the location relative to the active window.
CoordMode, Mouse, Relative |
| |