Results 1 to 3 of 3

Thread: Key Press Help

  1. #1
    Join Date
    May 2012
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Key Press Help

    Hi How do make a keypress for Page Down?

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Simba Code:
    KeyDown(VK_NEXT);
    wait(RandomRange(10,30)); //how long you want it to be pressed down
    KeyUp(VK_NEXT);
    Or just
    Simba Code:
    PressKey(VK_NEXT); //no waits

  3. #3
    Join Date
    May 2012
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    brilliant thanks

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
  •