Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 12
  1. #1

    Default MouseBroadcasting - Possible without focus change?

    Is it possible to broadcast the mouse to other windows, relative positioning to current mouse positioning, without changing window focus?
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  2. #2

    Default

    i'm guessing, but if you use <SendWinM ..> this should be possible.
    For more reference see: http://hotkeynet.com/ref/clickmouse.html
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  3. #3

    Default

    Yes.

    Look at the hotkeynet reference guide under ClickMouse for more information.

    You could get some code like this:


    Code:
    <Hotkey LButton, RButton>
       <SendLabel wow1, wow2, wow3, wow4, wow5>
       <ClickMouse %TriggerMainKey%>
    This will send left mouseclick or right mouse click resp to all 5 wow windows (again..just an example) without changing your current window.

  4. #4

    Default

    ...without changing your current window.
    Which is only true if you used a background-sending mode for your <Label...> definition, otherise it will bring it to the forground

    ..but i'm a little bit of a smart ass here
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  5. #5

    Default

    Quote Originally Posted by 'olipcs',index.php?page=Thread&postID=140559#post1 40559
    ...without changing your current window.
    Which is only true if you used a background-sending mode for your <Label...> definition, otherise it will bring it to the forground

    ..but i'm a little bit of a smart ass here
    This is where I'm confused...

    My goal is to send a relative mouseclick to all N windows without bringing them to foreground...

    What I have thus far:

    Code:
    //================================================================
    // SAMPLE SCRIPT FOR FOUR WOW'S ON TWO PCs
    //
    // Instructions: Copy this entire script (all the blue writing
    // on gray background including comments). Save it in a file.
    // Load it into HotkeyNet.
    //
    // Toggle the scroll lock key to turn hotkeys off and on. (You
    // can change this if you want, just like you can change
    // everything else with HotkeyNet.)
    //
    // Requires HotkeyNet build 147 or higher.
    //
    // For more info, go to www.hotkeynet.com
    //================================================================
    
    //-----------------------------------------------------------
    // CTRL R WILL RENAME WOWS AFTER MANUAL LAUNCH
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Ctrl R>
    	<SendPC local>
        	<RenameWin "World of Warcraft" WoW1>
        	<RenameWin "World of Warcraft" WoW2>
        	<RenameWin "World of Warcraft" WoW3>
        	<RenameWin "World of Warcraft" WoW4>
        	<RenameWin "World of Warcraft" WoW5>
    
    
    //-----------------------------------------------------------
    // DEFINE A MAIL LABEL FOR EACH WOW
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>
    <Label w3 Local SendWinM WoW3>
    <Label w4 Local SendWinM WoW4>
    <Label w5 Local SendWinM WoW5>
    
    
    //-----------------------------------------------------------
    // BROADCAST MOUSE CLICKS. HOLD DOWN OEM3 (ON U.S. KEYBOARDS,
    // THAT'S THE SQUIGGLE KEY IN UPPPER LEFT CORNER) WHEN YOU
    // WANT TO BROADCAST.
    //-----------------------------------------------------------
    <UseKeyAsModifier Oem3>
    <Hotkey ScrollLockOn Oem3 LButton, MButton, RButton, Button4, Button5>
       <SendLabel w1, w2, w3, w4, w5>
      	<ClickMouse %TriggerMainKey%>
    This is pretty much directly yanked from the sample, it moves the mouse about, doesn't seem to reliably click... Ideally I'd like to have ctrl-R detect renamed and named windows, the only thing I'm using AHK for is the mouse broadcast.
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  6. #6

    Default

    Maybe try change the delay in hotkey to 100/100 under options > settings.

  7. #7

    Default

    using AHK
    its HKN

    ..the above script should do the job.
    So, as Anemo suggested i would also try to change the hotkey delay beginning from 100/100.
    If this works try to find out the magical frontier of the setting by tuning it down till it doesn't work

    Perhaps you could also use SendWinMF instead of SendWinM to see if it works.

    Edit1:
    Other idea: is scrolllok on on every computer you use, or do you need it at all?

    Edit2:
    More comments: If you mean by relative mouseclicks, that the mouseposition is scaled according to your window-size the above should work
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  8. #8

    Default

    AFter a bit of playing with those delays I got it to work on 3 of the 5 wows on one click then 2 of the 2 remaining on the 2nd click... I was clicking the exit button.

    I'll have to screw with this a bit more, but right now my focus is on my druids leveling, 15 down, 45 to go...
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  9. #9

    Default

    Two things to make ClickMouse work reliably:

    -- Raise ClickMouse Delays on Settings Panel.

    -- Usually you get better performance if the spot that you're clicking in background windows is visible (not covered by other windows). Sometimes (depending on PC speed and number of WoWs) you need to do this, other times you can get away with not doing it.

    Also, make sure you're using the current build of HotkeyNet because ClickMouse's peformance increased in a fairly recent build.
    �Author of HotkeyNet and Mojo

  10. #10

    Default

    Quote Originally Posted by 'Freddie',index.php?page=Thread&postID=140699#post 140699
    Two things to make ClickMouse work reliably:

    -- Raise ClickMouse Delays on Settings Panel.

    -- Usually you get better performance if the spot that you're clicking in background windows is visible (not covered by other windows). Sometimes (depending on PC speed and number of WoWs) you need to do this, other times you can get away with not doing it.

    Also, make sure you're using the current build of HotkeyNet because ClickMouse's peformance increased in a fairly recent build.
    Unless you are hiding the current build on the website I have it (Downloaded fresh last night). The 5 windows are all fully visible, I run 1 @ 1680x1050 and the other 4 are scaled in a stack on the right side of my left monitor...

    I am curious to know if there is a way to iterate through existing wows... some teams I play 4, some I play 5, it seems if I hardcode for 5 I'm throwing errors every time I play 4...
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

Similar Threads

  1. Did they change Assist/Focus?
    By sqeaky4100 in forum New Multi-Boxers & Support
    Replies: 1
    Last Post: 12-17-2008, 02:04 AM
  2. Setting focus change to a single button
    By pjdell in forum New Multi-Boxers & Support
    Replies: 7
    Last Post: 12-10-2008, 01:15 AM
  3. [Focus Macro] How to: friendly heal, harm heal focus...
    By Ramesses in forum Macros and Addons
    Replies: 2
    Last Post: 06-22-2008, 10:46 AM
  4. Stupid focus problem, how do I make someone focus not in my group?
    By shivetya in forum New Multi-Boxers & Support
    Replies: 6
    Last Post: 03-17-2008, 08:16 AM
  5. [WoW] Leader focus change macro
    By Ughmahedhurtz in forum General WoW Discussion
    Replies: 2
    Last Post: 09-11-2007, 02:39 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
  •