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

    [Plugin] SketchUcation Tools 2.6

    已排程 已置頂 已鎖定 已移動 Plugins
    212 貼文 58 Posters 116.6k 瀏覽 58 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • Rich O BrienR 離線
      Rich O Brien Moderator
      最後由 編輯

      SketchUcation Tools 2.6

      Introducing Bundles!

      Sync your plugins to multiple devices....

      This is the latest version that has tons of bugfixes and some new features...

      You can now rate plugins/extensions directly within SketchUp...

      http://sketchucation.com/pluginrepo/image/SketchUcationTools/sut_002.png

      The new My Setup has a bulk update feature....

      http://sketchucation.com/pluginrepo/image/SketchUcationTools/sut_005.png

      Downloads are 4x faster!

      Tons of new tweaks

      You can read more here...

      Link Preview Image
      ExtensionStore | SketchUcation

      3D SketchUp Community for Design and Engineering Professionals.

      favicon

      (sketchucation.com)

      Download the free D'oh Book for SketchUp 📖

      1 條回覆 最後回覆 回覆 引用 0
      • Rich O BrienR 離線
        Rich O Brien Moderator
        最後由 編輯

        To update from v2.0 to v2.5 just autoinstall and restart SketchUp

        We'd appreciate some social sharing via Twitter and Facebook 👍

        Thanks to all the testers...

        Here's a little peek a v3.0... 😉

        [screenr:38og9999]pT8N[/screenr:38og9999]

        Download the free D'oh Book for SketchUp 📖

        1 條回覆 最後回覆 回覆 引用 0
        • cottyC 離線
          cotty
          最後由 編輯

          👍

          my SketchUp gallery

          1 條回覆 最後回覆 回覆 引用 0
          • mitcorbM 離線
            mitcorb
            最後由 編輯

            Thanks, Rich, and all who worked on this. I just upgraded to Sketchup 2013 and it will come in handy.

            I take the slow, deliberate approach in my aimless wandering.

            1 條回覆 最後回覆 回覆 引用 0
            • B 離線
              Ben Ritter
              最後由 編輯

              Ditto to mitcorb's comments. Thank you!

              1 條回覆 最後回覆 回覆 引用 0
              • Dan RathbunD 離線
                Dan Rathbun
                最後由 編輯

                Why are the toolbar button tooltips just "..." ?

                I'm not here much anymore.

                1 條回覆 最後回覆 回覆 引用 0
                • P 離線
                  pomelo3d
                  最後由 編輯

                  Thank you.
                  This is the result: some good ideas, common sense, listen to the users need for sketchup, fast updates and hard work. And besides it's free

                  THANK YOU AGAIN.

                  For this year 2014, Trimble team only ask: some good ideas, common sense, need to hear the sketchup users. 😄

                  1 條回覆 最後回覆 回覆 引用 0
                  • TIGT 離線
                    TIG Moderator
                    最後由 編輯

                    @dan rathbun said:

                    Why are the toolbar button tooltips just "..." ?
                    They have been like that for ages... since when v2013 arrived...
                    In >=v2013 the tooltip's text is the combo of the ' tooltip' and ' status_bar_text' methods' values.
                    The ' status_bar_text' text no longer appears in the bottom status-bar, as it did in v8...
                    In earlier versions you would usually make the two with very similar wording, since they always appeared apart.
                    However having the two repeat in the tooltip's text looks odd.
                    The ' tooltip' of the toolbar-button's tooltip text clearly tells you its function.
                    If the ' status_bar_text' is set then it is used - however we took the view that additional explanation in the tooltip text text was superfluous...
                    So we chose '...' - to show that clicking on it gives you further actions...
                    We could have used ' ' [<space>], but then the field is empty, and equally odd looking
                    If we don't set it, OR we set it to an empty string '' the ' tooltip' is repeated below - which looks illogical - with the tooltip's text being an 'echo' !

                    That's why. 🤓

                    TIG

                    1 條回覆 最後回覆 回覆 引用 0
                    • Rich O BrienR 離線
                      Rich O Brien Moderator
                      最後由 編輯

                      @tig said:

                      If we don't set it, OR we set it to an empty string '' the ' tooltip' is repeated below - which looks illogical - with the tooltip's text being an 'echo' !

                      That's why. 🤓

                      Can't the secondary tip differ from the primary tip?

                      Download the free D'oh Book for SketchUp 📖

                      1 條回覆 最後回覆 回覆 引用 0
                      • TIGT 離線
                        TIG Moderator
                        最後由 編輯

                        @Rich

                        Of course we can have it say whatever you want...

                        BUT what more do you want to say ?
                        Currently it's
                        SketchUcation Plugin Store ...

                        More is easily added... but I don't think additional info will enhance it 😕
                        SketchUcation Plugin Store Clicking on this button opens a dialog which allows you to AutoInstall and Update Plugins...etc
                        😒

                        If you want changes try editing the SCF_loader.rb and the .status_bar_text= for each tool...
                        cmd.="..."
                        to
                        cmd.status_bar_text="Clicking on this button opens a dialog which allows you to AutoInstall and Update Plugins...etc"
                        OR better still add new Constants to the ../Strings/SCF-EN-US.strings file and use those Constant as the .status_bar_text=
                        For example, in the file
                        ../Strings/SCF-EN-US.strings
                        add
                        SBAR="Clicking on this button opens a dialog which allows you to AutoInstall and Update Plugins...etc"
                        then
                        cmd.tooltip="#{DESC}" cmd.status_bar_text="#{SBAR}"

                        Make one Constant for each of the three button cmds:
                        ` DESC="...
                        SBAR="...

                        MDESC="...
                        MSBAR="...

                        XDESC="...
                        XSBAR="...`

                        This 'strings' version allows translations to other locales...

                        Note: in v8 the ' tooltip' text appears in the button onMouseOver and the ' status_bar_text' text is in the status-bar at the bottom, but in >=v2013 the tooltip's text is a combo of the ' tooltip' and ' status_bar_text'...
                        The 'loader' rb sets a 'redundant' .tooltip= for the non-toolbar [menu-only] cmds - these are never displayed [just there in case a toolbar-button ever got added]: however, it also sets .status_bar_text= for the non-toolbar [menu-only] cmds - this is also 'redundant' in newer versions of SketchUp, BUT in v8 onMouseOver for the menu item it will display that text in the status-bar.

                        @Rich let me know your thoughts...

                        TIG

                        1 條回覆 最後回覆 回覆 引用 0
                        • K 離線
                          kaas
                          最後由 編輯

                          Very nice update! Especially to be able to update all installed plugins at once. Many thanks for that! 👍

                          1 條回覆 最後回覆 回覆 引用 0
                          • J 離線
                            jpalm32
                            最後由 編輯

                            Nice work guys! 👍 👍

                            1 條回覆 最後回覆 回覆 引用 0
                            • Rich O BrienR 離線
                              Rich O Brien Moderator
                              最後由 編輯

                              Updated to 2.5.1

                              Addressed some bulk update issues

                              Download the free D'oh Book for SketchUp 📖

                              1 條回覆 最後回覆 回覆 引用 0
                              • F 離線
                                frlic
                                最後由 編輯

                                When I open SU 2013 PRO, there is a message Load Errors (please see attached picture). I have XP. When I press the OK button, the appearance of the icons of the Plugin Store.


                                difficult to open plugin in XP

                                FRLIĆ
                                http://www.frlic.hr

                                1 條回覆 最後回覆 回覆 引用 0
                                • TIGT 離線
                                  TIG Moderator
                                  最後由 編輯

                                  @frlic said:

                                  When I open SU 2013 PRO, there is a message Load Errors (please see attached picture). I have XP. When I press the OK button, the appearance of the icons of the Plugin Store.
                                  This is strange. 😕
                                  I have the exact same SUp version and when I install the tool I do not get these errors.
                                  How did you install to toolset?
                                  You must restart SketchUp to effect the changes ??
                                  If you AutoInstall from the older PluginStore dialog it should warn you if you have insufficient security permissions to add files to the Plugins folder.
                                  Or did you try to install it from a downloaded RBZ file, using the Preferences > Extensions > Install... button >
                                  Can I suggest you check your Plugins folders permissions...
                                  As an Admin > context-menu > Properties > Security > Edit...
                                  All entries should be FULL read/write ...

                                  Having a link/button named 'Compatibility Files...' in the top-bars of the Windows Explorer window for the Plugins folder, that's a sure sign of wrong permissions...

                                  Therefore you might not have all of the plugin's files properly installed...

                                  CAn I also suggest you remove the !SketchUcation_loader.rb and the SketchUcation subfolder from the Plugins folder.
                                  Then Install a fresh version of the plugin...

                                  Report back if you still get error messages... 😕

                                  TIG

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • M 離線
                                    m625
                                    最後由 編輯

                                    Anyone else experiencing the whole thing crashing when you try to install from inside the plugin?

                                    [mod=:14fmud1g]Fixed: Followed the permissions instructions above.[/mod:14fmud1g]

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • P 離線
                                      pomelo3d
                                      最後由 編輯

                                      a query.
                                      In version 2, the list of recent plugin could see a list of all plugin chronologically ordered.
                                      In version 2.5, the list of recent plugin, you can only see the last 20 plugin. this feature will ever change?

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • G 離線
                                        Gábor
                                        最後由 編輯

                                        @pomelo3d said:

                                        a query.
                                        In version 2, the list of recent plugin could see a list of all plugin chronologically ordered.
                                        In version 2.5, the list of recent plugin, you can only see the last 20 plugin. this feature will ever change?

                                        In v2 you also should have seen only the last 20 plugins in the recent list. Only the full list lists all the plugins in the store. (Therefore it takes some time to load...)

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • P 離線
                                          pomelo3d
                                          最後由 編輯

                                          If, in version 2 are seen 20 plugin, but when I slide down the sidebar plugin loaded another 20, and so on. no?

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • G 離線
                                            Gábor
                                            最後由 編輯

                                            @pomelo3d said:

                                            If, in version 2 are seen 20 plugin, but when I slide down the sidebar plugin loaded another 20, and so on. no?

                                            No. But it's a good suggestion for the further development. 😄

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 10
                                            • 11
                                            • 1 / 11
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement