Copy paste data

Hello. I want to Copy paste data from csv to an app, line by line.

{
  "Name": "desctop",
  "CreationDate": "2022-2-4",
  "Commands": [
    {
      "Command": "XClick",
      "Target": "cdrkrl_dpi_96.png",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "csvReadArray",
      "Target": "kolay.csv",
      "Value": "myCSV",
      "Description": ""
    },
    {
      "Command": "XClick",
      "Target": "9rjji1_dpi_96.png",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "XType",
      "Target": "${KEY_CTRL+KEY_V}",
      "Value": "${!COL1}",
      "Description": ""
    },
  • [error][Line 4]: XType currently doesn’t use the “Value” field
    or
    {
      "Command": "XType",
      "Target": "${KEY_CTRL+KEY_V}",
      "Value": "${myCSV[1][1]}",
      "Description": ""
    },
  • [error][Line 4]: XType currently doesn’t use the “Value” field

update - I did it wooo
the correct code is

 "Command": "XType",
      "Target": "${myCSV[1][1]}",
      "Value": "",
      "Description": ""

update - I did it wooo

Nice :slight_smile: