Page 2 of 2

Re: Curious if Fastkeys can do this...

Posted: Mar 8th, ’25, 11:22
by Marko
"Tree" in the list resulted in endless loop. Try this:

Code: Select all

InputBox, Word,, Word,,, 130
InputBox, ListE,, Comma delimited list,,, 130

List:=[]
loop, parse, ListE, `,
	List[A_Index]:=A_LoopField
send, ^c
sleep 100
text:=clipboard
stringreplace, text, text, `r,, all
stringreplace, text, text, %word%, ♥, all
while InStr(text, "♥")
{
	Random, selected, 1, List.maxindex()
	stringreplace, text, text, ♥, % List[selected]
}
sendinput % text
return

Re: Curious if Fastkeys can do this...

Posted: Mar 8th, ’25, 12:20
by travibe
is that heart symbol supposed to be in there or did some text get mutated?

Re: Curious if Fastkeys can do this...

Posted: Mar 8th, ’25, 23:38
by travibe
Ok, i have the clipboard rewriting a bunch of text which is amazing progress from nothing happeneing before. Only issue i'm having is it gets aboout 2 paragraphs written then the text starts getting all jumbled up and my computer starts acting strange (I believe the clipbaord is typing too fast and the letters are then being turned into commnads outside of the text editor?) What values do you suggest for the clipboard settings in Fastkeys? I currently have it set at

Image