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

    [Plugin Library] LibFredo6 - v15.4d - 14 Aug 25

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

      Fredo, your latest script lib v 3.4c completely greys out my right -click options as early as sketchup start up on 7.1 win XP. help?

      “Whatever the mind of man can conceive and believe, it can achieve.” -W.Clement Stone (American best selling Author and Founder of Combined Insurance Co (now a part of Aon Corp.), 1902-2002)

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

        @prismcnd said:

        Fredo, your latest script lib v 3.4c completely greys out my right -click options as early as sketchup start up on 7.1 win XP. help?

        Have you put it [and its related files] in the Plugins folder inside its own folder ?

        TIG

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

          Confirmed all files are in the proper placement. works fine without the "libfredo.rb" file, but with it as soon as i load sketchup and first action is right-click on sang all right click options are greyed out

          “Whatever the mind of man can conceive and believe, it can achieve.” -W.Clement Stone (American best selling Author and Founder of Combined Insurance Co (now a part of Aon Corp.), 1902-2002)

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

            Have you also updated FredoScale etc ?

            TIG

            1 條回覆 最後回覆 回覆 引用 0
            • thomthomT 離線
              thomthom
              最後由 編輯

              @tig said:

              Have you also updated FredoScale etc ?

              No need. The code was in LibFredo. FredoScale did not have to be updated.
              Tools on Surface did though.

              There could be some other culprit to the disabled menus.

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

              1 條回覆 最後回覆 回覆 引用 0
              • fredo6F 離線
                fredo6
                最後由 編輯

                @prismcnd said:

                Confirmed all files are in the proper placement. works fine without the "libfredo.rb" file, but with it as soon as i load sketchup and first action is right-click on sang all right click options are greyed out

                Could you use the following code in the Ruby console (copy & paste it):
                l=[];ObjectSpace.each_object {|x| l.push x if x.class==UI::Command } ; l.length

                This displays the number of Command objects.

                After enabling LibFredo6 3.4c, check in the Ruby console BEFORE you right click and then AFTER.

                Thanks

                Fredo

                1 條回覆 最後回覆 回覆 引用 0
                • thomthomT 離線
                  thomthom
                  最後由 編輯

                  Some other plugin can still add to that - so it would not be an idication of FredoLib is the cause. To determine that one must disabled FredoLib and see if you still get an increase - if so, then there's another plugin doing this.

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

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

                    I get 332 before AND 332 afterwards... 😄

                    How about making an observer script that watches the number of commands a la code snippet, and when it approaches /reaches 1000 it pops up a dialog warning you that you have too many commands loaded and might like to sort out your plugins or suffer 'grayed' context-menu items...
                    It would be nice it it could purge unused commands... but how ? ObjectSpace.garbage_collect ?

                    TIG

                    1 條回覆 最後回覆 回覆 引用 0
                    • fredo6F 離線
                      fredo6
                      最後由 編輯

                      @tig said:

                      I get 332 before AND 332 afterwards... 😄

                      How about making an observer script that watches the number of commands a la code snippet, and when it approaches /reaches 1000 it pops up a dialog warning you that you have too many commands loaded and might like to sort out your plugins or suffer 'grayed' context-menu items...
                      It would be nice it it could purge unused commands... but how ? ObjectSpace.garbage_collect ?

                      The normal behavior should be that Commands objects are released as any othe Ruby object (This is what I thought by the way). From what jhauswirth reported, it seems that each UI::Command creates an underlying Windows static object which might itself not be released, even if the UI::Command object would be garbaged out by Ruby.

                      Fredo

                      1 條回覆 最後回覆 回覆 引用 0
                      • R 離線
                        rv1974
                        最後由 編輯

                        This gray fade was extremely annoying. What a relief

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

                          ran said script with LibFredo.rb disabled, returned a value of 293. ran said script with LibFredo6 enabled and returned said value of 428. Right-click menu is greyed out right from the start with Libfredo.rb enabled. As in before I've had a chance to create anything. Ken reports the same result from this post ( http://forums.sketchucation.com/viewtopic.php?f=323&t=11212&start=285 )
                          For the record I would like to say I really appreciate you guys looking into this. I used fredo's/your tools all the time and am really having a hard time remembering a workflow before I had these wonderful tools at my disposal.
                          here is the full report from the ruby console after i reenabled the script and ran the command in the ruby console


                          complete ruby console readout

                          “Whatever the mind of man can conceive and believe, it can achieve.” -W.Clement Stone (American best selling Author and Founder of Combined Insurance Co (now a part of Aon Corp.), 1902-2002)

                          1 條回覆 最後回覆 回覆 引用 0
                          • thomthomT 離線
                            thomthom
                            最後由 編輯

                            Have you tried removing LibFredo before installing this new version? To ensure all files are updated?

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

                            1 條回覆 最後回覆 回覆 引用 0
                            • S 離線
                              Sir
                              最後由 編輯

                              just upgraded to the latest toolset, on loading skp this error came up

                              Error Loading File ZLoader__FredoScale.rb
                              uninitialized constant LibFredo6::Traductor

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

                                Did you get the latest version of the Lib and software rubies and keep them in their respective folders as you extracted them from their zip files...

                                TIG

                                1 條回覆 最後回覆 回覆 引用 0
                                • S 離線
                                  Sir
                                  最後由 編輯

                                  ok, now it seems none of the toolbars are loading but no error messages popup

                                  interestingly in the preferences > extensions absolutly nothing is showing

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

                                    Sounds like you have some files in the wrong places - is this on PC or Mac ?
                                    Copy/Paste this line into the Ruby Console + <enter>
                                    Sketchup.find_support_file("Plugins")
                                    It returns the path that all of the .rb files OR sub-folders should go into - they should be in the same relationship as they are in the zip file - i.e. usually a 'loader' .rb and then a related sub-folder full of other files - that folder goes into Plugins with its contents unchanged.

                                    TIG

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • S 離線
                                      Sir
                                      最後由 編輯

                                      yeah its mac, and they're in the correct place. i guess ill wipe the folder and reinstall them all.

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • R 離線
                                        rogueparker
                                        最後由 編輯

                                        Im getting the same error message as above, but on a vista pc, I've tried the install 3 times. any ideas?

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • thomthomT 離線
                                          thomthom
                                          最後由 編輯

                                          Are the files installed as described in the first post?

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

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

                                            Well I would really like to thank you Tom and Tig, after a couple of days i found the culprit, apparently i had a couple of older versions of the LibFredo6 filefolder in my plugins directory and after removing them everything is back to normal. Stupid mistake and thank you for your help.

                                            “Whatever the mind of man can conceive and believe, it can achieve.” -W.Clement Stone (American best selling Author and Founder of Combined Insurance Co (now a part of Aon Corp.), 1902-2002)

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

                                            Advertisement