You can run a skin and macro if you wish, but you need to be aware that doing so will cause any macros that use standard (incUI) mouse coordinates to not work. They will run, but the mouse will move to the wrong screen location etc.

Solution:
In the macro you're running, locate these 2 lines of code:

CODE

Include incUI.mac
Call SetUI


In between these 2 lines, you need to add 3 new lines of macro code to tell the macro how you have your UI configured:

CODE

SetConst $uiOverrideAutoDetect = 1
SetConst $uiStretchOn = 0 // <- 0 (zero) means you have Stretch UI OFF, 1 (one) means ON
SetConts $uiChatMaxed = 0 // <- 0 (zero) means you have your chat window SMALL, 1 (one) means ENLARGED



[Edit] And yes, there was a typo when this was first posted, thanks for the corrections