Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 15 of 15
  1. #11

    Default

    ok, out of curriosity, i tested a the following simple script with my browser, my explorer, my editor.
    Code:
    <Hotkey WheelForward>
     	<SendFocusWin>
       		<Key WheelForward>
    
    
     <Hotkey WheelBackward>
      	<SendFocusWin>
        		<Key WheelBackward>
    allways no scrolling did happen (but this may also be, because all of this programms use child windows (i think), argh...).
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  2. #12

    Default

    No worries, worst case I may have to macro something up in game, and find space for another key, etc.

    I agree, we'll have to let Freddie weigh in; he's been more than responsive to the community !

  3. #13

    Default

    I use an existing key for my smartbuff by adding the following at the end of the macro:

    /stopmacro [combat]
    /click SmartBuff_KeyButton

    (or it might be /click SmartBuff_ActionButton, I'm at work right now).

    So my key does something different in combat, and smartbuffs out of combat.

  4. #14

    Default

    There's no way to send MouseWheelForward or MouseWheelBackward events. Those words can be used only as triggers of hotkeys.

    It was done this way because the mouse wheel is conceptually different from all other keys and buttons. (I'll explain why this is true in a moment.) As a result, it was easy to add "trigger-only" support, but it would be much more work to add a way to send mouse wheel rolls. Changes to keywords would be required and additional info would have to be sent from one PC to another.

    Mouse wheel rolls are different because when the mouse driver and operating system report them to programs like HotkeyNet, the message says, "the mouse wheel was rolled forward (or backward) a certain distance." There's a magnitude involved -- how far the wheel rolled. But there's nothing like this with other keys and buttons.

    Therefore to send a mouse wheel event, the program would need a keyword like this:

    Code:
    <Roll Forward 8>
    Where 8 is the number of clicks to roll. This would be easy to add to the program. But this only works if you know in advance how far to roll, and that's not how people want to use the feature. They want the program to broadcast rolls. That means the program must notice how far you rolled the wheel when you actually use the mouse, and then it must copy that magnitude to other windows.

    For example, people want to write something like this:

    Code:
    <Hotkey MouseWheelForward>
       <SendPC REMOTE_PC>
          <SendWin MY_WINDOW>
             <Roll %Trigger%>
    In order to make this work, the program would have to record the magnitude of the roll in an implicit variable and send that info to other computers.

    In the new program, %Trigger% will be replaced by a real variable rather than a text macro, and it will be easier to do this.

    Edit: Also, the new program will do pure event broadcasting which will make this extremely simple.
    �Author of HotkeyNet and Mojo

  5. #15

    Default

    I see, thanks for the clarification!
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

Similar Threads

  1. Scroll Lock On/Off
    By Owltoid in forum Software Tools
    Replies: 17
    Last Post: 08-11-2009, 11:58 PM
  2. Mouse Wheel KeyMaps
    By MiRai in forum Software Tools
    Replies: 4
    Last Post: 05-07-2009, 03:53 PM
  3. Scroll Wheel
    By lemonastronaut in forum General WoW Discussion
    Replies: 6
    Last Post: 12-03-2008, 10:26 PM
  4. scroll of resurection
    By winters in forum General WoW Discussion
    Replies: 3
    Last Post: 01-02-2008, 01:37 AM
  5. Robert Jordan (Author of Wheel of Time series) Dies at 58
    By The IT Monkey in forum Off-Topic
    Replies: 1
    Last Post: 09-18-2007, 10:22 AM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •