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

    Default RE: RE: RE: Using clicks and not hotKeys to control the "enslave"?

    Quote Originally Posted by 'flep',index.php?page=Thread&postID=72585#post7258 5
    For example, with the HotkeyNet i can send a "mouse click" for the background wow, using a keybind [got the example on the site and works fine]. If this can be done simple with the MouseClick as a hotkey, sending the exactly mouseclick for the background wow, i can just create a fake buttons on my wow1 and put the functions on the same X,Y on the wow2, so, when i click on my wow1 fake bar, will duplicate the click on the wow2.
    Sorry I forgot to answer this. Yes you can do this now with HotkeyNet. I added mouse triggers to HotkeyNet in build 103 a couple of days ago. If you put the windows on the same X,Y you should also write "NoMove" in <MouseClick> to make the execution very fast. Or you can put the windows on different X,Y's and HKN will move and scale the cursor position, but that adds a little bit of latency. You can also send the click to only the background window if you want even though you're clicking on the top one.
    �Author of HotkeyNet and Mojo

  2. #12

    Default RE: RE: RE: RE: Using clicks and not hotKeys to control the "enslave"?

    Quote Originally Posted by 'Freddie',index.php?page=Thread&postID=72592#post7 2592
    Quote Originally Posted by 'flep',index.php?page=Thread&postID=72585#post7258 5
    For example, with the HotkeyNet i can send a "mouse click" for the background wow, using a keybind [got the example on the site and works fine]. If this can be done simple with the MouseClick as a hotkey, sending the exactly mouseclick for the background wow, i can just create a fake buttons on my wow1 and put the functions on the same X,Y on the wow2, so, when i click on my wow1 fake bar, will duplicate the click on the wow2.
    Sorry I forgot to answer this. Yes you can do this now with HotkeyNet. I added mouse triggers to HotkeyNet in build 103 a couple of days ago. If you put the windows on the same X,Y you should also write "NoMove" in <MouseClick> to make the execution very fast. Or you can put the windows on different X,Y's and HKN will move and scale the cursor position, but that adds a little bit of latency. You can also send the click to only the background window if you want even though you're clicking on the top one.
    Really?? Can you put an example of the mouseclick1? I have the 103 build but dont know how to put the mouse click on the script.

    Ty

  3. #13

    Default

    Sure. The button names changed in build 104. I'll use the new names from 104 in these examples.

    To start off, here's a hotkey that does what you described. Your two WoW's are the same size, at the same location. You press the left button and both windows get clicked.

    Code:
    <Hotkey LButton>
    <SendWinM wow1>
    <MouseClick NoMove LButton>
    <SendWinM wow2>
    <MouseClick NoMove LButton>
    Like I said earlier, you don't need to have the windows in the same place. They don't even have to be the same size. If you move them or resize them, take "NoMove" out of the second <MouseClick> like this:

    Code:
    <Hotkey LButton>
    <SendWinM wow1>
    <MouseClick NoMove LButton>
    <SendWinM wow2>
    <MouseClick LButton>
    Those hotkeys work okay but they might be annoying because they *always* click both windows when you press the mouse button. It might be better to make a hotkey that does that only sometimes. Here's one way to do that. Pick a key on your keyboard that's easy to find, but doesn't get used much. On US-English keyboards, the Grave key (upper left corner) is a good choice. Declare that as a custom modifier (a shift key). Then define the hotkey so it gets triggered only when Grave is held down simultaneously with the left button. The result looks like this:

    Code:
    <UseKeyAsModifier Grave>
    <Hotkey LButton>
    <SendWinM wow1>
    <MouseClick LButton>
    <SendWinM wow2>
    <MouseClick LButton>
    And that leads up to Katharsis's example from this other thread:

    HotkeyNet + AOE!
    �Author of HotkeyNet and Mojo

Similar Threads

  1. hotkeys for reviving and accepting body
    By multiwowzer in forum General WoW Discussion
    Replies: 4
    Last Post: 06-14-2009, 02:59 PM
  2. Replies: 1
    Last Post: 08-09-2008, 01:54 AM
  3. multiboxing - mouse hotkeys
    By redforman in forum New Multi-Boxers & Support
    Replies: 6
    Last Post: 05-14-2008, 06:39 PM
  4. Only send certain hotkeys to non-active windows?
    By Vodka in forum Software Tools
    Replies: 2
    Last Post: 11-25-2007, 10:58 PM
  5. Broadcasting or Hotkeys
    By Kpd123 in forum Software Tools
    Replies: 14
    Last Post: 11-19-2007, 09:48 PM

Posting Rules

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