Page 1 of 1

Copy Paste with delay

Posted: 30 Oct 2020, 14:18
by matekate
Hey i was wondering if you guys would know a script that presses Ctrl + v every three seconds,
im new with coding and i dont even know what code to select here so any help is welcome, Thanks

Re: Copy Paste with delay

Posted: 30 Oct 2020, 15:31
by boiler
Requires AHK v2 since that's the part of the forum you posted in:

Code: Select all

loop {
	Send "^v"
	Sleep 3000
}