Results 1 to 3 of 3

Thread: Right arrow key help.

  1. #1
    Join Date
    Sep 2006
    Posts
    322
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default Right arrow key help.

    So in tutorial island, after you create the 'look' of your character, you need to move the screen. So, I said no problem.
    SCAR Code:
    SendKeys(chr(39));
    That moves the right arrow key. Now I know these keys work, because I use the down arrow key to help create the account. So, I tried putting
    SCAR Code:
    SendKeys(chr(39));
      SendKeys(chr(39));
      SendKeys(chr(39));
      SendKeys(chr(39));
      SendKeys(chr(37));
      SendKeys(chr(37));
      SendKeys(chr(37));
      SendKeys(chr(37));
    Right Right Right Right Left Left Left Left. Still nothing. I then remembered about:
    SCAR Code:
    KeyDown(#);
    But I'm not sure how to use it. How do I time it?

    Edit:Keydown(39); works, but I need it to stop pressing the key after like 500ms.
    Last edited by uncfan1119; 10-11-2009 at 11:04 PM.

  2. #2
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Keyup(39);
    SCAR Code:
    Keydown(39);
    wait(500);
    Keyup(39);
    Should work.

  3. #3
    Join Date
    Sep 2006
    Posts
    322
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    I just used, MakeCompas(90); Thanks anyway

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
  •