| Author |
Message |
Topic: how can i customised my hotkeys? |
SpiderGames
Replies: 2
Views: 54
|
Forum: Ask for Help Posted: Wed Nov 19, 2008 4:35 pm Subject: how can i customised my hotkeys? |
Hotkey, lable, key
you can use varriables with theis. SO you can make them user defined.
Gui, Add, Edit, vfish,
Gui, Add, Button,, Ok
Gui, SHow
REturn,
ButtonOK::
{
... |
Topic: getting the URL of a page without any change on the screen |
SpiderGames
Replies: 5
Views: 95
|
Forum: Ask for Help Posted: Wed Nov 19, 2008 4:32 pm Subject: getting the URL of a page without any change on the screen |
ControlGet.
Loop it up.
Tip: Control AHKclass is "Edit1" |
Topic: Read email: input to Pokerstars |
SpiderGames
Replies: 3
Views: 88
|
Forum: Ask for Help Posted: Mon Nov 17, 2008 10:57 pm Subject: Read email: input to Pokerstars |
Post script.
Don't make title "I need Help" |
Topic: How to write a better loop? |
SpiderGames
Replies: 4
Views: 129
|
Forum: Ask for Help Posted: Mon Nov 17, 2008 10:39 pm Subject: How to write a better loop? |
When working with a loop like that heres how sleeping helps...
Sleep, 1
Sleep, 10 10x less memory
Sleep, 100 100x
Sleep, 1000 10 ... |
Topic: detecting wheelup and wheeldown in a loop |
SpiderGames
Replies: 2
Views: 44
|
Forum: Ask for Help Posted: Mon Nov 17, 2008 10:35 pm Subject: detecting wheelup and wheeldown in a loop |
I dont think you can. If you want you can play arround with
KeyGetState
But...
Hotkeys are defiently the way to go. What do you need it for post your script and we might be able to help. |
Topic: WinGet, another Window SPY |
SpiderGames
Replies: 9
Views: 564
|
Forum: Scripts & Functions Posted: Mon Nov 17, 2008 12:41 pm Subject: WinGet, another Window SPY |
| really? What do you have? |
Topic: WinGet, another Window SPY |
SpiderGames
Replies: 9
Views: 564
|
Forum: Scripts & Functions Posted: Sun Nov 16, 2008 7:58 pm Subject: WinGet, another Window SPY |
SetTimer, timer, 200
Return,
timer:
MouseGetPos, x, y
PixelGetColor, fish, %x%, %y%
GuiControl,, vtextcolor, %fish%
Return,
|
Topic: WinGet, another Window SPY |
SpiderGames
Replies: 9
Views: 564
|
Forum: Scripts & Functions Posted: Sun Nov 16, 2008 4:50 pm Subject: WinGet, another Window SPY |
| good, all ur missing is the colour under the mouse. 0_o |
Topic: Copy file names from windows explorer ? |
SpiderGames
Replies: 8
Views: 161
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 1:27 pm Subject: Copy file names from windows explorer ? |
look up
FileSelectFile
and
FileselectFolder |
Topic: How can i use sleep in conditions? |
SpiderGames
Replies: 7
Views: 172
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 1:25 pm Subject: How can i use sleep in conditions? |
loop{
Pixelgetcolor,fir,405,154
if fir=0xCCFFCC ; (and sleep,36000) what should be the code for this?
{
Sleep, 36000
send,{numpadenter}
}
or
loop{
... |
Topic: computer wont start |
SpiderGames
Replies: 3
Views: 102
|
Forum: Ask for Help Posted: Wed Nov 12, 2008 12:23 am Subject: computer wont start |
Try
www.cogeco.ca
it has a free scanner and it got rid of a nasty fisher i had. |
Topic: loop mouse clicks |
SpiderGames
Replies: 5
Views: 142
|
Forum: Ask for Help Posted: Tue Nov 11, 2008 1:23 pm Subject: loop mouse clicks |
Loop, ; Leave it blank for endless
{
if fish = 1
Break ; THis comand will break the loop.
Else
MouseClickLeft,
}
a::
fish = 1
Return,
|
Topic: The Search 1.0 |
SpiderGames
Replies: 5
Views: 517
|
Forum: Scripts & Functions Posted: Sun Nov 09, 2008 1:49 pm Subject: The Search 1.0 |
| lol ur just replacing the URL. with our input. |
Topic: Am I using SendInput right...? |
SpiderGames
Replies: 4
Views: 167
|
Forum: Ask for Help Posted: Fri Nov 07, 2008 12:13 pm Subject: Am I using SendInput right...? |
1 - Yes/No. It isn't Waiting to be pressed. But when it is pressed it will run the comands below it.
2 - ControlSend isn't always for active window. And Fifa might just not accept Automated Key ... |
Topic: Send keys in a loop |
SpiderGames
Replies: 4
Views: 170
|
Forum: Ask for Help Posted: Fri Nov 07, 2008 12:10 pm Subject: Send keys in a loop |
Loop,
Send, w
Now you said there is a protection vs all? I play WoW and i can have my Left arrow key send Ctr 1 for a pet atk and my UP arrow key for Ctr 4 For my pets agro atk. I set it up ... |
| |