Search found 69 matches

by GreatGazoo
24 Feb 2018, 18:29
Forum: Gaming Help (v1)
Topic: Need Help
Replies: 8
Views: 2037

Re: Need Help

seems like this will be shooting dead bodies as well :D
by GreatGazoo
06 Feb 2018, 21:38
Forum: Ask for Help (v1)
Topic: Slow down mouse by Flick
Replies: 8
Views: 2910

Re: Slow down mouse by Flick

you can do that in you pc settings, change the dpi
by GreatGazoo
06 Feb 2018, 21:32
Forum: Ask for Help (v1)
Topic: Script for Firefox.
Replies: 3
Views: 1315

Re: Script for Firefox.

Code: Select all

:*:aa:: run, firefox.exe ;------------------------ press a 2ice to run firefox
return
by GreatGazoo
29 Jan 2018, 23:43
Forum: Bug Reports
Topic: capslock rapid toggling
Replies: 0
Views: 959

capslock rapid toggling

when caps lock is off it runs fine, when caps lock is on while I press the hotkey, the caps lock toggle state is rapid fire as well what in the script would cause that ? msgbox, started SoundBeep, 1000, 200 #Include AutoCorrect.AHK #SingleInstance, force #NoEnv #MaxHotkeysPerInterval 99000000 #Hotke...
by GreatGazoo
28 Jan 2018, 02:56
Forum: Scripts and Functions (v1)
Topic: Toggle that beeps when on/off
Replies: 1
Views: 1271

Toggle that beeps when on/off

