• Login
sketchucation logo sketchucation
  • Login
๐Ÿค‘ SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

[Plugin] Layers Panel 1.2.1

Scheduled Pinned Locked Moved Plugins
672 Posts 109 Posters 155.1k Views 109 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.
  • M Offline
    marcorigamonti74
    last edited by 27 Oct 2013, 10:37

    Hi! I have sketchup running on a MAC! When does this plug in will be ready for OS SISTEM?


    [mod=:ik2ekmon]Edited to remove unneeded quote[/mod:ik2ekmon]

    1 Reply Last reply Reply Quote 0
    • M Offline
      monmonred
      last edited by 27 Oct 2013, 14:38

      @jiminy-billy-bob said:

      Is your IE version 9 ? If so, try updating to IE10.
      I saw this bug on IE9, but could not find what's the issue...

      does IE mean differently here in sketchucation? i understand IE as internet explorer. ๐Ÿ˜„ anyway, i would go for that. thanks!

      +Greatness may be measured on how much we have lost for the betterment of mankind+

      1 Reply Last reply Reply Quote 0
      • M Offline
        monmonred
        last edited by 27 Oct 2013, 14:38

        @jiminy-billy-bob said:

        1. Nope, that's not possible. Unfortunately.
        2. Already working on it.
          3&4. Added to my todo list. ๐Ÿ˜„

        cool! we all will be waiting!

        i'm always checking for your updates. this plugin is so helpful! thanks!

        +Greatness may be measured on how much we have lost for the betterment of mankind+

        1 Reply Last reply Reply Quote 0
        • D Offline
          Dave R
          last edited by 27 Oct 2013, 14:40

          IE means the same thing here: Internet Explorer

          Etaoin Shrdlu

          %

          (THERE'S NO PLACE LIKE)

          G28 X0.0 Y0.0 Z0.0

          M30

          %

          1 Reply Last reply Reply Quote 0
          • J Offline
            jiminy-billy-bob
            last edited by 27 Oct 2013, 15:01

            It will be avaiblable on mac when it's ready. I don't know when.

            25% off Skatter for SketchUcation Premium Members

            1 Reply Last reply Reply Quote 0
            • T Offline
              tomot
              last edited by 27 Oct 2013, 22:46

              @jgb said:

              Since IE and WIN OS share many DLL's that contain these calls, an update to an IE DLL will update an OS DLL, but not necessarily vice versa. The app developer WILL have the latest IE on his system, and may use an "updated" OS call, but if you have an older IE, that call may fail. ๐Ÿ˜ฎ

              Your point is well taken! ๐Ÿ‘
              Which is why I have always maintained the decision to use Web dialogs in the first place, was a bad idea.

              Lets face it, a robust SU Ruby API should have been developed with its own graphical interface, not unlike the capability of Python. Its unfortunate Ruby was chosen over Python but that's a story for another day. Instead the SU API developers decided to hitch their horse to the I.E. cart which is about as popular as BING. and also alienates the OSX user.

              Lets face it, its almost 2014, and we still have not been able integrate simple graphical information along with user input in a simple format, without a programmer learning 3 other languages to make this work, and also having to be I.E. compliant ..... its downright laughable!

              [my plugins](http://thingsvirtual.blogspot.ca/)
              tomot

              1 Reply Last reply Reply Quote 0
              • T Offline
                tt_su
                last edited by 28 Oct 2013, 11:09

                @jiminy-billy-bob said:

                • Adds an options to hide the warning for outdated IE versions (This is intended for people with the warning appearing even though their IE is up to date)

                How are you detecting the IE version and which versions are detected incorrectly?

                1 Reply Last reply Reply Quote 0
                • J Offline
                  jiminy-billy-bob
                  last edited by 28 Oct 2013, 13:07

                  I display a warning with <!--[if IE 7]> <![endif]-->, etc.
                  But it seems to catch sometimes compatibility mode even when it's supposed to be disabled. Don't know why...

                  25% off Skatter for SketchUcation Premium Members

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    tt_su
                    last edited by 29 Oct 2013, 10:10

                    Some times? Not consistently?
                    Do you use the META tag to force embedded IE to use the actual IE IE render engine? Embedded IE is more conservative and it uses an older render mode even if you have a standard doctype. See the Lost Manual for more details: https://github.com/thomthom/sketchup-webdialogs-the-lost-manual/wiki/Doctype---Quirks-vs-Standard-vs-Superstandard

                    I also think that in one of the recent SU versions there was a registry setting set that would bump up this doc type one version (and that would affect older SU versions on the same machine.) So that might be the reason to why you get seemingly random reports of this. It might be they have versions that trigger the IE7 mode.

                    By the way, should you not be detecting older versions as well, not just IE7?
                    <!--[if lte IE 7]> <![endif]-->

                    1 Reply Last reply Reply Quote 0
                    • J Offline
                      jiminy-billy-bob
                      last edited by 29 Oct 2013, 10:52

                      That's interesting.
                      But how can we force the last version ? Let's say I put <meta http-equiv="X-UA-Compatible" content="IE=10"/>, how will IE8 behave with this ?

                      @tt_su said:

                      By the way, should you not be detecting older versions as well, not just IE7?
                      <!--[if lte IE 7]> <![endif]-->

                      Of course I do ๐Ÿ˜‰ , I just display different things depending on the version, so I have two of these.

                      25% off Skatter for SketchUcation Premium Members

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        tt_su
                        last edited by 29 Oct 2013, 17:14

                        @jiminy-billy-bob said:

                        That's interesting.
                        But how can we force the last version ? Let's say I put <meta http-equiv="X-UA-Compatible" content="IE=10"/>, how will IE8 behave with this ?

                        It will use the newest it can - IE8.
                        I'd recommend you set it to: <meta http-equiv="X-UA-Compatible" content="IE=edge"/> - it will then always pick the latest mode available. Like a normal browser would do. (See example in the SKUI project: https://github.com/thomthom/SKUI/blob/master/src/SKUI/html/window.html#L4 )

                        1 Reply Last reply Reply Quote 0
                        • J Offline
                          jiminy-billy-bob
                          last edited by 29 Oct 2013, 18:26

                          Ok thanks ! ๐Ÿ˜„

                          25% off Skatter for SketchUcation Premium Members

                          1 Reply Last reply Reply Quote 0
                          • H Offline
                            huckrorick
                            last edited by 2 Nov 2013, 19:01

                            any progress on not updating scenes and changing layers activated in a scene?

                            1 Reply Last reply Reply Quote 0
                            • M Offline
                              monmonred
                              last edited by 2 Nov 2013, 19:25

                              just thank you. jiminy-billy-bob! are you working on the option to hide/show multiple layers at a time? can this also have a hotkey?

                              brilliant work!

                              +Greatness may be measured on how much we have lost for the betterment of mankind+

                              1 Reply Last reply Reply Quote 0
                              • B Offline
                                Bob James
                                last edited by 2 Nov 2013, 20:50

                                @jiminy-billy-bob said:

                                New version 0.7 beta !

                                Changelog :

                                • Added a dark bar at the top to minimize/maximize the dialog
                                • Added CTRL+G : Group selected layers
                                • Added CTRL+SHIFT+G : Ungroup layers
                                • Added CTRL+A : Select all
                                • Added CTRL+E : Merge selected layers
                                • Added different color for groups
                                • Layer0 is now selectable
                                • Fix bug with sorted groups
                                • Potential fix for IE version bug

                                Super improvements - have made a donation

                                i7-4930K 3.4Ghz, 2x GTX780 6GB, 32GB DDR3-1600 ECC, OCZ Vertex 4 500GB, WD Black 3TB, 32TB NAS, 4x 27" Monitors, SpaceMouse Pro, X-keys XK-60

                                1 Reply Last reply Reply Quote 0
                                • J Offline
                                  jiminy-billy-bob
                                  last edited by 2 Nov 2013, 21:28

                                  @huckrorick said:

                                  any progress on not updating scenes and changing layers activated in a scene?

                                  Did you miss version 0.6 ? ๐Ÿ˜‰

                                  @jiminy-billy-bob said:

                                  New version 0.6 beta !

                                  • Fix scene auto-update (This is now an option)

                                  @monmonred said:

                                  just thank you. jiminy-billy-bob! are you working on the option to hide/show multiple layers at a time? can this also have a hotkey?

                                  If was trying to find a good way to do this. Hotkeys are a good idea, thanks.


                                  @bob james said:

                                  Super improvements - have made a donation

                                  Thanks a lot Bob !

                                  25% off Skatter for SketchUcation Premium Members

                                  1 Reply Last reply Reply Quote 0
                                  • R Offline
                                    Rich O Brien Moderator
                                    last edited by 2 Nov 2013, 23:06

                                    Hi Thomas,

                                    I get this consistently in SU8...

                                    Image 1.png

                                    ...not on SU2013

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

                                    1 Reply Last reply Reply Quote 0
                                    • J Offline
                                      jiminy-billy-bob
                                      last edited by 2 Nov 2013, 23:12

                                      I had this as well when trying to update it from the pluginstore inside SU8.
                                      (I use SU8 to check everything is right after an update)
                                      I deleted Layers Panel in the plugin folder and installed it again from the PS. Works fine... I thought it was a permission issue, but maybe the fact that you have it proves it's something else ?
                                      I already had this kind of problem in the past, with files not being properly replaced during an update with the PS.

                                      25% off Skatter for SketchUcation Premium Members

                                      1 Reply Last reply Reply Quote 0
                                      • TIGT Offline
                                        TIG Moderator
                                        last edited by 2 Nov 2013, 23:36

                                        If you have changed a script file etc then it might be advisable to popup a warning to tell the user to restart SketchUp to effect the changes - depends on how the menus/toolbars etc are written.
                                        BUT if you have a file that is still loading that shouldn't be - e.g. you have replaced it with a new file [with a different name] BUT that older now-not-needed legacy-file is left behind and is loaded/going-to-load-next-time, then your code really needs to do its own tidying up and delete these legacy-files as it itself loads; AND if so; then warn the user to restart SketchUp to effect all of the changes...

                                        TIG

                                        1 Reply Last reply Reply Quote 0
                                        • J Offline
                                          jiminy-billy-bob
                                          last edited by 2 Nov 2013, 23:43

                                          Nope, no new file, just updated ones. And restarting SU does not solve this...

                                          25% off Skatter for SketchUcation Premium Members

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 11
                                          • 12
                                          • 13
                                          • 14
                                          • 15
                                          • 33
                                          • 34
                                          • 13 / 34
                                          13 / 34
                                          • First post
                                            248/672
                                            Last post
                                          Buy SketchPlus
                                          Buy SUbD
                                          Buy WrapR
                                          Buy eBook
                                          Buy Modelur
                                          Buy Vertex Tools
                                          Buy SketchCuisine
                                          Buy FormFonts

                                          Advertisement