I'm dual-boxing with hotkeynet. What I'm looking for are two macros to change the Resolution Scale (50% and 80%) of a WoW client without affecting the actual window size. I am running both WoW Clients in windowed mode at the same window size (1280x600).

So far I've found
Code:
/run local nr = "1024x480"; if GetCVar("gxNewResolution") == nr then nr = "640x300" else nr = "1024x480" end; SetCVar("gxNewResolution", nr); RestartGx();
and
Code:
/run local nr = "640x300"; if GetCVar("gxNewResolution") == nr then nr = "1024x480" else nr = "640x300" end; SetCVar("gxNewResolution", nr); RestartGx();
When I run these it changes the size of the window. However, I need the Window size of both clients to stay at 1280x600,
but change the Resolution Scale from 80% (1024x480) to 50% (640x300) and opposite with the other macro.