Close
Showing results 1 to 10 of 46

Hybrid View

  1. #1

    Default

    I've had a look at the ISBoxer website and forums, it seems to do away with most of the grunt work, setting up the windows on the screen, and selecting characters for each window, it also has the window swapping feature that I'm going to setup in HotKeyNet.

    From what I can tell it requires a subscription to a component called "Inner Space".

    I wonder if I should just subscribe to inner space and use isboxer or roll my own with HotKeyNet. Inner space isn't expensive, but still I'm not sure.

  2. #2
    Multiboxologist MiRai's Avatar
    Join Date
    Apr 2009
    Location
    Winter Is Coming
    Posts
    6815

    Default

    Quote Originally Posted by PineBeach View Post
    I wonder if I should just subscribe to inner space and use isboxer or roll my own with HotKeyNet. Inner space isn't expensive, but still I'm not sure.
    As most people here will tell you that ISBoxer is a route that they've chosen and never looked back. I will say the same.

  3. #3

    Default

    I've just had a quick look at the wiki http://www.dual-boxing.com/wiki/index.php/Software there's plenty to choose from. Have you had any experience with the others?

    Quote Originally Posted by Fenril View Post
    As most people here will tell you that ISBoxer is a route that they've chosen and never looked back. I will say the same.
    From the video on the homepage I can see that the window switching in ISBoxer looks quite fast, I'll have to see how it goes with HotKeyNet.

    At the moment I can't really justify forking out for ISBoxer, cheap as it may be. I'm also concerned that it might do too much; have loads of features that I dont want. At the moment my needs are very simple. If I hit a wall with HotKeyNet I might give ISBoxer a try.

  4. #4

    Default

    Quote Originally Posted by Fenril View Post
    As most people here will tell you that ISBoxer is a route that they've chosen and never looked back. I will say the same.
    Ditto.

    The power and configurability of ISBoxer is worth every cent of the annual subscription and more.... way more (but shhh, don't tell Lax I said that... hehe).

    Given your interest in devling into the mechanics of it all PineBeach I think you'd especially appreciate the sheer magnitude of what you can do with it. Make sure to get Jamba too, a free-add on that Jafula on these boards is both rightly and highly praised for.

    I'd also like to agree with Fenril - no-one, but no-one moves all their toons all the time using WASD. As he mentioned, the simple fact that the camera settings/ teams facing, no matter how much you may try, won't always exactly line up would make that system unworkable.

    /follow is the only way to go, and that means accepting follower lag for the reasons I laid out in my previous post.
    Last edited by OzPhoenix : 07-18-2010 at 10:07 AM
    ...for when one toon just isn't enough...

    Horde Caelestrasz Multiboxer:
    Team1: 5xPaladin....Level 80 - Heroic gearing completed. WTB [Frost Badge] pst pls.
    Team2: 1xPaladin/4xShaman....Level 80 - On Hiatus, Awaiting Cata.


    Contact on: Nevergonna on Realm Caelestrasz (Horde)

    Caelestrasz Horde: 5 Active 5 Boxers and counting.

  5. #5

    Default

    I had a quick look at ISBoxer the other day, I couldn't figure out how to resize the windows when setting up, I'll have another go on the weekend. It looks pretty good, among other things it allows you to have a seperate config file for each character which is really good.

    I have finished my HotKeyNet window swapping script, it uses the following keys

    Pause - Toggles hot keys on or off, I use this when I dont want to broadcast key presses to all windows
    Ctrl Alt A - Toggle active window tracking
    Ctrl Alt L - Launch 5 instances of world of warcraft
    Ctrl Alt X - Make the active window the main window
    Ctrl Alt F1 - Make WoW1 the main window
    Ctrl Alt F2 - Make WoW2 the main window
    Ctrl Alt F3 - Make WoW3 the main window
    Ctrl Alt F4 - Make WoW4 the main window
    Ctrl Alt F5 - Make WoW5 the main window
    Ctrl Alt D Arrange the windows in the default layout
    Keys 1 - 0 and the minus key

    I use it with a screen resolution of 2560 x 1600 on windows 7

    Before pressing Ctrl Alt L I open up an instance of wow, change the graphics settings to low, windowed, a resolution of 720x576 and disable sound, then shut it down, otherwise my machine wouldn't be able to handle it when five of them start up.

    Is there a way to limit the fps of the smaller windows?

    Once the instances of wow have loaded there are two indicators in the bottom right of the screen to tell me whether hot keys are enabled and whether active window tracing is on, active window tracking is an operating system feature that causes the window with the mouse over it to recieve focus, this makes things much easier when switching windows.

    When the script loads hot keys are disabled by default and I press the Pause key to enable them.

    The default window layout is

    WoW5 - Top Left
    WoW4 - Bottom Left
    WoW3 - Top Middle
    WoW2 - Top Right
    WoW1 - Main

    I posted a screenshot a few days ago

    Here Is Part One

    Code:
    <Command LaunchAndRename>
       <SendPC local> 
          <Run "C:\Users\Public\Games\World of Warcraft\WoW.exe">
            <RenameTargetWin %2%>
    <Command SetWin1>
        <SetVar Win1 %1%>
        <TargetWin %1%>
            <SetWinPos 0 0>
            <SetWinSize 965 795>
            <UpdateWin>
    <Command SetWin2>
        <SetVar Win2 %1%>
        <TargetWin %1%>
            <SetWinPos 0 795>
            <SetWinSize 965 795>
            <UpdateWin>
    <Command SetWin3>
        <SetVar Win3 %1%>
        <TargetWin %1%>
            <SetWinPos 965 0>
            <SetWinSize 795 660>
            <UpdateWin>
    <Command SetWin4>
        <SetVar Win4 %1%>
        <TargetWin %1%>
            <SetWinPos 1760 0>
            <SetWinSize 795 660>
            <UpdateWin>
    <Command SetWin5>
        <SetVar Win5 %1%>
        <TargetWin %1%>
            <SetWinPos 965 660>
            <SetWinSize 1135 930>
            <UpdateWin>
    <Command DefaultWindowLayout>
        <SetWin1 WoW5>
        <SetWin2 WoW4>
        <SetWin3 WoW3>
        <SetWin4 WoW2>
        <SetWin5 WoW1>
    <Command Swap1And5>
        <SetWin1 %2%>
        <SetWin5 %1%>
    <Command Swap2And5>
        <SetWin2 %2%>
        <SetWin5 %1%>
    <Command Swap3And5>
        <SetWin3 %2%>
        <SetWin5 %1%>
    <Command Swap4And5>
        <SetWin4 %2%>
        <SetWin5 %1%>
    <Command AutoExec>
        <DoHotKey Hotkey NumLockOn Alt Ctrl Shift H>
        <DoHotKey Hotkey NumLockOn Alt Ctrl Shift A>
        <DoHotKey Hotkey NumLockOn Alt Ctrl Shift T>
        <SetActiveWindowTracking Off> 
        <SetVar ActOff true>
    <Hotkey NumLockOn Alt Ctrl Shift H>
        <If WinDoesNotExist HKN>
            <CreatePanel HKN 2500 1535 30 30>
            <TargetWin HKN>
            <CreateColoredButton ON 0 0 30 30 0x00FF00 0x0F0F0F ???>
            <AddButtonToPanel ON HKN>
            <SetButtonText ON HKN>
            <TargetWin HKN>      
            <AlwaysOnTop on>
            <RemoveWinFrame>
            <UpdateWin>
        <EndIf>
        <SetButtonColors ON 0xfF0000 0xffFFff >
        <SetButtonText ON off>
    <Hotkey NumLockOn Alt Ctrl Shift A>
        <If WinDoesNotExist AWT>
            <CreatePanel AWT 2400 1535 30 30>
            <TargetWin AWT>
            <CreateColoredButton ACT 0 0 30 30 0x0000FF 0xFFFFFF ???>
            <AddButtonToPanel ACT AWT>
            <SetButtonText ACT AWT>
            <TargetWin AWT>      
            <AlwaysOnTop on>
            <RemoveWinFrame>
            <UpdateWin>
        <endif>
        <SetButtonColors ACT 0xfF0000 0xffFFff >
        <SetButtonText ACT off>
    Last edited by PineBeach : 07-20-2010 at 09:58 PM

  6. #6

    Default

    Part Two

    Code:
    <Hotkey Alt Ctrl Shift Oem2>
        <If Win5 Is WoW4>
            <Swap4And5 WoW1 WoW4>
        <Else If Win5 Is WoW5>
            <Swap4And5 WoW1 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift Period>
        <If Win5 Is WoW2>
            <Swap4And5 WoW1 WoW2>
        <Else If Win5 Is WoW3>
            <Swap4And5 WoW1 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift Oem2>
        <EndIf>
    <Hotkey Alt Ctrl Shift Comma>
        <If Win5 Is WoW4>
            <Swap3And5 WoW1 WoW4>
        <Else If Win5 Is WoW5>
            <Swap3And5 WoW1 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift M>
        <If Win5 Is WoW2>
            <Swap3And5 WoW1 WoW2>
        <Else If Win5 Is WoW3>
            <Swap3And5 WoW1 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift Comma>
        <EndIf>
    <Hotkey Alt Ctrl Shift N>
        <If Win3 Is WoW1>
            <DoHotkey Hotkey Alt Ctrl Shift M>
        <Else If Win4 Is WoW1>
            <DoHotkey Hotkey Alt Ctrl Shift Period>    
        <EndIf>
    <Hotkey Alt Ctrl Shift B>
        <If Win5 Is WoW4>
            <Swap2And5 WoW1 WoW4>
        <Else If Win5 Is WoW5>
            <Swap2And5 WoW1 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift V>
        <If Win5 Is WoW2>
            <Swap2And5 WoW1 WoW2>
        <Else If Win5 Is WoW3>
            <Swap2And5 WoW1 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift B>
        <EndIf>
    <Hotkey Alt Ctrl Shift C>
        <If Win2 Is WoW1>
            <DoHotkey Hotkey Alt Ctrl Shift V>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift N>
        <EndIf>
    <Hotkey Alt Ctrl Shift X>
        <If Win5 Is WoW4>
            <Swap1And5 WoW1 WoW4>
        <Else If Win5 Is WoW5>
            <Swap1And5 WoW1 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift Z>
        <If Win5 Is WoW2>
            <Swap1And5 WoW1 WoW2>
        <Else If Win5 Is WoW3>
            <Swap1And5 WoW1 WoW1>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift X>
        <EndIf>
    <Hotkey Alt Ctrl Shift Oem5; Alt Ctrl F1>
        <If Win1 Is WoW1>
            <DoHotkey Hotkey Alt Ctrl Shift Z>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift C>
        <EndIf>
    <Hotkey Alt Ctrl Shift Oem3>
        <If Win5 Is WoW4>
            <Swap4And5 WoW2 WoW4>
        <Else If Win5 Is WoW5>
            <Swap4And5 WoW2 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift Oem1>
        <If Win5 Is WoW1>
            <Swap4And5 WoW2 WoW1>
        <Else If Win5 Is WoW3>
            <Swap4And5 WoW2 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift Oem3>
        <EndIf>
    <Hotkey Alt Ctrl Shift L>
        <If Win5 Is WoW4>
            <Swap3And5 WoW2 WoW4>
        <Else If Win5 Is WoW5>
            <Swap3And5 WoW2 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift K>
        <If Win5 Is WoW1>
            <Swap3And5 WoW2 WoW1>
        <Else If Win5 Is WoW3>
            <Swap3And5 WoW2 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift L>
        <EndIf>
    <Hotkey Alt Ctrl Shift J>
        <If Win3 Is WoW2>
            <DoHotkey Hotkey Alt Ctrl Shift K>
        <Else If Win4 Is WoW2>
            <DoHotkey Hotkey Alt Ctrl Shift Oem1>    
        <EndIf>
    <Hotkey Alt Ctrl Shift H>
        <If Win5 Is WoW4>
            <Swap2And5 WoW2 WoW4>
        <Else If Win5 Is WoW5>
            <Swap2And5 WoW2 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift G>
        <If Win5 Is WoW1>
            <Swap2And5 WoW2 WoW1>
        <Else If Win5 Is WoW3>
            <Swap2And5 WoW2 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift H>
        <EndIf>
    <Hotkey Alt Ctrl Shift F>
        <If Win2 Is WoW2>
            <DoHotkey Hotkey Alt Ctrl Shift G>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift J>
        <EndIf>
    <Hotkey Alt Ctrl Shift D>
        <If Win5 Is WoW4>
            <Swap1And5 WoW2 WoW4>
        <Else If Win5 Is WoW5>
            <Swap1And5 WoW2 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift S>
        <If Win5 Is WoW1>
            <Swap1And5 WoW2 WoW1>
        <Else If Win5 Is WoW3>
            <Swap1And5 WoW2 WoW3>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift D>
        <EndIf>
    <Hotkey Alt Ctrl Shift A; Alt Ctrl F2>
        <If Win1 Is WoW2>
            <DoHotkey Hotkey Alt Ctrl Shift S>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F>
        <EndIf>
    <Hotkey Alt Ctrl Shift Oem4>
        <If Win5 Is WoW4>
            <Swap4And5 WoW3 WoW4>
        <Else If Win5 Is WoW5>
            <Swap4And5 WoW3 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift P>
        <If Win5 Is WoW1>
            <Swap4And5 WoW3 WoW1>
        <Else If Win5 Is WoW2>
            <Swap4And5 WoW3 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift Oem4>
        <EndIf>
    <Hotkey Alt Ctrl Shift O>
        <If Win5 Is WoW4>
            <Swap3And5 WoW3 WoW4>
        <Else If Win5 Is WoW5>
            <Swap3And5 WoW3 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift I>
        <If Win5 Is WoW1>
            <Swap3And5 WoW3 WoW1>
        <Else If Win5 Is WoW2>
            <Swap3And5 WoW3 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift O>
        <EndIf>
    <Hotkey Alt Ctrl Shift U>
        <If Win3 Is WoW3>
            <DoHotkey Hotkey Alt Ctrl Shift I>
        <Else If Win4 Is WoW3>
            <DoHotkey Hotkey Alt Ctrl Shift P>    
        <EndIf>
    <Hotkey Alt Ctrl Shift Y>
        <If Win5 Is WoW4>
            <Swap2And5 WoW3 WoW4>
        <Else If Win5 Is WoW5>
            <Swap2And5 WoW3 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift T>
        <If Win5 Is WoW1>
            <Swap2And5 WoW3 WoW1>
        <Else If Win5 Is WoW2>
            <Swap2And5 WoW3 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift Y>
        <EndIf>
    <Hotkey Alt Ctrl Shift R>
        <If Win2 Is WoW3>
            <DoHotkey Hotkey Alt Ctrl Shift T>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift U>
        <EndIf>
    <Hotkey Alt Ctrl Shift E>
        <If Win5 Is WoW4>
            <Swap1And5 WoW3 WoW4>
        <Else If Win5 Is WoW5>
            <Swap1And5 WoW3 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift W>
        <If Win5 Is WoW1>
            <Swap1And5 WoW3 WoW1>
        <Else If Win5 Is WoW2>
            <Swap1And5 WoW3 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift E>
        <EndIf>
    <Hotkey Alt Ctrl Shift Q; Alt Ctrl F3>
        <If Win1 Is WoW3>
            <DoHotkey Hotkey Alt Ctrl Shift W>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift R>
        <EndIf>
    <Hotkey Alt Ctrl Shift plus>
        <If Win5 Is WoW3>
            <Swap4And5 WoW4 WoW3>
        <Else If Win5 Is WoW5>
            <Swap4And5 WoW4 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift minus>
        <If Win5 Is WoW1>
            <Swap4And5 WoW4 WoW1>
        <Else If Win5 Is WoW2>
            <Swap4And5 WoW4 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift plus>
        <EndIf>
    <Hotkey Alt Ctrl Shift 0>
        <If Win5 Is WoW3>
            <Swap3And5 WoW4 WoW3>
        <Else If Win5 Is WoW5>
            <Swap3And5 WoW4 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift 9>
        <If Win5 Is WoW1>
            <Swap3And5 WoW4 WoW1>
        <Else If Win5 Is WoW2>
            <Swap3And5 WoW4 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 0>
        <EndIf>
    <Hotkey Alt Ctrl Shift 8>
        <If Win5 Is WoW3>
            <Swap2And5 WoW4 WoW3>
        <Else If Win5 Is WoW5>
            <Swap2And5 WoW4 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift 7>
        <If Win5 Is WoW3>
            <Swap4And5 WoW5 WoW3>
        <Else If Win5 Is WoW4>
            <Swap4And5 WoW5 WoW4>
        <EndIf>
    <Hotkey Alt Ctrl Shift 6>
        <If Win5 Is WoW1>
            <Swap4And5 WoW5 WoW1>
        <Else If Win5 Is WoW2>
            <Swap4And5 WoW5 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 7>
        <EndIf>
    <Hotkey Alt Ctrl Shift 5>
        <If Win5 Is WoW3>
            <Swap3And5 WoW5 WoW3>
        <Else If Win5 Is WoW4>
            <Swap3And5 WoW5 WoW4>
        <EndIf>
    <Hotkey Alt Ctrl Shift 4>
        <If Win5 Is WoW1>
            <Swap3And5 WoW5 WoW1>
        <Else If Win5 Is WoW2>
            <Swap3And5 WoW5 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 5>
        <EndIf>
    <Hotkey Alt Ctrl Shift 3>
        <If Win3 Is WoW4>
            <DoHotkey Hotkey Alt Ctrl Shift 9>
        <Else If Win4 Is WoW4>
            <DoHotkey Hotkey Alt Ctrl Shift minus>
        <EndIf>
    <Hotkey Alt Ctrl Shift 2>
        <If Win5 Is WoW1>
            <Swap2And5 WoW4 WoW1>
        <Else If Win5 Is WoW2>
            <Swap2And5 WoW4 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 8>
        <EndIf>
    <Hotkey Alt Ctrl Shift 1>
        <If Win5 Is WoW3>
            <Swap1And5 WoW4 WoW3>
        <Else If Win5 Is WoW5>
            <Swap1And5 WoW4 WoW5>
        <EndIf>
    <Hotkey Alt Ctrl Shift F12>
        <If Win2 Is WoW4>
            <DoHotkey Hotkey Alt Ctrl Shift 2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 3>
        <EndIf>
    <Hotkey Alt Ctrl Shift F11>
        <If Win5 Is WoW1>
            <Swap1And5 WoW4 WoW1>
        <Else If Win5 Is WoW2>
            <Swap1And5 WoW4 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift 1>
        <EndIf>
    <Hotkey Alt Ctrl Shift F10; Alt Ctrl F4>
        <If Win1 Is WoW4>
            <DoHotkey Hotkey Alt Ctrl Shift F11>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F12>
        <EndIf>
    <Hotkey Alt Ctrl Shift F9; Alt Ctrl F5>
        <If Win1 Is WoW5>
            <DoHotkey Hotkey Alt Ctrl Shift F1>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F3>
        <EndIf>
    <Hotkey Alt Ctrl Shift F8>
        <If Win5 Is WoW3>
            <Swap2And5 WoW5 WoW3>
        <Else If Win5 Is WoW4>
            <Swap2And5 WoW5 WoW4>
        <EndIf>
    <Hotkey Alt Ctrl Shift F7>
        <If Win5 Is WoW1>
            <Swap2And5 WoW5 WoW1>
        <Else If Win5 Is WoW2>
            <Swap2And5 WoW5 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F8>
        <EndIf>
    <Hotkey Alt Ctrl Shift F6>
        <If MouseIsOverWindow WoW1>
            <DoHotkey Hotkey Alt Ctrl Shift Oem5>
        <EndIf>
    <Hotkey Alt Ctrl Shift F5>
        <If MouseIsOverWindow WoW3>
            <DoHotkey Hotkey Alt Ctrl Shift Q>
        <Else If MouseIsOverWindow WoW2>
            <DoHotkey Hotkey Alt Ctrl Shift A>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F6>
        <EndIf>
    <Hotkey Alt Ctrl Shift F4>
        <If Win3 Is WoW5>
            <DoHotkey Hotkey Alt Ctrl Shift 4>
        <Else If Win4 Is WoW5>
            <DoHotkey Hotkey Alt Ctrl Shift 6>    
        <EndIf>
    <Hotkey Alt Ctrl Shift F3>
        <If Win2 Is WoW5>
            <DoHotkey Hotkey Alt Ctrl Shift F7>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F4>
        <EndIf>
    <Hotkey Alt Ctrl Shift F2>
        <If Win5 Is WoW3>
            <Swap1And5 WoW5 WoW3>
        <Else If Win5 Is WoW4>
            <Swap1And5 WoW5 WoW4>
        <EndIf>
    <Hotkey Alt Ctrl Shift F1>
        <If Win5 Is WoW1>
            <Swap1And5 WoW5 WoW1>
        <Else If Win5 Is WoW2>
            <Swap1And5 WoW5 WoW2>
        <Else>
            <DoHotkey Hotkey Alt Ctrl Shift F2>
        <EndIf>

  7. #7

    Default

    Part Three

    Code:
    <Hotkey NumLockOn Alt Ctrl Shift T>
        <If HotkeysAreOn>
            <TurnHotkeysOff>
        <EndIf>
     
    <Hotkey Alt Ctrl X>
        <DisplayVars>
        <If MouseIsOverWindow WoW5>
            // make WoW5 the main window
            <DoHotkey Hotkey Alt Ctrl Shift F9>
        <Else If MouseIsOverWindow WoW4>
            // make WoW4 the main window
            <DoHotkey Hotkey Alt Ctrl Shift F10>
        <Else>
            //make WoW3, WoW2 or WoW1 the main window
            <DoHotkey Hotkey Alt Ctrl Shift F5>
        <EndIf>
    <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>
    <Hotkey 0-9, Minus>
    <SendLabel w1, w2, w3, w4, w5>
    <Key %Trigger%> 
    <Hotkey Alt Ctrl L>
        <SetTaskbarAutoHide On>
        <LaunchAndRename Local WoW5>
        <LaunchAndRename Local WoW4>
        <LaunchAndRename Local WoW3>
        <LaunchAndRename Local WoW2>
        <LaunchAndRename Local WoW1>
        <DefaultWindowLayout>
    <Hotkey pause>
        <sendpc local>
        <If HotkeysAreOff>
           <TurnHotkeysOn>
           <SetButtonColors ON 0x00FF00 0x0F0F0F>
           <SetButtonText ON HKN>
        <Else>
           <TurnHotkeysOff>
           <SetButtonColors ON 0xfF0000 0xffFFff >
           <SetButtonText ON off>
        <EndIf>
    <Hotkey Alt Ctrl A>
        <Toggle>
            <sendpc local>
            <SetButtonColors ACT 0x00FF00 0x0F0F0F>
            <SetButtonText ACT AWT>
            <SetActiveWindowTrackingDelay 0>
            <SetActiveWindowTracking On> 
        <Toggle>
            <sendpc local>
            <SetButtonColors ACT 0xfF0000 0xffFFff >
            <SetButtonText ACT off>
            <SetActiveWindowTracking Off> 
    <Hotkey Alt Ctrl D>
        <SetVar Win1 WoW5>
        <SetVar Win2 WoW4>
        <SetVar Win3 WoW3>
        <SetVar Win4 WoW2>
        <SetVar Win5 WoW1>
        <DefaultWindowLayout>
    You may notice that it's rather long and convoluted, this is because of a limitation in HotKeyNet that prevents nesting of If statements within each other or user defined commands.

Tags for this Thread

Posting Rules

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