| Author |
Message |
Topic: stop a script? |
Speedzter
Replies: 3
Views: 99
|
Forum: Ask for Help Posted: Mon Nov 17, 2008 3:34 pm Subject: stop a script? |
You're Welcome..  |
Topic: stop a script? |
Speedzter
Replies: 3
Views: 99
|
Forum: Ask for Help Posted: Mon Nov 17, 2008 2:52 pm Subject: stop a script? |
#SingleInstance force
pause::pause ; Makes the pause button pause the script..
#z::
Loop 10
{
Click 603 264
;Click 996 511
Click 996 511
Click 996 566
} |
Topic: Is it possible to append a .xls file? |
Speedzter
Replies: 8
Views: 180
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 10:38 pm Subject: Is it possible to append a .xls file? |
That code works perfect for me..
Only problem is that it appends to A1 all the time...
But you can fix that by adding a newline character
Like this:
inputbox, text, nothing, enter text ... |
Topic: Need Help With "Loop" Command - Need Macro to Repe |
Speedzter
Replies: 3
Views: 46
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 10:28 pm Subject: Need Help With "Loop" Command - Need Macro to Repe |
You're Welcome...  |
Topic: Need Help With "Loop" Command - Need Macro to Repe |
Speedzter
Replies: 3
Views: 46
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 10:09 pm Subject: Need Help With "Loop" Command - Need Macro to Repe |
Loop
{
MouseClick, left, 84, 279
Sleep, 100
MouseClick, left, 280, 491
Sleep, 60000
} |
Topic: Detect File Transfer And File Delete |
Speedzter
Replies: 3
Views: 72
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 9:37 pm Subject: Detect File Transfer And File Delete |
found it:
Thanks m8.. Preciate it..
I'll take a look at it..  |
Topic: Detect File Transfer And File Delete |
Speedzter
Replies: 3
Views: 72
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 12:16 pm Subject: Detect File Transfer And File Delete |
Hey...
I was wondering if it's possible to write a script that detects file transfers and file deletes...
Example
I have a drive, let's call it D: in this example.. I would like to know if it ... |
Topic: automatic key presser |
Speedzter
Replies: 1
Views: 64
|
Forum: Ask for Help Posted: Sat Nov 08, 2008 3:11 pm Subject: automatic key presser |
Loop
{
Send, ^c
Sleep, 1000
}
Return |
Topic: Possible to refresh multiple tabs? |
Speedzter
Replies: 2
Views: 129
|
Forum: Ask for Help Posted: Mon Nov 03, 2008 2:52 am Subject: Possible to refresh multiple tabs? |
If you Right-Click one of your tabs you get an option to "refresh all tabs" but as far as I can tell there's no hotkey for that...
So Maybe the only way to do this is making your script r ... |
Topic: Help toggling script on/off |
Speedzter
Replies: 3
Views: 148
|
Forum: Ask for Help Posted: Mon Oct 27, 2008 3:27 pm Subject: Help toggling script on/off |
Try this..
I uses pgup & pgdn as your on/off buttons...
It also makes a sound when you toggle it on/off...
Just change the sleep time to the speed you want it to click..
#NoEnv
#Si ... |
Topic: good practises and important functions |
Speedzter
Replies: 5
Views: 216
|
Forum: Ask for Help Posted: Mon Oct 27, 2008 2:51 pm Subject: good practises and important functions |
I normally use this site for reference;
http://www.autohotkey.com/docs/commands.htm
It doesn't contain all commands... but enough to get you started with most tasks...  |
Topic: unresolved still, infinite click |
Speedzter
Replies: 7
Views: 151
|
Forum: Ask for Help Posted: Thu Oct 23, 2008 7:19 am Subject: unresolved still, infinite click |
| I guess you could just use window spy to get the info about the button otherwise you could use imagesearch .. |
Topic: to WORD, Microsoft Word |
Speedzter
Replies: 2
Views: 121
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 6:17 am Subject: to WORD, Microsoft Word |
You can use
winactivate
http://www.autohotkey.com/docs/commands/WinActivate.htm |
Topic: Set a key to mash 2 keys with maximum speed |
Speedzter
Replies: 1
Views: 60
|
Forum: Ask for Help Posted: Mon Oct 20, 2008 7:32 am Subject: Set a key to mash 2 keys with maximum speed |
Try this.. depending on the game it should work..
d::
Loop
{
GetKeyState, dState, d, P
if dState = U
break
Sendplay, f
sendplay, b
}
Return
And depending on the g ... |
Topic: gmail sign in |
Speedzter
Replies: 22
Views: 1509
|
Forum: Ask for Help Posted: Mon Oct 20, 2008 7:22 am Subject: gmail sign in |
Okay. You got me. Anyway I got the answer to my question. Speed was direct to the point. Missed your link there.
So, ok I got it. This wintitle is the title or partial, say from the example
G ... |
| |