Search found 177 matches

by aztec3
13 Apr 2017, 07:23
Forum: Ask for Help (v1)
Topic: Auto clicking is not working Topic is solved
Replies: 5
Views: 1578

Re: Auto clicking is not working Topic is solved

I don't think you need the "ahk_class" in that parameter, just make it "ApolloRuntimeContentWindow", also not sure with your parameters for the SetTimer. When I run into these kind of issues, I "back off" on some of the code to the point where it does work and then proceed to what breaks it. https:/...
by aztec3
13 Apr 2017, 06:56
Forum: Ask for Help (v1)
Topic: Auto clicking is not working Topic is solved
Replies: 5
Views: 1578

Re: Auto clicking is not working Topic is solved

Your code is invoked via WINDOW+F8 keys (# is for the Window key). What happens if you hold down the WINDOW key while hitting the F8 key or remove the "#" and just hit F8??? Also, you have to embed your AutoHotKey code within the code brackets to properly be displayed here. #SingleInstance, Force #N...
by aztec3
12 Apr 2017, 07:05
Forum: Ask for Help (v1)
Topic: Select dropdown list element
Replies: 2
Views: 825

Re: Select dropdown list element

Update: Answered below.
by aztec3
11 Apr 2017, 14:03
Forum: Ask for Help (v1)
Topic: Mouse click without using control or alt key
Replies: 5
Views: 1629

Re: Mouse click without using control or alt key

Maybe SHIFT+ESC?

+Esc::Click
by aztec3
11 Apr 2017, 12:11
Forum: Ask for Help (v1)
Topic: Mouse click without using control or alt key
Replies: 5
Views: 1629

Re: Mouse click without using control or alt key

Could you make use of the Window (#) key instead? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorki...
by aztec3
06 Apr 2017, 13:57
Forum: Ask for Help (v1)
Topic: Script occasionally breaks?
Replies: 13
Views: 2650

Re: Script occasionally breaks?

First, there MIGHT be a problem with the amount of data copied into the clipboard, but I doubt that would cause the intermittent errors you encounter, but just a thought to begin with. Here's a link to a question someone rose regarding this: http://stackoverflow.com/questions/22367665/autohotkey-how...
by aztec3
28 Mar 2017, 07:01
Forum: Ask for Help (v1)
Topic: Copy selected text in notepad a certain amount of times based on number in selected text
Replies: 4
Views: 1456

Re: Copy selected text in notepad a certain amount of times based on number in selected text

However, I would like that if its a 2 digit number (lets say 12) it will copy it 12 times, (1+2 times).
Just to clarify...do you want it to do it 12 times or 3 (1+2 times) if the double digit value is 12???
by aztec3
20 Mar 2017, 06:56
Forum: Ask for Help (v1)
Topic: need help compiling a script
Replies: 9
Views: 2277

Re: need help compiling a script

Delete
by aztec3
15 Mar 2017, 09:42
Forum: Ask for Help (v1)
Topic: [Help] [Simple] If else / While
Replies: 7
Views: 2618

Re: [Help] [Simple] If else / While

Pazago, don't why you get that error, I tested it first. You can just comment/delete out that line.

Yup, just tested it again, works for me...anyone else want to verify?
by aztec3
15 Mar 2017, 07:51
Forum: Ask for Help (v1)
Topic: [Help] [Simple] If else / While
Replies: 7
Views: 2618

Re: [Help] [Simple] If else / While

I think you have some failed logic, as well as mis-coding, here's a revision of your code (changed the increment to be by 1 and changed the > to < and Send to MsgBox so you can see the results: abc = 1 MsgBox,,,abc = %abc% while abc < 51 { If (abc < 50) { MsgBox,,, ("b") abc = %abc% abc +=1 } Else {...
by aztec3
09 Mar 2017, 07:36
Forum: Ask for Help (v1)
Topic: Need Help.
Replies: 3
Views: 1229

Re: Need Help.

Simple test should indicate yes or no...let's try a simple re-map of the Inventory key, so instead of "i" maybe "Esc" key.

Code: Select all

Esc::Send, i
Change the "i" to whatever is the key to bring up your inventory in Dota2. If this works, then we can script it further from there.
by aztec3
07 Mar 2017, 08:33
Forum: Ask for Help (v1)
Topic: Need Help.
Replies: 3
Views: 1229

Re: Need Help.

Looks like without more information the only ones that will be able to assist you are fellow dota2 players. Sorry.
by aztec3
06 Mar 2017, 13:38
Forum: Ask for Help (v1)
Topic: Need help with simple script
Replies: 1
Views: 727

Re: Need help with simple script

This will get you started. Don't know what menu item you want to select...is it accessible via a hotkey once the menu is displayed??? Where does the REMOVE appear, is it too a hotkey that can be used? Yes, most things are possible, even more so with enough information, lol. Loop, 90 { Send, {LWin} ;...
by aztec3
06 Mar 2017, 09:07
Forum: Ask for Help (v1)
Topic: formatting time - noob question
Replies: 2
Views: 1036

Re: formatting time - noob question

Could the problem be in the format of the CreationTIme variable...per documentation:

"Transforms a YYYYMMDDHH24MISS timestamp into the specified date/time format."

Your timestamp for this variable comes out as:

"3/5/2017 7:15:25 PM"
by aztec3
06 Mar 2017, 08:17
Forum: Ask for Help (v1)
Topic: Need help with a Progress bar
Replies: 1
Views: 799

Re: Need help with a Progress bar

Is there a reason you can't use:

Code: Select all

Progress, Off
by aztec3
03 Mar 2017, 14:48
Forum: Ask for Help (v1)
Topic: Cant move and create files?
Replies: 4
Views: 1352

Re: Cant move and create files?

AtleastItried,
good job! We always look to help others, but sometimes we just give them a "nudge" to the solution, lol!
by aztec3
03 Mar 2017, 14:32
Forum: Ask for Help (v1)
Topic: Cant move and create files?
Replies: 4
Views: 1352

Re: Cant move and create files?

Are you missing a "\" from this line???

CURRENT:

Code: Select all

FileMove, %A_WorkingDir%Limited.exe, %A_Desktop%
REVISED:

Code: Select all

FileMove, %A_WorkingDir%\Limited.exe, %A_Desktop%
by aztec3
28 Feb 2017, 15:02
Forum: Ask for Help (v1)
Topic: Make AHK press Mouse6?
Replies: 10
Views: 4234

Re: Make AHK press Mouse6?

evilC,
yes, you are correct again, per the documentation:

Alternate solutions: If your key or mouse button is not detectible (sic) by the Key History screen, one of the following might help:
by aztec3
28 Feb 2017, 12:29
Forum: Ask for Help (v1)
Topic: Make AHK press Mouse6?
Replies: 10
Views: 4234

Re: Make AHK press Mouse6?

evilC, yup, that is part of the referenced documentation: "Reconfigure the software that came with your mouse or keyboard (sometimes accessible in the Control Panel or Start Menu) to have the "mystery key" send some other keystroke. Such a keystroke can then be defined as a hotkey in a script. For e...

Go to advanced search