Open window Red vid with maximum

When you run this code, it will open a window with the default size:

View [
    text "window open with default size"
]

      

If you give a size explicitly, it will open a window with this size:

View [
    size 400x400
    text "window open with fixed size"
]

      

But how do I open the max size / max window?

+3


source to share


1 answer


Here's what kind works now, at least for Microsoft Windows

offset: 0x60
max-size: system/view/screens/1/size - offset
view [
    size max-size
    text "window open with max screen size"
]

      

But this is because of the way it is currently being handled, as you can see most of the windowing functionality is currently not implemented:



enter image description here

(based on chat):

+1


source







All Articles