UI Vision Desktop ( Select text, copy, and paste) from word document

I understand the process to highlight and copy, but how to take the text that was copied in that process and paste it? The directions show to user the Store Command and “your text”… I want to use the copied text, not enter in static text. Can anyone help?

To copy he text in clipboard use this command

{
  "Command": "XType",
  "Target": "${KEY_CTRL+KEY_C}",
  "Value": "",
  "Description": ""
},

To paste it in every site,form, other app

{
  "Command": "XType",
  "Target": "${KEY_CTRL+KEY_V}",
  "Value": "",
  "Description": ""
},
1 Like

Hi :slight_smile:
I’m totally new to this

If I wanna copy email addresses and paste them into a google sheet, how is it possible with what you wrote?
I mean the practical side of things

Attached an image here

Thanks