i noticed lot of people like to toggle things on and off, so i made this script today that toggles and beeps probably been done a hundred times before if so just delete plz banana:=0 !y:: ;---------------------------------------alt + y banana:=!banana if (banana=1) { SoundBeep, 1000, 200 msgbox, its...
by GreatGazoo
28 Jan 2018, 02:50
Forum: Tips and Tricks (v1)
Topic: Autofire and toggle
Replies: 38
Views: 127658

Re: Autofire and toggle

could it be that the hotkey and the key sent being the same key, that it's creating a loop on it's own ok, i've just checked, it still works when the input isn't in the output Space:: Send hello Sleep 250 Return this would probably be a bad thing if i wasn't trying to make a loop anyway yeah i noti...
by GreatGazoo
27 Jan 2018, 19:15
Forum: Ask for Help (v1)
Topic: On Mouse Left Click
Replies: 1
Views: 726

Re: On Mouse Left Click

https://autohotkey.com/boards/viewtopic ... 75#p196975

maybe something like this

Code: Select all

#InstallMouseHook

~$q:: % Toggle:=!Toggle ? "boss" : "boss2"

by GreatGazoo
27 Jan 2018, 19:07
Forum: Tips and Tricks (v1)
Topic: Autofire and toggle
Replies: 38
Views: 127658

Re: Autofire and toggle

landfillbaby wrote:

Code: Select all

*Space::
Send {Space}
Sleep 250
Return
works for me (holding space presses it exactly 4 times per second), no need for a loop, i guess my keyboard works weird?

could it be that the hotkey and the key sent being the same key, that it's creating a loop on it's own
by GreatGazoo
27 Jan 2018, 18:03
Forum: Ask for Help (v1)
Topic: Help! Shift hotkey can't trigger Send {Shift Down} ?
Replies: 3
Views: 5604

Re: Help! Shift hotkey can't trigger Send {Shift Down} ?

my laptop has 2 home keys and both require the "Fn" key to be used, I'm not sure if this will work because i cant test it but try to add the ~ in front ~+<#Home:: Send, {Shift, Down} Send, {Home, Down} Send, {Home, Up} Send, {Shift, Up} Return Shift key. As a hotkey (Shift::) it fires upon release u...
by GreatGazoo
26 Jan 2018, 23:05
Forum: Ask for Help (v1)
Topic: Help with script Topic is solved
Replies: 4
Views: 1411

Re: Help with script Topic is solved

interesting
by GreatGazoo
26 Jan 2018, 22:59
Forum: Ask for Help (v1)
Topic: Help with script Topic is solved
Replies: 4
Views: 1411

Re: Help with script Topic is solved

do you have the .wav file in the same folder as your script ?
by GreatGazoo
26 Jan 2018, 22:56
Forum: Gaming Help (v1)
Topic: Auto Clicker Topic is solved
Replies: 28
Views: 416531

Re: Auto Clicker Topic is solved

Hm, I still don't really understand it. What I'm confused about, is really what Toggle := !Toggle is. Is Toggle a variable being asigned to !Toggle? But then wouldn't !Toggle also be a variable? And moreover, how would the computer know what !Toggle is, if it is to be a variable with no input? The ...
by GreatGazoo
26 Jan 2018, 11:33
Forum: Ask for Help (v1)
Topic: Sleep for current Send Action / Hold Key down until
Replies: 10
Views: 3857

Re: Sleep for current Send Action / Hold Key down until

I found this post which deals with a smiliar Problem https://autohotkey.com/board/topic/467-record-key-press-duration/ . Maybe I can work with A_TimeSinceThisHotkey? And I could ask: If A_TimeSinceThisHotkey = 2500, Send {Numpad 9 down} If A_TimeSinceThisHotkey = 3250, Send {Numpad 9 up} And extend...
by GreatGazoo
26 Jan 2018, 11:00
Forum: Ask for Help (v1)
Topic: Multiple ways to activate a hotkey Topic is solved
Replies: 1
Views: 715

Re: Multiple ways to activate a hotkey Topic is solved

hotstring will do it

this is a script that includes a lot of auto corrections for common misspelling and includes a WIN+H hotkey to add new strings to the list on the fly
https://www.autohotkey.com/download/AutoCorrect.ahk


Code: Select all

#hotstring Z0

:*:huor::hour
:*:uohr::hour
:*:rouh::hour
:*:ourh::hour
by GreatGazoo
26 Jan 2018, 04:54
Forum: Ask for Help (v1)
Topic: Sleep for current Send Action / Hold Key down until
Replies: 10
Views: 3857

Re: Sleep for current Send Action / Hold Key down until

that was the second code I sent #SingleInstance, Force #NoEnv ^a:: ;----------------------- Control + a to activate Send, {Numpad9, D} ;----- pressing 9 down Sleep, 250 Send, {Numpad3} ;-------- while 9 is down pressing 3 Sleep, 250 Send, {Numpad4} ;-------- pressing 4 Sleep, 250 Send, {Numpad9, U} ...
by GreatGazoo
26 Jan 2018, 04:50
Forum: Ask for Help (v1)
Topic: Sleep for current Send Action / Hold Key down until
Replies: 10
Views: 3857

Re: Sleep for current Send Action / Hold Key down until

Code: Select all

^a:: ;----------------------- Control + a to activate
	Send, {Numpad9} ;--------- pressing 9
	Sleep, 375
	Send, {Numpad3} ;--------  pressing 3
	Sleep, 375
	Send, {Numpad4} ;-------- pressing 4
return	
by GreatGazoo
26 Jan 2018, 04:45
Forum: Ask for Help (v1)
Topic: Sleep for current Send Action / Hold Key down until
Replies: 10
Views: 3857

Re: Sleep for current Send Action / Hold Key down until

yeah, you have to specify when you want it to automatically release the 9, you do that with sleep and sending 9 up, it will not do anything it is not programmed to do sending 9 down and never sending 9 up it will stay down forever, until the program is exited do you want 9 held down while 3 and 4 ar...
by GreatGazoo
26 Jan 2018, 04:24
Forum: Ask for Help (v1)
Topic: Sleep for current Send Action / Hold Key down until
Replies: 10
Views: 3857

Re: Sleep for current Send Action / Hold Key down until

where is your hotkey or hotstring ? if you do send numpad9 down and not send it up it will stay down #SingleInstance, Force #NoEnv ^a:: ;----------------------- Control + a to activate Send, {Numpad9, D} ;----- pressing 9 down Sleep, 375 Send, {Numpad3} ;-------- while 9 is down pressing 3 Sleep, 37...
by GreatGazoo
26 Jan 2018, 03:25
Forum: Scripts and Functions (v1)
Topic: [Windows 10] Switch to different virtual desktop on Win+{1,9}
Replies: 26
Views: 24234

Re: [Windows 10] Switch to different virtual desktop on Win+{1,9}

Snapping window: WIN+LEFT or RIGHT (can be used with UP or DOWN to get into quadrants) Switch to recent window: Alt+Tab (unchanged) – Hold shows new Task view window view, let go and switches to app. Task view: WIN+Tab – New Task view opens up and stays open. Create new virtual desktop: WIN+Ctrl+d C...

Go to advanced search