Close
Showing results 1 to 5 of 5

Hybrid View

  1. #1

    Default

    I'm not really sure I understand what you're doing. If you're running WoW1 on Monitor 1 and trying to run WoW2 on Monitor 2, then you don't need PiP. PiP {Picture in Picture} is what you use if you need to fit multiple instances on the same monitor and wish to do so by using insetting the slaves within the master's "field of play." Once you move WoW2 to 1990, it falls completely outside the bounds of the window you created for WoW1.

    If you're trying to run one account on one monitor and another on a second, just use the standard resizeandposition subroutines found in most scripts.

    As far as the alt tabbing and minimizing, I don't know what's going on there. Are you running in fullscreen? Use Windowed. What are you launching from? What does your script look like for your launch?
    Blog : Herding Khats
    Team : Kina - Çroaker - Messkit - Lìfetaker - Wìdowmaker
    Newbie Guides : Multiboxing Vol. 1 - Multiboxing Vol. 2 - HotKeyNet - Jamba
    The Almighty Lax made a liar out of me, apparently I DO get prizes for it.
    *Commences Wielding the Banhammer like there's piñatas up in here and I'm Lady Thor*

    _ Forum search letting you down? Use the custom Google search _

  2. #2

    Default

    Quote Originally Posted by Khatovar View Post
    I'm not really sure I understand what you're doing. If you're running WoW1 on Monitor 1 and trying to run WoW2 on Monitor 2, then you don't need PiP. PiP {Picture in Picture} is what you use if you need to fit multiple instances on the same monitor and wish to do so by using insetting the slaves within the master's "field of play." Once you move WoW2 to 1990, it falls completely outside the bounds of the window you created for WoW1.

    If you're trying to run one account on one monitor and another on a second, just use the standard resizeandposition subroutines found in most scripts.

    As far as the alt tabbing and minimizing, I don't know what's going on there. Are you running in fullscreen? Use Windowed. What are you launching from? What does your script look like for your launch?
    I'm trying to launch 2 accounts on the same screen in PiP which would be screen 2, right now just the WoW 1 window works on screen 2 and WoW 2 just won't stay open inside of the WoW 1 window. I play in windowed mode for both accounts, they both worked in PiP on screen 1 but just not on the other 2 for some reason.

    This is my whole script for HKN so if you find anything that might be preventing it then just say.

    //-----------------------------------------------------------
    // PRESS CTRL R TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Ctrl R>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW1>
    <RenameWin "World of Warcraft" WoW2>

    //-----------------------------------------------------------
    // SUBROUTINE TO LAUNCH AND RENAME A COPY OF WOW.
    //-----------------------------------------------------------
    <Command LaunchAndRename>
    <SendPC %1%>
    <Run "c:\Program Files (x86)\World of Warcraft\WoW.exe">
    <RenameTargetWin %2%>

    //-----------------------------------------------------------
    // HOTKEY TO LAUNCH AND RENAME BOTH WOW'S.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Alt Ctrl L>
    <LaunchAndRename Local WoW1>
    <LaunchAndRename Local WoW2>

    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES
    //-----------------------------------------------------------
    <Label w1 Local SendWinM WoW1>
    <Label w2 Local SendWinM WoW2>

    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn A-Z, 0-9, Plus, Minus, except W, A, S, D, Q, E>
    <SendLabel w1, w2>
    <Key %Trigger%>

    //-----------------------------------------------------------
    // DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
    // ADD MORE KEYS IF YOU WANT.
    //-----------------------------------------------------------
    <MovementHotkey ScrollLockOn up, down, left, right>
    <SendLabel w1, w2>
    <Key %Trigger%>

    //-----------------------------------------------------------
    // 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>
    <ClickMouse %TriggerMainKey%>

    //----------------------------------------------------------------
    // RENAME WINDOWS AND REMOVE BORDERS
    //----------------------------------------------------------------
    <Hotkey Ctrl R>
    <RenameWin World WoW1>
    <RemoveWinFrame>
    <RenameWin World WoW2>
    <RemoveWinFrame>

    //----------------------------------------------------------------
    // SET PIP CONFIGURATION
    // Usage: <SetPip BigWindowName LittleWindowName>
    // This command is called by <Hotkey F1> which is defined below.
    //----------------------------------------------------------------
    <Command SetPip>
    <TargetWin %2%>
    <SetWinSize 600 500>
    <SetWinPos 1325 0>
    <TargetWin %1%>
    <SetWinPos 1990 0>
    <SetWinSize 1925 1170>
    <TargetWin %2%>
    <SetForegroundWin>
    <UpdateWin>
    <TargetWin %1%>
    <SetWinRegion 1990 0 600 500>
    <SetForegroundWin>

    //----------------------------------------------------------------
    // TOGGLE PIP CONFIG WITH HOTKEY
    //----------------------------------------------------------------
    <Hotkey ScrollLockOn F1>
    <Toggle>
    <SetPip WoW1 WoW2>
    <Toggle>
    <SetPip WoW2 WoW1>

Posting Rules

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