Hello, Is it possible to provide two different key combinations so that the same key is alternated in the AutoHotkey program? For example, the first time I press" Space " (ctrl+space), then the second time I press it again (space), then the second time I press it again (ctrl+space), then the second time I press it again (Space)... Can it be made to continue like the first version, 2 versions in the form of a loop? Thanks..
If anyone still interested/using the window moving script: for moving fullscreen windows u just gotta replace "if EWD_WinState = 0" in line 6 with "if EWD_WinState = 1". Now u can move fullscreen windows
I as a fellow autohotkey user like what you're doing here. I have actually made a better version of that clipboard script. It will remember up to 4 previous clipboards which you can the toggle through with Caps + a and Caps + d. I also have a lot more scripts doing various things, but they're mostly combined into one instance using the #Include to combine all scripts into one. Funnily enough I've done a lot of the things you showed here, but obviously somewhat differently.
This app was one of my main utilities which made it possible for me to do handle a LOT more work in a LOT less time, and it remains an absolute godsend. The only utility slightly more useful is the MSKLC (or any of some half-dozen or so similar ones in Lunix). I haven't yet tried Pieter Degroote's but it seems to have a lot of buzz about it. MSKLC lets you add loads of additional characters (and turn off capslock) so if you do a lot of work with non-standard characters, it's awesome. If you do a lot of text or want macros to trigger insertion of text ("mmm" is a lot easier than typing my name, likewise Winkey+G for my gmail address), then AHK is what you want. Or use both. I do. Good video. Thanks.
Thanks for making this video it was really informative. Hey, I'm thinking about buying a board of inputs. Dials, buttons, sliders, switches. The device is called loupedeck+. It's designed to work with adobe light room and recently reconfigured to also work with adobe primer pro. That's out of the box. I would want to use it for many of the other softwares i use also. Unity game engine, adobe Photoshop, autodesk Maya, and many others. I know I can write a script in unity to display text whenever unity detects an input from any device. The text could display the windows OS "input name" associated with the button struck or dial turned, I think this will give reliable keycodes/input names to use with the script this video is about. Do you think if I can get these input names of the keys from the loupedeck by using a unity script, that I can use this software you've just shown in this video to remap the fancy loupedeck bord keys/sliders to different macros. Thanks for any advice y'all can give me.
I am trying to get programs to with key combinations for examples a & x:: Run, Notepad.exe, the script works but afterwards the a and the x keys are useless unless I type them together to run notepad, I can't use them even separately to write.
I haven't had time to look into the copy paste code yet though I have always wanted something like that; a couple of questions though: I take it only works for text? and does it replace the regular functionality of Ctrl copy paste so you cannot copy files around?
Yes you are correct that it should not affect normal shortcut ability as I have just read the code comments and it stores the original clipboard and then restores it. Also it seems to work for files as well as it simply just stores the whole clipboard so that's pretty cool.
hello so i work with a privatw chat and i have 2000 users to chat with how can i send them all a message withouy going one by one please it would be helpful thanks
yes, in fact i have made one myself i was considering covering in a future video. this script opens two input boxes, one allows you to set the delay between pastes and one sets the amount of times it will paste. it will wait five seconds, then start pasting. you can force close it at any time with RShift+Enter pastebin.com/0yCJKKaP
is it possible to configure to auto repeat/click keys while a keyboard key is pressed down? I mean, I click and hold 1 and it keeps clicking 1 while its pressed?
Jadiel Augusto Try running a loop while that key is on eg: 1:: Loop { SendInput 1 } If that isn't what you're looking for, I'm sure there is a way to do it but I don't know it myself
As long as you run the script as admin, it should run in any application. However, I can't guarantee that the game's anticheat won't make a fuss, it's different for every game
thanks :) my mic is normally about half a metre away from me so it doesn't pick up too much keyboard noise - next time i'll try placing it closer to me
I would like to make an auto potion for MuOnline script needs to be run as administrator the keys that make the potion down are QWE I would like a script with infinite repetitions, the faster the potion goes down the better it gets, the faster it would be possible, if anyone could help me I would be very grateful. keys to start and pause F5 starts F6 stop
Something along the lines of this? This would press the key repetitively as fast as the script can handle q:: Loop { SendInput q } And this would hold down the key q::Send {q down}
I'm pretty much noob on that ksks, I need to press like "q" "w" "and" keys at the same time, I get it right because the guys use this and I do not ksks, they press for example F5 then start sending qweqweqweqwe then press f6 and stop, could you help me?, thank you in advance!
AutoHotkey is such an amazing tool! I'm so glad to see other people sharing "how to" as well! :) Love it!
btw- have you taken the AutoHotkey user survey? Please do...
0:09 this guy has no-recoil scripts for rust he's a hacker
lol
First thing I saw.
I just found AutoHotkey... and this vid... everything is expanding!
Btw windows has a built in function where you can specify which apps should open when you turn on ur pc
At 4:50 he explains why he did it
@@ThaAftrPartie you could also set it to have delayed launch in the startup apps
Hello,
Is it possible to provide two different key combinations so that the same key is alternated in the AutoHotkey program?
For example, the first time I press" Space " (ctrl+space), then the second time I press it again (space), then the second time I press it again (ctrl+space), then the second time I press it again (Space)...
Can it be made to continue like the first version, 2 versions in the form of a loop?
Thanks..
You could use if statements to alternate keys like that. For example, if you pressed "e":
count = 0
@@socitrusing7738 how can I do this with the space key?
@@socitrusing7738 error at line 4.
If anyone still interested/using the window moving script: for moving fullscreen windows u just gotta replace "if EWD_WinState = 0" in line 6 with "if EWD_WinState = 1". Now u can move fullscreen windows
good video) the multiple copy and paste function is pretty cool!
I as a fellow autohotkey user like what you're doing here. I have actually made a better version of that clipboard script. It will remember up to 4 previous clipboards which you can the toggle through with Caps + a and Caps + d.
I also have a lot more scripts doing various things, but they're mostly combined into one instance using the #Include to combine all scripts into one.
Funnily enough I've done a lot of the things you showed here, but obviously somewhat differently.
so where are they?
@@apocalypticbean On his computer?
Are you willing to share it with us?
thanks for making the video so user friendly with your timeline and download!
This app was one of my main utilities which made it possible for me to do handle a LOT more work in a LOT less time, and it remains an absolute godsend.
The only utility slightly more useful is the MSKLC (or any of some half-dozen or so similar ones in Lunix). I haven't yet tried Pieter Degroote's but it seems to have a lot of buzz about it.
MSKLC lets you add loads of additional characters (and turn off capslock) so if you do a lot of work with non-standard characters, it's awesome. If you do a lot of text or want macros to trigger insertion of text ("mmm" is a lot easier than typing my name, likewise Winkey+G for my gmail address), then AHK is what you want.
Or use both. I do.
Good video. Thanks.
Thank you for inroducing me to the task scheduler. That is the biggest takeaway here. And your scripts were already awesome. Imagine my excitement.
task scheduler?
@@ceptember. The task scheduler is the windows program you can see at 9:40
I guess you don't need multiple clipboards with new windows multi clipboard with Win+V
This is really cool. I never relized you could do so much with this.
Thanks for making this video it was really informative. Hey, I'm thinking about buying a board of inputs. Dials, buttons, sliders, switches. The device is called loupedeck+. It's designed to work with adobe light room and recently reconfigured to also work with adobe primer pro. That's out of the box. I would want to use it for many of the other softwares i use also. Unity game engine, adobe Photoshop, autodesk Maya, and many others. I know I can write a script in unity to display text whenever unity detects an input from any device. The text could display the windows OS "input name" associated with the button struck or dial turned, I think this will give reliable keycodes/input names to use with the script this video is about. Do you think if I can get these input names of the keys from the loupedeck by using a unity script, that I can use this software you've just shown in this video to remap the fancy loupedeck bord keys/sliders to different macros.
Thanks for any advice y'all can give me.
Go on to the AutoHotKey documentation and search for "special keys" - it sounds like what you want
Can I change my dpi button to O please help me with this. Thanks
wow nice scipts, really helpful ^^
oh what happen when i remove it
Please tell me how to add bullet points and break the line
everytime i create a new script and right click it
it doesn't show "Edit Script" for me..
Nowadays, it doesn't for me either. Instead, in the right click menu, head down to "Open With" --> "Notepad"
Oh, thank you very much!
Hi, I have an number keypad, Iwant to map the number 1 key to combo : Shift + F7. How can I do that with autohotkeys
Numpad0::
Send {Shift down}{F7}{Shift up}
; NumLock modifier must be turned on.
Nice job explaining. Think ill take a gander.
I finished the video. Thanks for the scripts.
I want to learn how to use auto hot key to record mouse clicks and enter a numeric value adding 10 each time
very nice example video.. better than some expert videos, this is right to the point. thanks a lot...:)
Cool vid, but js at 4:00, you can also just type chrome
I am trying to get programs to with key combinations for examples a & x:: Run, Notepad.exe, the script works but afterwards the a and the x keys are useless unless I type them together to run notepad, I can't use them even separately to write.
So you need close and open chrome really fast?
...
Brandon Boyer Originally made so I can play games at school 😉
@@socitrusing7738 hmmmmmmmm
I haven't had time to look into the copy paste code yet though I have always wanted something like that; a couple of questions though: I take it only works for text? and does it replace the regular functionality of Ctrl copy paste so you cannot copy files around?
Sam M I'm fairly sure it only works for text, but it should not inhibit the normal shortcuts ability.
Yes you are correct that it should not affect normal shortcut ability as I have just read the code comments and it stores the original clipboard and then restores it. Also it seems to work for files as well as it simply just stores the whole clipboard so that's pretty cool.
This video is so sweet, thnks for the tips.
how can i fix this?
::F::FIRE (OUTPUT>>FIRE)
::f::Fire (OUTPUT>>FIRE)!!!!!!!
hello so i work with a privatw chat and i have 2000 users to chat with how can i send them all a message withouy going one by one please it would be helpful thanks
Having a lot of issues with copy/paste any suggestions?
Tyler Sandiford What exactly are you trying to do?
ICEThat trying to copy/paste. Using that script I only get 3 paste combinations of the same clipboard
you can use sendinput then its faster try it
for people who wants the benefits of programming, yet does not want to do proper programming
Great video man!
Great video! You from Londish bro?
lot maakchos haha New Zealand actually
do you know a script that spams a key? like if i press x it presses it till iwant it to stop icant find one.
yes, in fact i have made one myself i was considering covering in a future video. this script opens two input boxes, one allows you to set the delay between pastes and one sets the amount of times it will paste. it will wait five seconds, then start pasting. you can force close it at any time with RShift+Enter pastebin.com/0yCJKKaP
I dunno what to do with a script like this, all I need a script to do is spam q and then I could stop it anytime I want.
is it possible to configure to auto repeat/click keys while a keyboard
key is pressed down? I mean, I click and hold 1 and it keeps clicking 1
while its pressed?
Jadiel Augusto Try running a loop while that key is on eg:
1::
Loop {
SendInput 1
}
If that isn't what you're looking for, I'm sure there is a way to do it but I don't know it myself
this works in games like Aion online?
As long as you run the script as admin, it should run in any application. However, I can't guarantee that the game's anticheat won't make a fuss, it's different for every game
U make better video than me, but still have only 96 subs? [i have 350]
man u deserve more sub
the clipboard one is redundant. windows has multi-clipboard that can hold up to like 20 different things now. just if anyone interested
I'm scared of those auto correct scripts. Great way to train your brain how to spell badly
love it just one recommendation is that you should speak up a bit so your voice is a bit more clear in the video but other your cool :-)
thanks :)
my mic is normally about half a metre away from me so it doesn't pick up too much keyboard noise - next time i'll try placing it closer to me
ICEThat and can you upload the link to these scripts on pastebin or Google drive etc?
funny voice
The Socialist I will add them to the description soon
Floow snaake it's probably the new zealand accent :P
Ice that intro, random EDM song snippet intros are tacky and ear grating
great video, +1 subscriber!
Great video
I would like to make an auto potion for MuOnline
script needs to be run as administrator
the keys that make the potion down are QWE
I would like a script with infinite repetitions, the faster the potion goes down the better it gets, the faster it would be possible, if anyone could help me I would be very grateful.
keys to start and pause
F5 starts
F6 stop
Something along the lines of this?
This would press the key repetitively as fast as the script can handle
q::
Loop {
SendInput q
}
And this would hold down the key
q::Send {q down}
I'm pretty much noob on that ksks, I need to press like "q" "w" "and" keys at the same time, I get it right because the guys use this and I do not ksks, they press for example F5 then start sending qweqweqweqwe then press f6 and stop, could you help me?, thank you in advance!
F5::
Loop {
SendInput q
SendInput w
SendInput e
}
F6::Pause
?
uowwwwwwwwwwwwwwww, thanks man :D
Thanks, helpful
Very helpful
This is the weirdest accent I've ever heard
Kiwi with a scody as voice 😎
спасибо!
听不懂难受呀