Results 1 to 11 of 11

Thread: Typing ASCII characters in Simba

  1. #1
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default Typing ASCII characters in Simba

    Hey, need some help with ASCII character, need to type, @, -, /, etc, but can't seem to get Simba tu type, for @ should work this?

    SCAR Code:
    program new;
    begin
       Keydown(64);

    end.

    but it doeasn't type anything, help me out.
    I remember I got it to work when I used Scar years back. used something like{100} etc.
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  2. #2
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    ^^^OK...

    On Topic: Damn, I forgot what it was! Why do you need it though? Maybe I can find a work around

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  3. #3
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    ^^^OK...

    On Topic: Damn, I forgot what it was! Why do you need it though? Maybe I can find a work around
    Just trying to continue his sig lyrics, couldn't resist.

  4. #4
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Yeah, BMWxi a good movie!
    Any ideas about character typing?
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  5. #5
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    ^^^Could you answer the Question lol, do you have to do it this way? What do you need it for?

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  6. #6
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by Rezozo View Post
    ^^^Could you answer the Question lol, do you have to do it this way? What do you need it for?
    Sry, just need to type some characters, like@ etc, "this way"? Tell me about another ways then
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  7. #7
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Ok, now I am just confused...
    If you want Simba to output the @ sign, just do:

    Simba Code:
    Writeln('@');

    If you are talking about RS, then I think it is a little different. First post which one lol

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  8. #8
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    I have to type some forms, need @ for email. I had one old script, but can't find it atm, and it only worked with scar
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  9. #9
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    typesend('@');

    Just tested and confirmed. It will type @ and press enter. Is that what you need?

    Edit: This will just type the characters, not hit enter.

    SendKeys('@', 30 + Random(30), 30 + Random(30));
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  10. #10
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Yeah works only if you have EN keyboard(keyboard set to EN), what I do if I done't have one?
    Try for typesend('@ / - * ');
    Does it type all correctly?

    I'm getting: " / - *
    And if I change to EN then: @ & ] |
    Last edited by neeger; 10-08-2012 at 01:12 AM.
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  11. #11
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thats really weird... I just tried

    Simba Code:
    program new;
    {$i srl/srl.simba}



    begin
      SetupSRL
      sendkeys('@ / - *', 60, 60);
    end.

    and got @ / - *... Maybe someone else can help you.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

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
  •