Close
Showing results 1 to 10 of 46

Threaded View

  1. #32

    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

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
  •