Notification that part of script is running? Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
sws224
Posts: 14
Joined: 28 Nov 2022, 19:11

Re: Notification that part of script is running?

Post by sws224 » 06 Dec 2022, 10:56

meaning when i Press "0" I want it to first enter ^+z and then a second later to enter in !{enter}

User avatar
boiler
Posts: 16918
Joined: 21 Dec 2014, 02:44

Re: Notification that part of script is running?  Topic is solved

Post by boiler » 06 Dec 2022, 11:11

Code: Select all

0::
	Send ^+z
	Sleep, 1000
	Send !{Enter}
return

sws224
Posts: 14
Joined: 28 Nov 2022, 19:11

Re: Notification that part of script is running?

Post by sws224 » 06 Dec 2022, 14:37

boiler wrote:
06 Dec 2022, 11:11

Code: Select all

0::
	Send ^+z
	Sleep, 1000
	Send !{Enter}
return
Amazing thank you!!

Post Reply

Return to “Ask for Help (v1)”