Search found 177 matches

by aztec3
27 Dec 2016, 08:47
Forum: Ask for Help (v1)
Topic: Number pad key remapping
Replies: 1
Views: 440

Re: Number pad key remapping

k::Send, {Right}

Update: Added URL to AutoHotKey Key list

https://autohotkey.com/docs/KeyList.htm
by aztec3
20 Dec 2016, 13:21
Forum: Ask for Help (v1)
Topic: mc-lemons
Replies: 2
Views: 959

Re: mc-lemons

I hope you can find the assistance you are seeking, but since I don't have a Venmo account I can't even try to replicate your transaction process...and also not knowing your email client (e.g., Outlook, GMail, etc) would also hinder any coding. Also, it would be a bit un-secure to have your userid/p...
by aztec3
20 Dec 2016, 09:13
Forum: Ask for Help (v1)
Topic: Help coding
Replies: 2
Views: 547

Re: Help coding

Here you go...and here's the URL to the LIST OF KEYS, might be helpful to you in the future: ; https://autohotkey.com/boards/viewtopic.php?f=5&t=25892&sid=1403a0bc7d9960d91ee7828a80ef9d8e ; Script by aztec3 for RadoX_ Tuesday 2016/12/20 @ 09:10 EDT XButton1::1 XButton2::2 https://autohotkey.com/docs...
by aztec3
16 Dec 2016, 13:44
Forum: Gaming Help (v1)
Topic: Guitar Hero 3
Replies: 1
Views: 705

Re: Guitar Hero 3

Well, part of the problem in trying to help you is that we would need the play system and game to test...counts me out.

"So, is that rift RED RED GREEN GREEN BLUE RED GREEN???"
by aztec3
15 Dec 2016, 12:18
Forum: Ask for Help (v1)
Topic: stopping a runaway script Topic is solved
Replies: 7
Views: 3109

Re: stopping a runaway script Topic is solved

Someone here describe the difference between using GOTO and GOSUB very well...say you come to a fork in the road, you follow the GOTO path to the end and that's it, but if you went down the GOSUB path, once you reach the end you return to the fork in the road and can continue down the other path. I ...
by aztec3
14 Dec 2016, 11:44
Forum: Ask for Help (v1)
Topic: Meaning of selected word from google
Replies: 7
Views: 2003

Re: Meaning of selected word from google

Hmmm...a few things to factor to make certain we understand your request: 1) User inputs Hindi text into script (InputBox). 2) Script executes Google Translate from Hindi to English. 3) Capture English translation to clipboard. 4) Paste clipboard contents into a MsgBox text field and display. Is thi...
by aztec3
12 Dec 2016, 13:45
Forum: Ask for Help (v1)
Topic: Can't Find Mouse Button Name
Replies: 4
Views: 10370

Re: Can't Find Mouse Button Name

Listen (and obey) to evilC!
by aztec3
12 Dec 2016, 13:38
Forum: Ask for Help (v1)
Topic: Can't Find Mouse Button Name
Replies: 4
Views: 10370

Re: Can't Find Mouse Button Name

Digging through the posts and found your question. Ok, how about testing to see what each mouse button does what. This will display a message box (MsgBox) with text as to which mouse button was pressed, once you know which does what, I assume you can take it from there. Use SHIFT+ESC keys combo to E...
by aztec3
12 Dec 2016, 11:02
Forum: Ask for Help (v1)
Topic: Problems when running at Startup.
Replies: 2
Views: 743

Re: Problems when running at Startup.

If your script is in the STARTUP folder, then it will "look" for the STL.ini file to be in THAT directory...is it? Or more likely, it is in another directory that you need to define the path to. As to going into a loop...don't know if your code runs WITHOUT being invoked by a hotkey or not. If you h...
by aztec3
09 Dec 2016, 14:21
Forum: Ask for Help (v1)
Topic: simple script help!
Replies: 3
Views: 685

Re: simple script help!

