Page 2 of 2 FirstFirst 12
Results 26 to 45 of 45

Thread: Making backspaces?

  1. #26
    Join Date
    Aug 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by tom99 View Post
    Its
    SCAR Code:
    keydown(8);keyup(8);
    btw simba can kiss me ASS
    It's not keydown(8) (

  2. #27
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    It's not keydown(8) (
    SCAR Code:
    program New;
    begin
      KeyDown(8);
      wait(15);
      KeyUp(8);
    end.

    Yes, it DEFINITELY is.

  3. #28
    Join Date
    Aug 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    It's not sorry... Doesn't work for me, it's a mismatch.

  4. #29
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    It's not sorry... Doesn't work for me, it's a mismatch.
    are you using SCAR? lol

    EDIT:
    It works in SIMBA and SCAR. JUST TESTED it twice in each...
    SCAR Code:
    program New;
    begin
      wait(3000);
      KeyDown(8);
      wait(15);
      KeyUp(8);
    end.

  5. #30
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    It's not sorry... Doesn't work for me, it's a mismatch.
    Are you using a toaster or something to run SCAR?
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  6. #31
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by litoris View Post
    Are you using a toaster or something to run SCAR?
    he may have his toaster configured to only take strings instead of numerical values :P

  7. #32
    Join Date
    Aug 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    are you using SCAR? lol

    EDIT:
    It works in SIMBA and SCAR. JUST TESTED it twice in each...
    SCAR Code:
    program New;
    begin
      wait(3000);
      KeyDown(8);
      wait(15);
      KeyUp(8);
    end.
    Your not USING 3.35.02

    WHAT includes are you using ?

  8. #33
    Join Date
    Nov 2009
    Posts
    471
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    Your not USING 3.35.02

    WHAT includes are you using ?
    Scar 3.22, Download here not sure why its not working in newer version ask that on official forum.
    Last edited by tom99; 09-21-2012 at 07:50 PM.

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

    Default

    KeyUp/KeyDown are extremely fundamental procedures that almost any compiler would have them in-built. Did you download your scar from youtube or somewhere else?

    Also all virtual keys are represented by integers, and 8 represents Back, which should be universal across almost all platforms. Try reading the SCAR/Simba documentation.

  10. #35
    Join Date
    Aug 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    KeyUp/KeyDown are extremely fundamental procedures that almost any compiler would have them in-built. Did you download your scar from youtube or somewhere else?

    Also all virtual keys are represented by integers, and 8 represents Back, which should be universal across almost all platforms. Try reading the SCAR/Simba documentation.
    And give me the integers and a example of the function. I've got the latest version of it, from Scar-Divi.com

  11. #36
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    And give me the integers and a example of the function. I've got the latest version of it, from Scar-Divi.com
    http://docs.villavu.com/simba/script...dkeyboard.html
    Skip down to keyboard virtual keys there to find which integer represents which key.
    SCAR Code:
    TypeKeys('ABCD' + #8)
    This should make it type ABCD and then delete the D. Don't have scar downloaded so I didn't try, but that's the way to use letters in Simba.
    Last edited by litoris; 09-22-2012 at 03:59 PM. Reason: wrong number
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  12. #37
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    You are all wrong. All of you.

    PressVKey(8);
    Working on: Tithe Farmer

  13. #38
    Join Date
    Aug 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    You are all wrong. All of you.

    PressVKey(8);
    Thanks you're the only person that isn't dumb enough to guess syntax's.

  14. #39
    Join Date
    Nov 2009
    Posts
    471
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    Thanks you're the only person that isn't dumb enough to guess syntax's.
    i tried to help you and suddenly I'm so dumb i guess syntax's? well guess what its the last time i help you.

  15. #40
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    You are all wrong. All of you.

    PressVKey(8);
    Not me... My method works.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  16. #41
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Keep this thread civil please. At the start there was some unnecessary bias towards scar. And then there were some good solutions posted which sadly doesn't work with the newest scar anymore. No need to call anyone dumb though. Most people posted here with the intention to help you.

    Quote Originally Posted by masterBB View Post
    You are all wrong. All of you.
    I typed that as a joke btw.
    Working on: Tithe Farmer

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

    Default

    wiki.scar-divi.com

    http://scar-divi.com/

    ~Home

  18. #43
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Sadly that wiki isn't complete, though it almost is. This function is not covered afaik.
    Working on: Tithe Farmer

  19. #44
    Join Date
    Nov 2011
    Posts
    1,589
    Mentioned
    9 Post(s)
    Quoted
    17 Post(s)

    Default

    Man this guy has some attitude problems.
    Seriously, Flaming at everyone who is trying to help..



    ^^

  20. #45
    Join Date
    Jan 2008
    Location
    10° north of Hell
    Posts
    2,035
    Mentioned
    65 Post(s)
    Quoted
    164 Post(s)

    Default

    Quote Originally Posted by Daher View Post
    Thanks you're the only person that isn't dumb enough to guess syntax's.
    You shouldn't insult people that tried to help you, when you were in the wrong being at a forum that has nothing to do with SCAR.

    Dg's Small Procedures | IRC Quotes
    Thank Wishlah for my nice new avatar!
    Quote Originally Posted by IRC
    [22:12:05] <Dgby714> Im agnostic
    [22:12:36] <Blumblebee> :O ...you can read minds

Page 2 of 2 FirstFirst 12

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
  •