Re: Trying to Set-Up Tri-Box
Quote:
Originally Posted by roknroll
Hey, just following the sticky guide above on how to multi-box on one computer. I've followed all the instructions, but I can not get the .bat file to launch my three WoWs. I installed Maximizer in each of the directories (WoW1, WoW2, and WoW3).
My .bat file looks like this:
Quote:
REM batch file to launch 3 evenly spaced wows
REM Left monitor
C:\Program Files\WoW1\maximizer.exe --margin 480,30,0,0
REM top of right mon
C:\Program Files\WoW2\maximizer.exe --margin 0,570,0,840
REM bottom of right mon
C:\Program Files\WoW3\maximizer.exe --margin 0,570,840,0
If I copy and paste one of the file paths into the command prompt, it opens the window fine. But when I try to run the .bat file i get a quick flash of the MS DOS prompt window and then nothing. Any help would be great!
Hi,
The space in "Program Files" probably screws it up. Try the following:
[code:1]
REM batch file to launch 3 evenly spaced wows
REM Left monitor
"C:\Program Files\WoW1\maximizer.exe" --margin 480,30,0,0
REM top of right mon
"C:\Program Files\WoW2\maximizer.exe" --margin 0,570,0,840
REM bottom of right mon
"C:\Program Files\WoW3\maximizer.exe" --margin 0,570,840,0[/code:1]
Or just move your WoW folders to C:\WoW1 etc.
If you still have problems put "pause" as the last line of your .bat file and it won't close the command window allowing you to see the output.
Re: Trying to Set-Up Tri-Box
Quote:
Originally Posted by thinus
Hi,
The space in "Program Files" probably screws it up. Try the following:
Or just move your WoW folders to C:\WoW1 etc.
If you still have problems put "pause" as the last line of your .bat file and it won't close the command window allowing you to see the output.
WE HAVE A WINNER!!! I just moved it to the C directory and adjusted the .bat file. Worked like a charm.
I know I don't have to use maximizer, I was using keyclone just fine without I was just trying to get a smooth look on my single 20" monitor. Basically just wanted it to look like the sticky guide above.