;highlight the first name and press ^3... then highlight the last name and press ^3... then highlight title and press ^3... after pressing ^3 a total of three times it will fill in the set of fields for you designed to have 2 windows side by side with hit window on the left
^3::
clipboard=
Hotstring=
send ^c
clipwait 1
Hotstring=%clipboard%
if (counter < 3) {
Hotstring:=RegExReplace(Hotstring, "i)[^0-9a-z]")
}
else {
StringReplace, Hotstring, Hotstring, founded, Founder ,All
StringReplace, Hotstring, Hotstring, Founded, Founder ,All
StringReplace, Hotstring, Hotstring, founding, Founder ,All
StringReplace, Hotstring, Hotstring, /, , All
;StringReplace, Hotstring, Hotstring, founderr , Founder ,All
}
clipboard=%Hotstring%
name%counter% := Clipboard
counter += 1
if (counter = 4) {
send ^w
WinActivate, %Win1%
sleep 50
send {tab}
sleep 50
loop 3 {
hoo := name%A_Index%
send %hoo%
send {tab}
sleep 50
}
counter=1
send {enter}
sleep 100
send ^{tab}
sleep 200
send ^1
}
return