Close
Showing results 1 to 2 of 2

Hybrid View

  1. #1

    Default Maximizer PiP without keyclone

    Is this possible? I'm using Hotkeynet instead of keyclone, but every guide I've seen uses keyclone to config maximizer.

  2. #2

    Default

    Yes. HotkeyNet does maximizer stuff and PIP (picture in picture). It also lets you make hotkeys that toggle from one PIP configuration to another. For example, you can make a hotkey that toggles between these two pictures. This is just a simple example to illustrate the idea. You can have as many windows as you like on any number of displays in any arrangement. (Sample script below the pictures.)





    Code:
    //================================================================
    // PIP TOGGLING WITH WORLD OF WARCRAFT
    //
    // Requires HotkeyNet build 133 or higher.
    //
    // This sample shows how to place one WoW window
    // inside another. (With video this is called
    // picture in picture or PIP.) Each time you press
    // F1 the two windows switch positions.
    //================================================================
    
    //----------------------------------------------------------------
    // RENAME WINDOWS AND REMOVE BORDERS
    //----------------------------------------------------------------
    <Hotkey Ctrl R>
    <RenameWin World w1>
    <RemoveWinFrame>
    <RenameWin World w2>
    <RemoveWinFrame>
    
    //----------------------------------------------------------------
    // SET PIP CONFIGURATION
    // Usage: <SetPip BigWindowName LittleWindowName>
    // This command is called by <Hotkey F1> which is
    // defined below.  
    //----------------------------------------------------------------
    <Command SetPip>
    <TargetWin %2%>
       <SetWinSize 400 300>
       <SetWinPos  775 515>
    <TargetWin %1%>
       <SetWinPos 0 0>
       <SetWinSize 1200 900>
    <TargetWin %2%>
       <SetForegroundWin>
       <UpdateWin>
    <TargetWin %1%>
       <SetWinRegion 775 515 400 300>
       <SetForegroundWin>
    
    //----------------------------------------------------------------
    // TOGGLE PIP CONFIG WITH HOTKEY
    //----------------------------------------------------------------
    <Hotkey F1>
    <Toggle>
    <SetPip w1 w2>
    <Toggle>
    <SetPip w2 w1>
    
    //================================================================
    // END OF FILE
    //================================================================
    �Author of HotkeyNet and Mojo

Similar Threads

  1. Keyclone Maximizer
    By eliijah in forum Software Tools
    Replies: 4
    Last Post: 05-25-2009, 06:19 PM
  2. Keyclone Maximizer
    By Allestaria in forum Macros and Addons
    Replies: 1
    Last Post: 04-05-2009, 01:29 AM
  3. keyclone maximizer help please!!!
    By iceknight in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 03-09-2009, 04:57 PM
  4. keyclone maximizer PIP ?
    By danimaru in forum New Multi-Boxers & Support
    Replies: 6
    Last Post: 10-08-2008, 03:44 PM
  5. keyclone and Maximizer or keyclone's maximizer
    By Knobley in forum New Multi-Boxers & Support
    Replies: 5
    Last Post: 06-01-2008, 01:58 PM

Posting Rules

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