Close
Showing results 1 to 5 of 5

Threaded View

  1. #3

    Default

    Quote Originally Posted by rocnroll View Post
    F3 will toggle WoW1 and WoW2 for PIP (my PIP is off a little for some reason).
    SetWinRegion and SetWinRect/SetWinPos are designed so the numbers match when there's no window frame. (You can remove the frames with RemoveWinFrame.) If you want to keep the frames it's easier to write your PIP code with AlwaysOnTop since nothing needs to match that way.

    F4 will toggle PIP off, but whichever window was PIP, stays small (I could resize it manually or click maximize). What wrong there?
    The size doesn't change because you didn't write anything that would change the size. Here's what your F4 hotkey does:

    Code:
        <If WinSizeIs WoW1 1680 1050> // FINDS BIG WINDOW
              <TargetWin WoW1>  // TARGETS BIG WINDOW
                    <SetWinRegion none> // REMOVES HOLE FROM BIG WINDOW
                    <SetForegroundWin> // MOVES BIG WINDOW TO FOREGROUND
                    <RestoreWinSize> // IF BIG WINDOW WAS MINIMIZED OR MAXIMIXZED, MAKES IT NORMAL AGAIN
                    <UpdateWin> // REDRAWS BIG WINDOW
    Last edited by Freddie : 09-04-2009 at 01:31 AM
    �Author of HotkeyNet and Mojo

Posting Rules

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