during testing, myriad of ways . i think that height is hardcoded in Mode="moderequesteder" and mode="Ask" if user chooses to to select.
this MCVE shows that HEIGHT do not change neither to smaller, neither to higher HEIGHT, no matter what you choose, however WIDTH changes accordingly
Code: Select all
CreateDisplay(2, {width=800,height=600,Mode = "fullscreen", Active=True})
OpenDisplay(2)
NPrint("Current"..GetAttribute(#DISPLAY, 2, #ATTRRAWWIDTH ).. " x " ..GetAttribute(#DISPLAY, 2, #ATTRRAWHEIGHT))
NPrint("MAX ..."..GetAttribute(#DISPLAY, 2,#ATTRMAXWIDTH ).. " x " ..GetAttribute(#DISPLAY, 2, #ATTRRAWHEIGHT))
WaitLeftMouse()
CloseDisplay(2)
CreateDisplay(3, {width=800,height=600,ScrWidth=#NATIVE, ScrHeight=#NATIVE,Mode = "ModeRequester", Active=True})
OpenDisplay(3)
DebugPrint("Current"..GetAttribute(#DISPLAY, 3, #ATTRRAWWIDTH ).. " x " ..GetAttribute(#DISPLAY, 3, #ATTRRAWHEIGHT))
DebugPrint("MAX ..."..GetAttribute(#DISPLAY, 3,#ATTRMAXWIDTH ).. " x " ..GetAttribute(#DISPLAY, 3, #ATTRRAWHEIGHT))
WaitLeftMouse()