LOL, yeah, I think I used less characters to write the script than you did to describe what you wanted. Enjoy.
by aztec3
09 Dec 2016, 13:52
Forum: Ask for Help (v1)
Topic: simple script help!
Replies: 3
Views: 685

Re: simple script help!

Like this???

Code: Select all

!j::Send {Left}
!i::Send {Up}
!k::Send {Down}
!l::Send {Right}
UPDATE: Here's the link to the list of keys.

https://autohotkey.com/docs/KeyList.htm
by aztec3
08 Dec 2016, 13:15
Forum: Ask for Help (v1)
Topic: Controlling 32 bit program in 64 bit Windows
Replies: 3
Views: 733

Re: Controlling 32 bit program in 64 bit Windows

Are you able to use the MouseMove command to have it click on an x,y location for a button?
by aztec3
08 Dec 2016, 09:59
Forum: Ask for Help (v1)
Topic: ImageSearch "shades of variation"?
Replies: 4
Views: 2300

Re: ImageSearch "shades of variation"?

I would venture to say it refers to the amount "off" the color could be; so n2 for 200 would allow for a range of 198 to 202 for the "intensity of the red, green, and blue components of each pixel's color."

UPDATED: Corrected my initial thought on this.
by aztec3
07 Dec 2016, 18:19
Forum: Ask for Help (v1)
Topic: Script Help (AutoHotkey)
Replies: 5
Views: 860

Re: Script Help (AutoHotkey)

OK, so where did I go wrong in my code?
by aztec3
07 Dec 2016, 15:18
Forum: Ask for Help (v1)
Topic: Script Help (AutoHotkey)
Replies: 5
Views: 860

Re: Script Help (AutoHotkey)

You might want to add a HotKey (or combo) to this code, as you desire.
by aztec3
07 Dec 2016, 15:16
Forum: Ask for Help (v1)
Topic: Script Help (AutoHotkey)
Replies: 5
Views: 860

Re: Script Help (AutoHotkey)

Code: Select all

Loop
	{
		Click
		Sleep, 500 ; 500 ms delay
		Click
		Sleep, 600 ; 600 ms delay
	}
return
by aztec3
07 Dec 2016, 14:03
Forum: Ask for Help (v1)
Topic: multi commands in one key Topic is solved
Replies: 5
Views: 5850

Re: multi commands in one key Topic is solved

Just place the code within a LOOP that executes 30 times:

Code: Select all

F1::
Loop, 30
	{
		Send {Esc}
		Send !{Tab}
		Send ^{Tab}
	}
return
by aztec3
07 Dec 2016, 07:26
Forum: Ask for Help (v1)
Topic: how to activate a macro
Replies: 9
Views: 3372

Re: how to activate a macro

franciamc1,
if the previous export didn't work, that's why I said you might have to install AutoHotKey to execute it. That may be the problem, if your macro runs as expected via Pulover's, then it should also run as a AutoHotKey macro too. Good luck and keep us informed of your progress.
by aztec3
06 Dec 2016, 09:02
Forum: Ask for Help (v1)
Topic: how to activate a macro
Replies: 9
Views: 3372

Re: how to activate a macro

Please let me know if you had to install AUTOHOTKEY too...not sure from reading about Pulover's features if it will run AUTOHOTKEY scripts without further install (it just might!):

"Export your macros to working AHK scripts."

http://www.macrocreator.com/
by aztec3
06 Dec 2016, 08:26
Forum: Ask for Help (v1)
Topic: how to activate a macro
Replies: 9
Views: 3372

Re: how to activate a macro

Here's an example of what this Pulover's Macro Creator AutoHotKey EXPORT looks like. All I did was click to open Internet Explorer. Lots of sleep and clicks it seems. ; This script was created using Pulover's Macro Creator ; www.macrocreator.com #NoEnv SetWorkingDir %A_ScriptDir% CoordMode, Mouse, W...

Go to advanced search