Results 1 to 3 of 3

Thread: Copying and pasting variables?

  1. #1
    Join Date
    May 2018
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Copying and pasting variables?

    Is Simba able to copy and paste variables?

    For example, instead of typing out a string, is it possible to have it copy and paste the string by using code?

  2. #2
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Just do it this way:
    Simba Code:
    program new;

    var
      stringVar :string;

    begin
      stringVar := 'Hello World';

      SendKeys(stringVar, 0, 0);
    end.

  3. #3
    Join Date
    May 2018
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Thank you that works!
    Last edited by matthew98; 09-25-2018 at 02:03 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •