Search found 22 matches

by WingbtZ
15 Oct 2018, 05:55
Forum: Gaming Help (v1)
Topic: Trying to make an idle Autoclicker Topic is solved
Replies: 3
Views: 1916

Re: Trying to make an idle Autoclicker Topic is solved

Hallo, try: ^Escape::Reload ^LButton::SetTimer ControlClick,% (Toggle := !Toggle) ? 100 : "Off" ControlClick: If A_TimeIdle < 500 Return SetTitleMatchMode 2 ControlClick, x300 y500, Cookie Clicker,,Left Return Thank you for the help! This kind of worked :superhappy: I only had time to test it breef...
by WingbtZ
15 Oct 2018, 05:42
Forum: Ask for Help (v1)
Topic: Photoshop : MMB + LMB = hotkey
Replies: 13
Views: 3494

Re: Photoshop : MMB + LMB = hotkey

cedric3d wrote:
15 Oct 2018, 04:39
thx for your help!!

it says : error : invalid hotkey :/
Hmm wierd. I tryd the whole script and had no problem.

You sure you dident miss any spelling?

Code: Select all

MButton & LButton::^+
by WingbtZ
15 Oct 2018, 04:23
Forum: Ask for Help (v1)
Topic: Photoshop : MMB + LMB = hotkey
Replies: 13
Views: 3494

Re: Photoshop : MMB + LMB = hotkey

Try this

Code: Select all

#IfWinActive ahk_exe Photoshop.exe
    MButton::
    Send {Space Down}{LButton Down}
    Keywait, MButton
    Send {LButton Up}{Space Up}
    Return
MButton & LButton::^+
return
EDIT:
by WingbtZ
12 Oct 2018, 02:21
Forum: Ask for Help (v1)
Topic: volume control question
Replies: 9
Views: 2341

Re: volume control question

thanks mate! Unfortunately having to open the volume mixer beforehand is a dealbreaker for me - if I have to do that I might as well just do the volume changing myself. Besides, I wouldn't know the first thing about what I was coding — as I'm not an AHK programmer. Thank you though <3 You don't nee...
by WingbtZ
09 Oct 2018, 07:06
Forum: Gaming Help (v1)
Topic: Trying to make an idle Autoclicker Topic is solved
Replies: 3
Views: 1916

Re: Trying to make an idle Autoclicker Topic is solved

Experimental code so far..

Code: Select all

^Escape::Reload
#MaxThreadsPerHotkey 3
^LButton::
#MaxThreadsPerHotkey 5
SetTitleMatchMode 2
if Toggle
{
Toggle := false
return
}
Toggle := true
Loop
{
ControlClick, x300 y500, Cookie Clicker,,Left
if not Toggle
Break
}
Toggle := false
return
by WingbtZ
08 Oct 2018, 08:38
Forum: Gaming Help (v1)
Topic: Trying to make an idle Autoclicker Topic is solved
Replies: 3
Views: 1916

Trying to make an idle Autoclicker Topic is solved

Hello, So I have a script that Loops a ControlClick at a random pos on a Chrome window (Web browser game) until break. So the script is spaming ControlClick, but I have the problem that I cannot use my mouse while the script is running.. As in, I cannot use the mouse to click in another window while...
by WingbtZ
05 Oct 2018, 04:42
Forum: Ask for Help (v1)
Topic: Please help me for Pause Script and send key
Replies: 1
Views: 594

Re: Please help me for Pause Script and send key

Try something like this

Code: Select all

~CapsLock::
state := GetKeyState("Capslock", "T")
if state = 1
{
msgbox, Caps on ;pause
}
else
{
msgbox, Caps off ;not pause
}
by WingbtZ
28 Sep 2018, 02:01
Forum: Gaming Help (v1)
Topic: Diablo 3 - Support Necromancer Topic is solved
Replies: 1
Views: 1432

Re: Diablo 3 - Support Necromancer Topic is solved

It realy depends on what you are after tbh.. Not playing Nec this season but I made this for my barb. It's an toggle for ww. Escape::Reload #SingleInstance force SendMode Input Exit *$RButton::Click, % ((KeyDown := !KeyDown) ? "Down,Right" : "Up,Right") Try being abit more specifik on WHAT you want,...
by WingbtZ
28 Sep 2018, 01:57
Forum: Gaming Help (v1)
Topic: league of legends macros do not work Topic is solved
Replies: 1
Views: 1554

Re: league of legends macros do not work Topic is solved

Have you tryd running it as Admin? It's a common thing to miss when using ahk in some games.
by WingbtZ
24 Sep 2018, 04:06
Forum: Ask for Help (v1)
Topic: Sending keys only to a particular window, possibly unfocused Topic is solved
Replies: 11
Views: 2320

Re: Sending keys only to a particular window, possibly unfocused Topic is solved

You mentiond that nothing is moveing, did you use SetTitleMatchMode?

Code: Select all

SetTitleMatchMode, 2
by WingbtZ
22 Sep 2018, 08:24
Forum: Gaming Help (v1)
Topic: Diablo 3, toggle R mouse button Topic is solved
Replies: 3
Views: 1853

Re: Diablo 3, toggle R mouse button Topic is solved

Thanks alot! Got it working now! Tryd both your script, dident work. Took your advice and googled it.. Turns out that "Run as admin" fixed it. Send, Facepalm Anyway, using this works flawlessly! I doff my hat to thee good sir! :dance: Escape::Reload #SingleInstance force SendMode Input Exit *$RButto...
by WingbtZ
22 Sep 2018, 06:08
Forum: Gaming Help (v1)
Topic: Diablo 3, toggle R mouse button Topic is solved
Replies: 3
Views: 1853

Diablo 3, toggle R mouse button Topic is solved

Hello, So I am trying to make a script for D3, where if I press a button, it holds down Right mouse button, and if I press it again, it releses the button. I got a script to work on the desktop and other, but it wont work on D3.. Anyone that can help me with this? Also the script is acting abit weir...
by WingbtZ
18 Sep 2018, 02:28
Forum: Gaming Help (v1)
Topic: Runescape ,click without moving cursor ,its possible ?
Replies: 2
Views: 1358

Re: Runescape ,click without moving cursor ,its possible ?

Maybe ControlClick? https://autohotkey.com/docs/commands/ControlClick.htm https://autohotkey.com/docs/commands/SetTitleMatchMode.htm Try youself with my testscript. Escape::Reload Numpad9:: SetTitleMatchMode 2 Loop, 10 { Random, randx, 200, 500 Random, randy, 200, 500 ControlClick, x%randx% y%randy%...
by WingbtZ
17 Sep 2018, 08:15
Forum: Ask for Help (v1)
Topic: ControlClick, How dose it work? Topic is solved
Replies: 2
Views: 893

Re: ControlClick, How dose it work? Topic is solved

Thank you so much for the respond! I think i have most of it figured out now. Took me some time to understand SetTitleMatchMode. Also changed over from notepad to Paint to realy see the workings. Thanks alot! :dance: Escape::Reload Numpad9:: SetTitleMatchMode 2 Loop, 10 { Random, randx, 200, 500 Ran...
by WingbtZ
14 Sep 2018, 06:05
Forum: Ask for Help (v1)
Topic: ControlClick, How dose it work? Topic is solved
Replies: 2
Views: 893

ControlClick, How dose it work? Topic is solved

Hello, So I wanted to make a script that works in the background. Pritty simple, I want to script to click at XYPos in a chrome window that I have on a second monitor or in the background, while I do other things on another monitor, or foreground. I was looking around and found that people suggest u...
by WingbtZ
14 Sep 2018, 03:53
Forum: Ask for Help (v1)
Topic: Webpage URL with % sign
Replies: 4
Views: 910

Re: Webpage URL with % sign

Did you get it to work?

else maybe try this:

Code: Select all

!Space::
{
Run, chrome.exe
Sleep, 200
Send, https://autohotkey.com
Send, {Enter}
}
return
by WingbtZ
11 Sep 2018, 07:06
Forum: Gaming Help (v1)
Topic: Request for script
Replies: 1
Views: 703

Re: Request for script

I recommend you take a look at these documents. https://autohotkey.com/docs/KeyList.htm https://autohotkey.com/docs/commands/Send.htm https://autohotkey.com/docs/commands/MouseClick.htm https://autohotkey.com/docs/commands/Sleep.htm <#:: ;Or ># for right {Win} Send, {Enter} Send, {Enter} Send, {Esca...
by WingbtZ
11 Sep 2018, 06:47
Forum: Ask for Help (v1)
Topic: Basic auto run notepad + type
Replies: 3
Views: 1946

Re: Basics

tomoe_uehara wrote:

Code: Select all

<!n::
msgbox ok
return
As already said.
Take a look at this to learn more.
https://autohotkey.com/docs/KeyList.htm

Code: Select all

!n::
; Your code
return
by WingbtZ
10 Sep 2018, 03:18
Forum: Ask for Help (v1)
Topic: AutoHotKey n00b problem.
Replies: 1
Views: 551

Re: AutoHotKey n00b problem.

Hello,

I tryd your script and had the same problem with it not pasting.

Try adding a delay in the WinWaitActive.

Example:

Code: Select all

Printscreen::
{
Send, !{Printscreen}
Run mspaint.exe
WinWaitActive, Untitled - Paint, , 1
Send, ^v
}
return
by WingbtZ
10 Aug 2018, 00:28
Forum: Ask for Help (v1)
Topic: Searching for text and clicking it Topic is solved
Replies: 2
Views: 5069

Re: Searching for text and clicking it Topic is solved

Since you are just starting out the most intuitive way may be to do an image search for the text. If this script will only be run on a single computer (if not you will have problems getting image search to work reliably because of resolution changes) you could take a screenshot and crop the image t...

Go to advanced search