Results 1 to 13 of 13

Thread: Mouse: middle button and wheel

  1. #1
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default Mouse: middle button and wheel

    Any chances of getting middle button and wheel work? Why we dont have these yet?

  2. #2
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    You mean get a function that spins the wheel?

  3. #3
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    Quote Originally Posted by abu_jwka View Post
    You mean get a function that spins the wheel?
    Yep. And middle button for rotating camera.

  4. #4
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    SetScreenMouse does that, it's one of the best i've ever used.

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

    Default

    Quote Originally Posted by hunt3rx3 View Post
    Yep. And middle button for rotating camera.
    SetScreenMouse for rotating Camera via MiddleMouse.

    Edit: Ninjaed by Sin :P

    ~Home

  6. #6
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Lol home ninja'd you son goml noob!

  7. #7
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    Quote Originally Posted by Sin View Post
    SetScreenMouse does that, it's one of the best i've ever used.
    Thanks, this is what I was looking for.
    And what about using mouse wheel? (reading chat window)

  8. #8
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Err, I don't think there's one for that O.O
    Might be nice looking into though.

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

    Default

    Simba Code:
    procedure ScrollChat(Lines :Integer; Down :Boolean);
    var
      SLines :Integer;
    begin
      If Lines >= 3 then
        SLines := Round(Lines / 3) else SLines := Lines;
      If Down then SLines := Slines * - 1;
      MouseBoxEx(MCX1 + 25, MCY1 + 20, MCX2 - 25, MCY2 - 20, 0, mouse_move);
      Scrollmouse(0, 0, SLines);
    end;


    I quickly ditched that up. Please note that if you give Lines 1 it means that it will scroll one line but the truth is that it will scroll 3 lines.

    ~Home

  10. #10
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    A "ScrollMouseWheel" function is something that would have to be added to Simba.

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

    Default

    Quote Originally Posted by Coh3n View Post
    A "ScrollMouseWheel" function is something that would have to be added to Simba.
    There is ScrollMouse inside Simba. Look function above how it can be used.

    ~Home

  12. #12
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Heh, completely missed that.

  13. #13
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    Thank you guys! Will look into it!

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
  •