AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 275 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Converting number in time format
Slanter

Replies: 4
Views: 43

PostForum: 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

PostForum: 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

PostForum: 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

PostForum: 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

PostForum: 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

PostForum: 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
Question
  Topic: Script executing problem =/...
Slanter

Replies: 1
Views: 35

PostForum: 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

PostForum: 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 Embarassed .

Basically, th ...
  Topic: help with timer
Slanter

Replies: 10
Views: 130

PostForum: 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

PostForum: 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

PostForum: 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 Embarassed
  Topic: Anagram Bot
Slanter

Replies: 15
Views: 215

PostForum: 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

PostForum: 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

PostForum: 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

PostForum: 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 ...
 
Page 1 of 19 Goto page 1, 2, 3 ... 17, 18, 19  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group