| Author |
Message |
Topic: Converting number in time format |
Slanter
Replies: 4
Views: 43
|
Forum: Ask for Help Posted: Mon Sep 08, 2008 3:55 am Subject: Converting number in time format |
From the examples on the manual page for FormatTime
; The following function converts the specified number of seconds into the corresponding
; number of hours, minutes, and seconds (hh:mm ... |
Topic: How to enter numlockdown and numlockup? |
Slanter
Replies: 6
Views: 54
|
Forum: Ask for Help Posted: Mon Sep 08, 2008 3:53 am Subject: How to enter numlockdown and numlockup? |
| Send, ^{F12} |
Topic: Cannot map ALT + ` (tilde button) to Middle Button for game |
Slanter
Replies: 6
Views: 74
|
Forum: Ask for Help Posted: Sun Sep 07, 2008 8:21 am Subject: Cannot map ALT + ` (tilde button) to Middle Button for game |
| Maybe something like this? MButton::SendPlay, !`` |
Topic: Cannot map ALT + ` (tilde button) to Middle Button for game |
Slanter
Replies: 6
Views: 74
|
Forum: Ask for Help Posted: Sun Sep 07, 2008 7:11 am Subject: Cannot map ALT + ` (tilde button) to Middle Button for game |
| Do you actually want to send a tilde (~) or the grave key (`)? If you're going for the tilde, use MButton::!~ Otherwise, the first one you posted should work just fine. |
Topic: Thought for the week {A.I.}... |
Slanter
Replies: 15
Views: 282
|
Forum: General Chat Posted: Sun Sep 07, 2008 6:24 am Subject: Thought for the week {A.I.}... |
| I just updated the code with a gui. Colors of dots are as follows: Female bug is light red, Male bug is dark red/brown, Food is blue. This really shows how some of these bugs mutate, as you watch them ... |
Topic: Move curser, then go back to initial pos |
Slanter
Replies: 6
Views: 124
|
Forum: Ask for Help Posted: Sun Sep 07, 2008 1:06 am Subject: Move curser, then go back to initial pos |
#x::
CoordMode, Mouse, Screen
MouseGetPos, X, Y
MouseClick,, 50, 50
MouseMove, %X%, %Y%, 0
Return
 |
Topic: Script executing problem =/... |
Slanter
Replies: 1
Views: 35
|
Forum: Ask for Help Posted: Sun Sep 07, 2008 12:54 am Subject: Script executing problem =/... |
| This shouldn't be happening, can you post a working and a broken version of your script? |
Topic: Thought for the week {A.I.}... |
Slanter
Replies: 15
Views: 282
|
Forum: General Chat Posted: Sun Sep 07, 2008 12:50 am Subject: Thought for the week {A.I.}... |
Okay, I was bored over the last couple of days and decided to try and write something like the bug program I mentioned. I did it in AU3 though because I wanted to use arrays .
Basically, th ... |
Topic: help with timer |
Slanter
Replies: 10
Views: 130
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 9:49 pm Subject: help with timer |
Does this help? I cleaned up and shortened your code a little
GameName = Engine.exe
KeySleep1 = 100
#Persistent
#SingleInstance force
#NoEnv
SetTimer, KeepRunning, 10
return
KeepRunnin ... |
Topic: Displaying msgbox when breaking loop |
Slanter
Replies: 5
Views: 89
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 9:38 pm Subject: Displaying msgbox when breaking loop |
maybe put the msgbox after the loop? Loop, 5
A++
MsgBox The loop ended! |
Topic: How to extract a Subtotal from Window and send it? |
Slanter
Replies: 5
Views: 86
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 9:33 pm Subject: How to extract a Subtotal from Window and send it? |
oops, forgot to change that back after testing it  |
Topic: Anagram Bot |
Slanter
Replies: 15
Views: 215
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 6:09 am Subject: Anagram Bot |
| Try looking at UrlDownloadToFile, and use it with a url like http://www.anagrammer.com/YourWordHere |
Topic: How can I changen GUI and MATH |
Slanter
Replies: 4
Views: 108
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 6:06 am Subject: How can I changen GUI and MATH |
RTFM and BE MORE SPECIFIC
[url=http://www.autohotkey.com/docs/commands/Gui.htm#label]g-labels
[url=http://www.autohotkey.com/docs/commands/GuiControls.htm#Progress]Gui, Add, Progress
[url=http:// ... |
Topic: Mouse control? |
Slanter
Replies: 2
Views: 73
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 6:04 am Subject: Mouse control? |
| no, because the viewpoint from each window would be different. This would require a lot more than just clicking. Instead, why not bind an assist macro to a key, and press that whenever you target some ... |
Topic: How to extract a Subtotal from Window and send it? |
Slanter
Replies: 5
Views: 86
|
Forum: Ask for Help Posted: Sat Sep 06, 2008 2:21 am Subject: How to extract a Subtotal from Window and send it? |
maybe something like this? Enter::
{
WinWait, ShopAssist
WinGetText, sub ; The window found above will be used.
RegExMatch(var,"\d+\.\d{2}",sub)
FileAppe ... |
| |