I have a program that pulls info from a webpage that is java. I have decided to use the ClipGet command but, I am getting inconsistent information being pasted when the $Var = ClipGet() is called.
My error is that it will hold data from the last loop and not clear and gather fresh.
At the end of the loop I have it write the content to a txt file.
$Var = ClipGet()
FileWriteLine($OutputFile,$var & "," & $sFirst & "," & $sLast)
All data for the other variables which are from the array works perfectly but the ClipGet() gets messed up.
So I am looking for a quick suggestion - Is there something to flush the clipboard before the copy command to ClipGet() occurs. I am thinking that if I could do that then that would dump out old information.
Any thoughts on this.
Thank you.