Close
Page 6 of 26 FirstFirst ... 4 5 6 7 8 16 ... LastLast
Showing results 51 to 60 of 251
  1. #51

    Default

    Is there a trial version of all this stuff? I can afford this stuff but everytime I put something on my credit card I have to explain it to the wife. I don't want to do that unless this is what I will be using.
    Dragonmaw - Alliance

    80's - 5 Shaman - Aarggh - Barghh - Cargghh - Daargghh - Gaargghh, 1 DK Rottinggarg, Priest Aargghh, Druid Intestine, Locks Aargghhjr Illidanjr Diablogurl.

  2. #52

    Default

    Quote Originally Posted by 'bhec7715',index.php?page=Thread&postID=146174#pos t146174
    Is there a trial version of all this stuff? I can afford this stuff but everytime I put something on my credit card I have to explain it to the wife. I don't want to do that unless this is what I will be using.
    I think you question was already answered in the other thread but the answer is yes, a 7-day free trial is available. Lax also mentions this earlier in this thread.
    Guilds: Spirit of St Louis/Saint Louis
    US- Trollbane/Zuljin Horde and Alliance


  3. #53

    Default

    Quote Originally Posted by 'Lax',index.php?page=Thread&postID=145937#post1459 37
    My brain can't seem to wrap around this, so I would like some assistance.

    I don't know what to put for my setup:
    Two 1680x1050 20.1 in monitors, secondary to the left of the main, maximum of 4 wows. Main on main monitor, and 3 alts on the left like zanthor's seup.

    Any help would be appreciated. (and the windows not distort)
    Zanthor's setup is already showing its age, and hes been busy so he hasnt gotten it updated I guess

    So here's what to do. If you're using Zanthor's multi.iss, replace it with this:

    Code:
    function main(int clients)
    {
    	while ${Sessions} < ${clients} - 1
    		waitframe
    	variable int nSession
    	nSession:Set["${Session.Right[-2]}"]
    
        run autolayout 4 outer left    
    
    	/* Setup Hotkeys */
    	switch ${nSession}
    	{
    	case 1
    		globalbind is${nSession}_key "Ctrl+F1" "windowvisibility foreground;relay all press Ctrl+F1"
    		proc 1 on 2 on 3 on 4 on
    		break
    	case 2
    		globalbind is${nSession}_key "Ctrl+F2" "windowvisibility foreground;relay all press Ctrl+F2"
    		proc 1 on 2 on 3 on 4 on
    		break
    	case 3
    		globalbind is${nSession}_key "Ctrl+F3" "windowvisibility foreground;relay all press Ctrl+F3"
    		proc 1 on 2 on 3 on 4 on
    		break
    	case 4
    		globalbind is${nSession}_key "Ctrl+F4" "windowvisibility foreground;relay all press Ctrl+F4"
    		proc 1 on 2 on 3 on 4 on
    		break
    	case 5
    		globalbind is${nSession}_key "Ctrl+F5" "windowvisibility foreground;relay all press Ctrl+F5"
    		proc 1 on 2 on 3 on 4 on
    		break
    	}
    
    	/* Launch Repeater */
    	run repeater
    	ui -load skins/wowskin/wowskin
    	ui -load -skin WoWSkin repeater
    }
    I ripped out his window positioning, and set it to use autolayout from the new WindowSnapper -- you will need to download the new version of that and probably want the new repeater (the ones in his zip are old).

    You want space for 4 windows, so that's where the 4 comes in in the run autolayout line. Outer means it's going to be on the outside of your monitor instead of making room on the inside, and Left means you want them on the left of your main window.

    If you're not using his setup that's fine, you just need to run that command in each session (whether it is automatic or not).


    p.s. For those looking for PiP in EverQuest II or Lord of the Rings Online, an Inner Space update today makes them work. YMMV with EQ2 (by its design). LOTRO has a "feature" where it likes to reposition the window, so that's annoying when you set the main window size, but WindowSnapper and Repeater (and ClickBoxer, etc since that's built with the same things Repeater is built with, just with a GUI) work:

    LOTRO bottom left, EQ2 next to it, WoW main. WindowSnapper autolayout.
    Will this still work with his updated scripts?

  4. #54

    Default

    Absolutely, it looks like he now has the current versions of WindowSnapper, AutoLayout and Repeater included. The only change you need to make to his multi.iss now is for your desire of room for 4 windows instead of 5. His multi.iss script has this line:
    Code:
    	run autolayout outer left
    Change it to
    Code:
    	run autolayout 4 outer left
    Lax
    Author of ISBoxer
    Video: ISBoxer Quick Start

  5. #55

    Default

    Quote Originally Posted by 'Lax',index.php?page=Thread&postID=146295#post1462 95
    Absolutely, it looks like he now has the current versions of WindowSnapper, AutoLayout and Repeater included. The only change you need to make to his multi.iss now is for your desire of room for 4 windows instead of 5. His multi.iss script has this line:
    Code:
    	run autolayout outer left
    Change it to
    Code:
    	run autolayout 4 outer left
    Question: Sometimes I dualbox, will this work with just 2 windows as well? (Main on primary monitor and alt on the side of the secondary, instead of main on the primary and 3 alts on the side of secondary.)

  6. #56

    Default

    Quote Originally Posted by 'Dragonshadow',index.php?page=Thread&postID=146368 #post146368
    Quote Originally Posted by 'Lax',index.php?page=Thread&postID=146295#post1462 95
    Absolutely, it looks like he now has the current versions of WindowSnapper, AutoLayout and Repeater included. The only change you need to make to his multi.iss now is for your desire of room for 4 windows instead of 5. His multi.iss script has this line:
    Code:
    	run autolayout outer left
    Change it to
    Code:
    	run autolayout 4 outer left
    Question: Sometimes I dualbox, will this work with just 2 windows as well? (Main on primary monitor and alt on the side of the secondary, instead of main on the primary and 3 alts on the side of secondary.)
    Yes. Just enter the number of copies you are running in place of the 4. The default is 5 which is why zanthor left the number out of his line.

    run autolayout 2 outer left

    That would do 2 if wish to. I am not sure how the window will size up using 2 as I have not tried the lower numbers. I am sure Lax will chime in and tell us.
    Guilds: Spirit of St Louis/Saint Louis
    US- Trollbane/Zuljin Horde and Alliance


  7. #57

    Default

    Quote Originally Posted by 'moosejaw',index.php?page=Thread&postID=146395#pos t146395
    Quote Originally Posted by 'Dragonshadow',index.php?page=Thread&postID=146368 #post146368
    Quote Originally Posted by 'Lax',index.php?page=Thread&postID=146295#post1462 95
    Absolutely, it looks like he now has the current versions of WindowSnapper, AutoLayout and Repeater included. The only change you need to make to his multi.iss now is for your desire of room for 4 windows instead of 5. His multi.iss script has this line:
    Code:
    	run autolayout outer left
    Change it to
    Code:
    	run autolayout 4 outer left
    Question: Sometimes I dualbox, will this work with just 2 windows as well? (Main on primary monitor and alt on the side of the secondary, instead of main on the primary and 3 alts on the side of secondary.)
    Yes. Just enter the number of copies you are running in place of the 4. The default is 5 which is why zanthor left the number out of his line.

    run autolayout 2 outer left

    That would do 2 if wish to. I am not sure how the window will size up using 2 as I have not tried the lower numbers. I am sure Lax will chime in and tell us.
    You missed my point completely. I don't want to have to edit the file every time I switch between dual and quad.

  8. #58

    Default

    In that case:
    Code:
    run autolayout ${clients} outer left
    This will automatically use whichever number of clients you give it. You may find that you like the windows on the left to be a specific size, though, since the size of the clients on the left is going to be inversely proportional to the number you give it (i.e. 2 is bigger than 3 which is bigger than 4 which is bigger than 5). If you find yourself wanting them a specific size, just put it at that specific number of clients instead of using the number you pass into wow.iss.

    Edit: Yep, I typoed "autosnapper" instead of "autolayout". Fixed, thanks noids :P
    Lax
    Author of ISBoxer
    Video: ISBoxer Quick Start

  9. #59

    Default

    autosnapper=autolayout I assume :P

    Anyway cheers again Lax. Have got the windows sorted out, The new proc affinitys are working well with my system, sitting on 45 throughout the old world. I always have single figures around shatt regardless of my setup so not a worry there as a new system is in the works. I now have a setup using IS equivalent to my old setup with keyclone, but with much faster windowswapping. This really lets the FTL setup shine IMO and will be awesome when I start PvPing more as I get to 80.

    Cheers

  10. #60

    Default

    Quote Originally Posted by 'Lax',index.php?page=Thread&postID=146496#post1464 96
    In that case:
    Code:
    run autosnapper ${clients} outer left
    This will automatically use whichever number of clients you give it. You may find that you like the windows on the left to be a specific size, though, since the size of the clients on the left is going to be inversely proportional to the number you give it (i.e. 2 is bigger than 3 which is bigger than 4 which is bigger than 5). If you find yourself wanting them a specific size, just put it at that specific number of clients instead of using the number you pass into wow.iss.
    I think thats exactly what I wanted, I'll have to try it. Thank you.
    Now if only blizz would let us have an action button, then I'd be extremely happy.

Similar Threads

  1. Repeater issue
    By Korruptor in forum Software Tools
    Replies: 7
    Last Post: 05-16-2009, 03:49 PM
  2. Repeater(IS)
    By SCMalone1770 in forum Software Tools
    Replies: 4
    Last Post: 01-25-2009, 08:36 PM
  3. Shoot Em Up - Innerspace & Repeater Demo
    By zanthor in forum Movies
    Replies: 0
    Last Post: 12-15-2008, 09:34 AM
  4. IS:WindowSnapper - PIP on Speed
    By zanthor in forum Software Tools
    Replies: 53
    Last Post: 11-06-2008, 04:13 AM
  5. Replies: 7
    Last Post: 11-01-2008, 04:42 AM

Posting Rules

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