multiple display on fullscreen
Posted: Thu Apr 11, 2024 7:28 pm
I cerated a @DISPLAY in fullscreen mode then i tried to create a couple of other displays on smaller size let's say 100x300. When try to open one of those displays I get an error "Unable to change display size to 100x300" it seems that Hollywood is focused on the display 0 (the one i fullscreenmode) and then it tries to change the size but is not possible not being windowed.
Should I insted create a display with the size of the screen rather than one on fullscreeen mode?
please advise
Should I insted create a display with the size of the screen rather than one on fullscreeen mode?
Code: Select all
@DISPLAY 1,{Title = "screen", Mode="FullScreen", Width=#NATIVE, Height=#NATIVE, Color = #BLACK}
D_W = GetAttribute(#DISPLAY,1 , #ATTRMAXWIDTH)
D_H = GetAttribute(#DISPLAY,1 , #ATTRMAXHEIGHT)
CreateDisplay( 2,{ X=#RIGHT, Y=#CENTER, Width=100, Height=300, Color = #SILVER})
CreateDisplay( 3,{ X=#LEFT, Y=#CENTER, Width=100, Height=300, Color = #SILVER})
OpenDisplay(2)