^!v:: { ; Ctrl+Alt+V will trigger this script
text := A_Clipboard
if (text == "") {
MsgBox "Clipboard is empty or not accessible."
} else {
text := StrReplace(text, "`r`n", "`n") ; Normalize line endings
Loop Parse, text
{
SendText(A_LoopField)
Sleep 10 ; Add a small delay between each keypress to avoid overwhelming the VM
}
}
}