Close
Showing results 1 to 2 of 2

Threaded View

  1. #1

    Default [WoW]PiP 5 clients

    Trying to get the PiP to work. The 4 minions show up on the screen in place and viewable, however the main wow1 only shows like 25% of the window and I see the desktop background. I also am trying to remove the window border and the code I used gave an error that window could not be found. I am using a 43 inch display with 3840x2160 but I am sure that those are the numbers I should be using. Any help would be greatly appreciated.


    Code:
    //================================================================
    // SAMPLE SCRIPT FOR TWO WOW'S ON ONE PC
    //
    // 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
    //================================================================
     
    //-----------------------------------------------------------
    // PRESS CTRL R, CTRL R, CTRL T TO RENAME WOW'S IF YOU LAUNCH THEM MANUALLY
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Ctrl R>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW1>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW2>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW3>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW4>
    <SendPC local>
    <RenameWin "World of Warcraft" WoW5>
     
    <Hotkey ScrollLockOn Ctrl T>
    <SendPC local>
    <RenameWin WoW1 "World of Warcraft">
    <SendPC local>
    <RenameWin WoW2 "World of Warcraft">
    <SendPC local>
    <RenameWin WoW3 "World of Warcraft">
    <SendPC local>
    <RenameWin WoW4 "World of Warcraft">
    <SendPC local>
    <RenameWin WoW5 "World of Warcraft">
    
    
    <Command SetPip>
     
       <SendPC Local>
           <SendWin %1%>
              <SetWinSize 3840 2160>
              <SetWinPos 0 0>
              <SetWinRegion 0 0 400 400>
              <SetWinRegion 0 400 400 400>
              <SetWinRegion 0 800 400 400>
              <SetWinRegion 0 1200 400 400>
          <SendWinM %2%>
              <SetWinSize 400 400>
              <SetWinPos 0 0>     
          <SendWinM %3%>
              <SetWinSize 400 400>
              <SetWinPos 0 400>     
          <SendWinM %4%>
              <SetWinSize 460 420>
              <SetWinPos 0 800>     
         <SendWinM %5%>
               <SetWinSize 400 400>
               <SetWinPos 0 1200>
    
    
    //------------
     // TOGGLE PIP CONFIG WITH HOTKEY
     //------------
     <Hotkey ScrollLockOn F1>
     <Toggle>
     <SetPip WoW1 WoW2 WoW3 WoW4 WoW5>
     <Toggle>
     <SetPip WoW2 WoW1 WoW3 WoW4 WoW5>
     <Toggle>
     <SetPip WoW3 WoW1 WoW2 WoW4 WoW5>
     <Toggle>
     <SetPip WoW4 WoW1 WoW2 WoW3 WoW5> 
    <Toggle>
     <SetPip WoW5 WoW1 WoW2 WoW3 WoW4>
    
    
    
    
    
    
    
    
    //-----------------------------------------------------------
    // DEFINE MAIL LABELS FOR SENDING KEY STROKES
    //-----------------------------------------------------------
    <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>
     
    //-----------------------------------------------------------
    // DEFINE HOTKEYS FOR ALL KEY COMBINATIONS THAT WILL GET
    // SENT TO BOTH WOWS. ADD MORE KEY COMBO'S IF YOU WANT.
    //-----------------------------------------------------------
    <Hotkey ScrollLockOn Q, E, R, F, C, v, Numpad0, Numpad1, Numpad2; ScrollLockOn LSHIFT R; ScrollLockOn LSHIFT E; ScrollLockOn LSHIFT C; ScrollLockOn LSHIFT  Q; ScrollLockOn LSHIFT  F>
    <SendLabel w1, w2, w3, w4, w5>
    <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, w3, w4, w5>
          <ClickMouse %TriggerMainKey%>
                    <RestoreMousePos>
    Last edited by MiRai : 07-16-2019 at 07:14 PM Reason: [CODE] Tags

Posting Rules

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