-
Dual monitor help!
Ok. So i just got another 19" Monitor and ive got it all set up, But when i drag one WoW window to the second monitor as windowed not maximized it stays there. But when i maximize it it goes back to the original monitor. If someone could tell me how to get it to stay there it would be greatly appreciated. :D
-
I didn't do any odd messing about with WoW windows when I added my second monitor, I just set it up in Keyclone, told it to use the second monitor and bingo.
-
Ya, im not using Keyclone though :( Im using autohotkey.
-
Might have a look at http://www.wowfriends.net/?p=2294 and http://www.wowfriends.net/forums/vie...6630d47638e8d6
He is doing some interesting stuff with Jamba / macros / HotKeyNet and 3 monitors.
-
yeh will have to tweak 1024 for yer screen rez
just hit ctr-shfit-alt up down left right arrows for it to work
or modify to taste :P
Code:
!^+up::
WinGet, active_id, ID, A
WinMaximize, ahk_id %active_id%
return
!^+down::
WinGet, active_id, ID, A
WinMinimize, ahk_id %active_id%
return
!^+right::
WinGet, mm, MinMax, A
WinRestore, A
WinGetPos, X, Y,,,A
WinMove, A,, X+1024, Y
if(mm = 1){
WinMaximize, A
}
return
!^+left::
WinGet, mm, MinMax, A
WinRestore, A
WinGetPos, X, Y,,,A
WinMove, A,, X-1024, Y
if(mm = 1){
WinMaximize, A
}
return
!^+end::
WinGet, mm, MinMax, A
WinRestore, A
return