Results 1 to 8 of 8

Thread: Press Enter in scar?

  1. #1
    Join Date
    Jul 2008
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Press Enter in scar?

    Simple question. How do I press enter in scar? It's not on the Key chart in the manual.

  2. #2
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    char(38) if I remember correctly

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  3. #3
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Sendkeys(#13);

  4. #4
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SCAR Code:
    SendKey(VK_RETURN);


  5. #5
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The character number is 13 so you could use VK_RETURN like bob said above, but I usually do

    SendKeys(chr(13));

  6. #6
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    with Divi you can just do #13

    like..

    SCAR Code:
    begin
      SendKeys('lolol I spam.'+#13);
    end.

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 99_ View Post
    with Divi you can just do #13

    like..

    SCAR Code:
    begin
      SendKeys('lolol I spam.'+#13);
    end.
    As previously posted by Mylesmadness.

  8. #8
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by 99_ View Post
    with Divi you can just do #13

    like..

    SCAR Code:
    begin
      SendKeys('lolol I spam.'+#13);
    end.
    But one of the points of scripts is to let people read them. Normally I would have no idea what #13 meant, but VK_RETURN has much more meaning to me.


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
  •