sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] FullScreen v5.1.3 (25 April 2024)

    Scheduled Pinned Locked Moved Plugins
    285 Posts 79 Posters 388.1k Views 80 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A Offline
      Anton_S
      last edited by Anton_S

      Showcase
      New UI based on React and Material UI with light and dark themes.
      Dark theme
      Light theme

      Features

      • Click-and-drag UI by caption
      • Expand/collapse by clicking the caret at the upper-left corner
      • Snap UI to the edges of the viewport window (e.g by dragging to one of the view border)
      • Fade and unfade effects. If no cursor is present in the UI, the UI fades out - becomes semi-transparent.
      • Switching full screen now has 3 modes:
        • Primary: set full screen on main monitor
        • Associated: set full screen on the monitor the sketchup window is associated with
        • All: set full screen on all monitors by computing the bounding box all monitors and using that box as the new dimensions of the window.

      Requirements

      • SU2016 - SU2024 (tested on SU2024) Note: on SU2023 and later, the features are limited because SketchUp changed to a new, Qt-based framework, which I cannot hack
      • Windows operating system only! This will not work with Mac OS X.

      Download
      FullScreen can be installed via the SketchUcationTools extension or manually, from Plugin Store.

      You can also download at Google Drive

      1 Reply Last reply Reply Quote 0
      • GaieusG Offline
        Gaieus
        last edited by

        Wow... 😲

        Some notes (using Windows XP on this machine):

        1. First I was confused until I figured that
        • hiding the toolbars hides floatingtoolbars
        • and hiding the control bars hides the parts of the SU window where the dockedtoolbars are.
        1. There is already a menu item under Window > "Hide dialogs/Show dialogs" - so your "Child windows" option here is a redundant duplicate.
        2. When I hide the status bar, any VCB entry still works. This is a pretty good function! πŸ‘
          All in all, a very useful plugin - especially (for me) the "control bars" hiding function. Thank you very much! πŸ‘ πŸ‘ πŸ‘

        I have long wished to be able to hide my (what is here called) "control bars" so that when making tutorial videos or teaching SU online, they do not confuse and scare away beginners. πŸ˜„

        Gai...

        1 Reply Last reply Reply Quote 0
        • Rich O BrienR Online
          Rich O Brien Moderator
          last edited by

          Doesn't work on my Win7 64bit. Only Child Windows will toggle. I got toolbar chaos on install.

          Nice concept though πŸ‘


          Windows_Style.png

          Download the free D'oh Book for SketchUp πŸ“–

          1 Reply Last reply Reply Quote 0
          • GaieusG Offline
            Gaieus
            last edited by

            @unknownuser said:

            Doesn't work on my Win7 64bit.

            Too bad. Hopefully it can be fixed (as it works on my 32 bit XP). My laptop (with, of course, a much smaller screen where I could use it better than on my 22" desktop monitor) is 64 bit Win 7.


            Would there be a possibility to (instead of having a separate menu item to show and display the different elements) toggle them on/off? This would also allow to assign a single shortcut instead of two, different ones.

            Gai...

            1 Reply Last reply Reply Quote 0
            • GaieusG Offline
              Gaieus
              last edited by

              This is better than I thought. Here is what I did:

              1. Hid the control bar (with the docked toolbars - I only have them on the top in several rows)
              2. resized my window to extremely narrow (all toolbars by now would have been cluttered) - even narrower than my widest toolbar is - in fact, even the menu jumped into two rows now 😲
              3. resized my window back to a safe width (where all my toolbars can fit)
              4. unhid my control bar and nothing was cluttered!

              Thank you again - and really hope that those compatibility issues can be solved!

              Gai...

              1 Reply Last reply Reply Quote 0
              • A Offline
                Anton_S
                last edited by

                @unknownuser said:

                Doesn't work on my Win7 64bit. Only Child Windows will toggle. I got toolbar chaos on install.

                Nice concept though πŸ‘

                Yes, I knew it didn't work on win7 64 bit... Tested on my brothers laptop. I'm gonna mess with his laptop for a while and figure out a way.

                1 Reply Last reply Reply Quote 0
                • Rich O BrienR Online
                  Rich O Brien Moderator
                  last edited by

                  That'd be great πŸ‘

                  Download the free D'oh Book for SketchUp πŸ“–

                  1 Reply Last reply Reply Quote 0
                  • V Offline
                    Vicspa
                    last edited by

                    Yeah, that'd be great, thanks

                    1 Reply Last reply Reply Quote 0
                    • A Offline
                      Anton_S
                      last edited by

                      @gaieus said:

                      There is already a menu item under Window > "Hide dialogs/Show dialogs" - so your "Child windows" option here is a redundant duplicate.

                      No, its not. The "hide dialogs" hides windows such as entity info, model info, soften smooth edges, but doesn't hides ruby console, photo textures, component options, and other child windows with a certain class that could be hidden.

                      @gaieus said:

                      Would there be a possibility to (instead of having a separate menu item to show and display the different elements) toggle them on/off? This would also allow to assign a single shortcut instead of two, different ones.

                      It depends. Lets, say we have a "status_bar" option toggled. Checked: visible and Unchecked: hidden. And something happens: The user hides the status_bar using the other script. How would "status_bar" option know whatever it should be checked or unchecked? - Well, use set_validation_proc and let it ask every frame whatever the status_bar is hidden or not. I could make it like that, thought it will slow down sketchup:
                      @dan said:

                      Menu.set_validation_proc
                      Arguments:

                      menu_id: The id of a menu item on this menu. (The id is returned from the add_item method.)
                      block_proc: a block or proc object that will be invoked by Sketchup went it redraws the UI. (Complex conditionals and calling many other methods can slow down Sketchup!)

                      I could make it toggable, but its ur option: yes or no πŸ˜„

                      1 Reply Last reply Reply Quote 0
                      • GaieusG Offline
                        Gaieus
                        last edited by

                        @anton_s said:

                        No, its not. The "hide dialogs" hides windows such as entity info, model info, soften smooth edges, but doesn't hides ruby console, photo textures, component options, and other child windows with a certain class that could be hidden.

                        Okay, point taken (and I do understand this).

                        @anton_s said:

                        It depends. Lets, say we have a "status_bar" option toggled. Checked: visible and Unchecked: hidden. And something happens: The user hides the status_bar using the other script. How would "status_bar" option know whatever it should be checked or unchecked? - Well, use set_validation_proc and let it ask every frame whatever the status_bar is hidden or not. I could make it like that, thought it will slow down sketchup:

                        Point also taken (although I do not understand this)
                        πŸ˜„

                        Anyway, great plugin. Thanks a lot again! πŸ‘

                        I (mainly) use it to hide my "control bars" - although from now on, I may also have some (less frequently used) toolbars also open (or hidden this way).

                        And of course for my 64 bit, Win 7 laptop, the (hopefully easily) updated version will also be welcome! πŸ˜„

                        Gai...

                        1 Reply Last reply Reply Quote 0
                        • A Offline
                          Aerilius
                          last edited by

                          I've been waiting to hide the menu bar (no joke). Thank you!

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            Anton_S
                            last edited by

                            @anton_s said:

                            use set_validation_proc and let it ask every frame whatever the status_bar is hidden or not. I could make it like that, thought it will slow down sketchup

                            Have to take my thought back. I thought that set_validation_proc updates every frame, but it only updates once you entered the submenu that contains that item. So, yes I'll modify it to be toggled, including make it work on windows 7 64 bit.

                            Thankyou for your replies!! They make me πŸ˜„

                            1 Reply Last reply Reply Quote 0
                            • dereiD Offline
                              derei
                              last edited by

                              What exactly this plugin does? From Rich O'Brien's post (http://forums.sketchucation.com/download/file.php?id=81834&mode=view) I understand that it doesn't work... so let me rephrase: what this plugin SHOULD do?
                              Thank you very much.

                              P.S. - when posting plugins, it would be nice to add a image/animated GIF/movie to visually exemplify what the plugin does, if possible. Some users are already doing this, but I think it should be implemented as a "must" rule, for everybody.

                              DESIGNER AND ARTIST [DEREI.UK](http://derei.uk/l)

                              1 Reply Last reply Reply Quote 0
                              • thomthomT Offline
                                thomthom
                                last edited by

                                @unknownuser said:

                                I understand that it doesn't work...
                                ...on his system. For Gaieus it worked.

                                Thomas Thomassen β€” SketchUp Monkey & Coding addict
                                List of my plugins and link to the CookieWare fund

                                1 Reply Last reply Reply Quote 0
                                • A Offline
                                  Aerilius
                                  last edited by

                                  This plugin allows to turn off (or on) certain elements of the SketchUp interface. Something that wasn't possible before. For example someone has no need for a statusbar, or to make SketchUp fullscreen for a presentation. Maybe Anton can make a little gif animation for the first post (or I could do one).

                                  1 Reply Last reply Reply Quote 0
                                  • Rich O BrienR Online
                                    Rich O Brien Moderator
                                    last edited by

                                    Please do. One of us can add it to Anton's OP for those that want to visualise its use.

                                    Download the free D'oh Book for SketchUp πŸ“–

                                    1 Reply Last reply Reply Quote 0
                                    • A Offline
                                      Aerilius
                                      last edited by

                                      I've created an animated gif of how it looks:
                                      window styles.gif

                                      1 Reply Last reply Reply Quote 0
                                      • A Offline
                                        Anton_S
                                        last edited by

                                        @aerilius said:

                                        I've created an animated gif of how it looks:
                                        [attachment=0:1u31tebe]<!-- ia0 -->window styles.gif<!-- ia0 -->[/attachment:1u31tebe]

                                        Aerilius, thankyou really much!!! πŸ˜„ I'm just too lazy to add description myself.

                                        1 Reply Last reply Reply Quote 0
                                        • Rich O BrienR Online
                                          Rich O Brien Moderator
                                          last edited by

                                          I wanna play 😞

                                          Download the free D'oh Book for SketchUp πŸ“–

                                          1 Reply Last reply Reply Quote 0
                                          • guanjinG Offline
                                            guanjin
                                            last edited by

                                            Great, my Windows XP
                                            There is a problem, set the shortcut key to display the menu bar is invalid πŸ˜’ πŸ˜’
                                            66666666666666.gif

                                            I come from China, is to learn

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 14
                                            • 15
                                            • 1 / 15
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement