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

    Default Mouse on same comp

    Hi guys, i just wonder if there is any free program out there that will be able to let me controll both games with the same mouse on 1 computer? At the moment i use AHK
    Thanks

  2. #2

    Default

    Hiya Deathtrip, welcome.

    Would you mind specifying exactly what you would like to do. Are you running 2 instances of WOW on 1 machine or do you have 2 machines that you want to be able to control with one mouse?
    Owachi (Druid), Rhodrage(Paladin), Tenitis (Warlock), Rhodigan (Mage), Vhoden (Shaman)

  3. #3

    Default

    I run two WoW on 1 machine and wonder if there is any program that does the same as AHK but with the mouse cause AHK only transfers the keyboard to the second wow. not the mouse

  4. #4

    Default

    AHK can perform clicks, read the documentation on how to do it.
    Wilbur

  5. #5

    Default

    klicks whit ahk + wow = fail
    itl target off ur first wow, then target the secon wow, then target back the first wow, and all of this is visual
    and sometimes it doesent target the first wow propper anymore, its just unhandy

    id sugest geting 2 comps and buying keyclone

  6. #6

    Default

    im 16 years old and can barly afford driving my moped to school.





    ok maybe not that bad :lol:

  7. #7

    Default

    Erm... It'd be fairly simple, press an AHK Hotkey, it takes the current position on WoW 1, clicks, moves to WoW 2, Clicks, etc, You don't have to use Preset positions.
    Wilbur

  8. #8

    Default

    at the moment i use macros like this:

    /assist party1
    /cast <spell>
    /follow party1

    but ide like to move both chars with mouse and keyboard insteed of having him on follow all the time. Would be MUCH better in PvP

  9. #9

    Default

    Quoted from lexikos of AutoHotKey forums.

    Following the style of the script in your previous post,
    Code (Copy):
    #IfWinActive World of Warcraft
    ~LButton:: ; ~ means don't block
    CoordMode, Mouse, Relative ; this is the default, but just in case
    MouseGetPos, x, y
    ControlClick, X%x% Y%y%, ahk_id %wowid2%
    ControlClick, X%x% Y%y%, ahk_id %wowid3%
    return
    For right-click, you'd use ~RButton:: and
    Code (Copy):
    ControlClick, X%x% Y%y%, ahk_id %wowid2%,, R

    This doesn't simulate mouse drag/movement, which is more complicated since there is no built-in command.

    For future reference, #IfWinActive applies to all hotkeys down to the next #IfWin. It does not need to be repeated, though there is no harm.

  10. #10

    Default

    thanks alot, i'll try this out after my The Eye raid :P

    Is it just to copy, or what do i need to remove? cause he is writing stuff that shouldn't be there aswell right?

    #IfWinActive World of Warcraft
    ~LButton::
    CoordMode, Mouse, Relative
    MouseGetPos, x, y
    ControlClick, X%x% Y%y%, ahk_id %wowid2%
    ControlClick, X%x% Y%y%, ahk_id %wowid3%
    return


    ????

Similar Threads

  1. Twichy mouse in "focus follow's mouse"
    By ZooljinX in forum Software Tools
    Replies: 0
    Last Post: 01-06-2009, 08:36 AM
  2. 2 acc 1 comp
    By wftdisc in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 11-02-2008, 03:05 PM
  3. Replies: 7
    Last Post: 07-01-2008, 12:42 PM
  4. Replies: 3
    Last Post: 06-07-2008, 06:41 PM
  5. Mouse "Cage" - How to keep a mouse on one half of
    By Xzin in forum General WoW Discussion
    Replies: 14
    Last Post: 07-18-2007, 12:21 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
  •