Script requested for set of 24 keys

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
zeeshan89

Script requested for set of 24 keys

26 Apr 2018, 14:52

hello there,
i need your help, please do if possible...

I need Autohotkey Script for the following set of keys


1. Ctrl+c
2. Alt+Tab
3. Shift+Tab
4. Shift+Tab
5. Shift+Tab
6. Shift+Tab
7. Shift+Tab
8. Shift+Tab
9. Shift+Tab
10. Ctrl+v
11. Tab
12. Tab
13. Tab
14. Tab
15. Tab
16. Tab
17. Enter
18. Now wait 45 seconds
19. Tab
20. Tab
21. Tab
22. Enter
23. Alt+Tab
24. Down Errow

Repeat this set of keys 80 times

can u please?
Qysh
Posts: 143
Joined: 24 Apr 2018, 09:16

Re: Script requested for set of 24 keys

11 May 2018, 18:34

Give this a try ;)
F5 = Start
F6 = Exit Script

Code: Select all

sleep_seconds = 45 ; I would recommend 50 seconds to avoid errors
key_delay = 10 ; Delay between keystrokes
;######################### - Code
sleep_seconds := sleep_seconds * 1000
F5::
Loop, 80
{
	SetKeyDelay, %key_delay%
	
	Send, ^{c}
	Send, !{Tab}
	
	Loop, 7
	{
		Send, +{Tab}
	}
	
	Send, ^{v}
	
	Loop, 6
	{
		Send, {Tab}
	}
	
	Send, {Enter}
	
	Sleep, %sleep_seconds%
	
	Loop, 3
	{
		Send, {Tab}
	}
	
	Send, {Enter}
	Send, !{Tab}
	Send, {Down}
}
return

F6::
Send, {Tab up} 
Send, {Shift up} 
Send, {Ctrl up} 
ExitApp
return

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: mebelantikjaya and 315 guests