Results 1 to 22 of 22

Thread: My k£yboard is brokn (cant typ£ in £ (as in £dward))

  1. #1
    Join Date
    Aug 2008
    Location
    England
    Posts
    320
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default My k£yboard is brokn (cant typ£ in £ (as in £dward))

    H3llo 3v3ryon3. My k3yboard is brok3n, and I cant typ3 in th3 l3tt3r I am having to substitut3. Im not typing in 1337sp3ak, btw. Can anyon3 cod3 a small script that 3g. Typ3s in *3* wh3n I pr3ss Hom3+R? And for capitals, Hom3+Shift+R? Any h3lp appr3ciat3d, until I g3t a n3w k3yboard, and also, how would I put it, as I hav3 a laptop.
    And my mum aint gonna b3 happy a sh3 will now hav3 to go on facbook, not fac3book.

    -- BadProc3ssor
    PS. Im not kidding.

    3DIT: Had to b3 th3 most us3d charact3r in 3nglish. Is this a virus or som3thing?

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

    Default

    If it really is your keyboard I suggest buying a new one..

  3. #3
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    You go from using £ in the title to 3 in your posts, which makes this sound less believable. If this really is a keyboard problem, then getting a new keyboard is your best bet, like Hugolord mentioned.
    :-)

  4. #4
    Join Date
    Sep 2008
    Location
    SWEDEN
    Posts
    363
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Hugolord View Post
    If it really is your keyboard I suggest buying a new one..

    Yeah , without a "letter" it's hard to do something.

  5. #5
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    You could try something like this and have it in the task tray (Like next to the clock). So when you press f10 it will type 'e'.

    SCAR Code:
    program New;
    {.include srl/srl.scar}


    begin
      setupsrl;
      repeat
        wait(100);
        if isFkeyDown(10) then sendkeys('e');
      until false
    end.

    Edit: Crap! Don't put GetSelf.Hide; in it! I cant find the SCAR anymore lol. Does any one know where it goes?
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  6. #6
    Join Date
    Aug 2008
    Location
    England
    Posts
    320
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    thanks guys. y3ah i figur3d out 3 was a b3tt3r r3plac3m3nt than £, n3v3r mind.
    im gonna buy a n3w on3 tomorrow aft3r school.

    -- BadProc3ssor

    EDIT: Made a small Vb6 program that replaces for me. Still working on it, and still gonna buy a new keyboard. Copy and pasted the E, time after time. Not easy.

  7. #7
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noidea View Post
    You could try something like this and have it in the task tray (Like next to the clock). So when you press f10 it will type 'e'.

    SCAR Code:
    program New;
    {.include srl/srl.scar}


    begin
      setupsrl;
      repeat
        wait(100);
        if isFkeyDown(10) then sendkeys('e');
      until false
    end.

    Edit: Crap! Don't put GetSelf.Hide; in it! I cant find the SCAR anymore lol. Does any one know where it goes?
    Task Manager....

  8. #8
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this:

    SCAR Code:
    program New;
    {.include srl/srl.scar}


    begin
      setupsrl;
      repeat
        wait(100);
        if iskeydown('3') then
        begin
        Keydown(8);
        Keyup(8);
        sendkeys('e');
        End;
      until false
    end.

    It works perfectly imo .

  9. #9
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Try this:

    SCAR Code:
    program New;
    {.include srl/srl.scar}


    begin
      setupsrl;
      repeat
        wait(100);
        if iskeydown('3') then
        begin
        Keydown(8);
        Keyup(8);
        sendkeys('e');
        End;
      until false
    end.

    It works perfectly imo .
    Why are you including SRL? you don't even use it.


  10. #10
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cazax View Post
    Why are you including SRL? you don't even use it.
    I copy/pasted Noidea's and modified it, :P.

  11. #11
    Join Date
    Aug 2008
    Location
    England
    Posts
    320
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    ah cheers guys. the idea of replacing 3 with e would work until you were working with numbers. Thanks for your time and effort, anyways. Swapped 3 with F2 and it works OK. Now I got a VB6 copy and a SCAR copy! Rep+ for everyone!

  12. #12
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    LOL, Timer I looked in the Tak Manager, but it wasn't there. I still can't find it.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  13. #13
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noidea View Post
    LOL, Timer I looked in the Tak Manager, but it wasn't there. I still can't find it.
    It should be there under Scar.exe.. if it's not there it isn't running..

  14. #14
    Join Date
    May 2008
    Location
    in a house
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noidea View Post
    LOL, Timer I looked in the Tak Manager, but it wasn't there. I still can't find it.
    Lol just shut down your computer and restart if you cant find it in the task manager but yeah Huglords right if its not under task manager its probably not even running
    Need help with anything in RS?
    Pyrofire32 or A Zamorakist
    ^PM me and I'll add you!
    Looking for some good accounts, I'll buy them off you.
    PM me if you're an Ayumi Hamasaki Fan

  15. #15
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Its still running and its not in my Task Manager, zomg I hacked myslef!?!?!

    Edit: It wasnt showing up in applications, I found it in processes.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  16. #16
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Looool, Applications... are whats running and visable in the start bar thing, processes is everything.. You didn't know that?

  17. #17
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Timer View Post
    Looool, Applications... are whats running and visable in the start bar thing, processes is everything.. You didn't know that?
    Apparently not. I used to have a fffked up version of windows XP (That showed everything in applications), now I have Vista. Now I know
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  18. #18
    Join Date
    Apr 2007
    Posts
    224
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You could have a Happy virus lol ^.^ or you have broken it.
    Had this problem, so i like got a new Key Board and now it works.. I think they make the Ins button budge it

  19. #19
    Join Date
    Aug 2008
    Location
    England
    Posts
    320
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Cheers guys. ive got a sweet new keyboard with a color-changing backlight for £40.

    -- BadProcessor

  20. #20
    Join Date
    Mar 2008
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thts annoying

  21. #21
    Join Date
    Dec 2007
    Location
    Williston, ND
    Posts
    3,106
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    eh, I wouldn't have gone with none of them thar fancy color changing ness! Just adds cost and annoyance.
    Proud owner of "Efferator" my totally boted main account!
    "You see, sometimes, science is not a guess" -Xiaobing Zhou (my past physics professor, with heavy Chinese accent)

  22. #22
    Join Date
    Aug 2008
    Location
    England
    Posts
    320
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Hey, makes my keyboard glow in the dark, and also it was the cheapest one there
    Link to manufacturer: Saitek Eclipse II

    -- BadProcessor

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
  •