Quote: "but its not in the proper fullscreen when you dont see the bar up top at all"
The following code creates a window with no borders at all.
set window on : Maxx = 0
Style = 0 : Caption = 0 : IconNumber = 0
SET WINDOW LAYOUT Style, Caption, IconNumber
repeat
cls
ink rgb (0,225,0),0
box 200,200,240,220
ink rgb(255,255,0),0
a$ = "maximize the"
if Maxx = 1 then a$ = "restore the"
text 200,100,"Left click the green box to " + a$ + " window"
if mouseclick() = 1 : // LMB pressed?
x = mousex() : y = mousey()
if x >= 200 and x <= 240 and y >= 200 and y <= 220
if Maxx = 0
maximize window : Maxx = 1
else
restore window : Maxx = 0
endif
endif
endif
until spacekey() = 1
end
So many games to code.......so little time.