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

[Plugin] SCF PowerToolbar (09.Sep.2010)

Scheduled Pinned Locked Moved Plugins
76 Posts 36 Posters 76.3k Views 36 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.
  • C Offline
    CadFather
    last edited by 15 Jan 2009, 08:24

    thanks Chango, though without the masters we would only have a 'nice' interface... πŸ˜‰

    (..there's more cooking in the oven..) πŸ˜‰

    1 Reply Last reply Reply Quote 0
    • X Offline
      xrok1
      last edited by 26 Jan 2009, 05:24

      i think it would be great (not that its not great already, but greater yet) if we could have just one SCF Toolbar & then pick and choose which ruby's we want in it, like a visual plugin bar that could be customized with any of the tools from your series of toolbars (mix and match).

      any chance of this? πŸ˜‰

      β€œThere are three classes of people: those who see. Those who see when they are shown. Those who do not see.”

      http://www.Twilightrender.com try it!

      1 Reply Last reply Reply Quote 0
      • P Offline
        pilou
        last edited by 2 Feb 2009, 18:12

        Amazing and cool design! 😎
        A list here of Plugs used will be useful πŸ˜‰

        Frenchy Pilou
        Is beautiful that please without concept!
        My Little site :)

        1 Reply Last reply Reply Quote 0
        • C Offline
          Chris Fullmer
          last edited by 9 May 2009, 00:22

          Tiffs don't work on the forum John. Use a file format more common to the web like jpg, or png works great.

          Chris

          Lately you've been tan, suspicious for the winter.
          All my Plugins I've written

          1 Reply Last reply Reply Quote 0
          • B Offline
            BTM
            last edited by 9 May 2009, 00:39

            tiff works on the forum
            ...but maybe only on macs... πŸ˜‰
            Anyways, I had the same problem too. I no longer have the SCF powertoolbar.

            1 Reply Last reply Reply Quote 0
            • C Offline
              Chris Fullmer
              last edited by 9 May 2009, 00:44

              That is very interesting. I never knew that. They do not show up on PC's. Good to know,

              Chris

              I've never liked the tiff format and I don't know why.

              Lately you've been tan, suspicious for the winter.
              All my Plugins I've written

              1 Reply Last reply Reply Quote 0
              • B Offline
                BTM
                last edited by 9 May 2009, 01:48

                I don't like it much either. Same, I don't know why. I like PNG the most πŸ‘

                1 Reply Last reply Reply Quote 0
                • D Offline
                  driven
                  last edited by 9 May 2009, 05:40

                  has any one got this fully running on a mac??

                  i get this error, functionality of some of the tools

                  john


                  PowerBarErrormessage.tiff


                  ++jpeg

                  learn from the mistakes of others, you may not live long enough to make them all yourself...

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    Sir
                    last edited by 9 May 2009, 11:41

                    the link to your website is broken btw

                    1 Reply Last reply Reply Quote 0
                    • W Offline
                      windrockwater
                      last edited by 3 Jul 2009, 23:44

                      The link for downloading this cool script is not working. Is there a working link available? TIA...

                      1 Reply Last reply Reply Quote 0
                      • C Offline
                        CadFather
                        last edited by 4 Jul 2009, 03:39

                        Hi, link repaired.. thanks

                        1 Reply Last reply Reply Quote 0
                        • H Offline
                          haroldcampbell
                          last edited by 24 Feb 2010, 17:44

                          @driven said:

                          has any one got this fully running on a mac??

                          i get this error, functionality of some of the tools

                          john

                          Don't know if this is still an issue for anyone, but you can find a patched version that works for me.
                          I changed line 4921

                          if (n1.between? (n2 - interval), (n2 + interval))
                          

                          to

                          if ( n1.between?((n2 - interval), (n2 + interval)) )
                          

                          .

                          I'm running mac os x 6, SketchUp 7 (7.1.6859)


                          patched cd_power_m.rb file.

                          1 Reply Last reply Reply Quote 0
                          • Dan RathbunD Offline
                            Dan Rathbun
                            last edited by 31 Aug 2010, 04:04

                            Errors in [Plugin] SCF PowerToolbar v1


                            The errors are caused by poor programming style.

                            If you run SU7 Mac (with Ruby 1.8.5-p0) OR run SU7 on PC AND have updated your Ruby interpreter DLL to Ruby 1.8.5 or higher, then certain "typos" are no longer permitted by the Ruby interpreter.


                            ` %(black)[cd_power_extension_m.rb

                            Line 4921:]if (n1.between? (n2 - interval), (n2 + interval))
                            * move first "(" just after "between?" and before "(n2", so it replaces the space character. Like:
                            if n1.between?((n2 - interval), (n2 + interval))`


                            ` %(black)[cd_power_m.rb

                            • same fix as above, .. replace Line 4921]
                              if (n1.between? (n2 - interval), (n2 + interval))
                              with:
                              if n1.between?((n2 - interval), (n2 + interval))`

                            ` %(black)[cutting_windows.rb

                            fix Line 610:]
                            faces_and_heights[0.pushpull (faces_and_heights[1]), false]
                            * add parenthesis around pushpull method's argument list, ie:
                            faces_and_heights[0.pushpull( (faces_and_heights[1]), false )]`


                            What is happening, is that:

                            • Ruby is getting confused as to what are method argument lists, and what are arguments (delimeted with parenthesis,) within the arguemnt list.
                            • For best practice in later Ruby versions, all methods should have parenthesis around the whole argument list, with NO space between end of method name and the left parenthesis of it's argument list.
                            • If a method has no args, speed up Ruby by passing an empty arg list, like so: %(darkred)[*obj*.method_name()]

                            I'm not here much anymore.

                            1 Reply Last reply Reply Quote 0
                            • N Offline
                              Nosonja
                              last edited by 6 Sept 2010, 19:50

                              Don't work with sketchup 8.

                              1 Reply Last reply Reply Quote 0
                              • C Offline
                                CadFather
                                last edited by 6 Sept 2010, 21:32

                                i'm hoping to fix the bugs soon..

                                1 Reply Last reply Reply Quote 0
                                • T Offline
                                  tina0603
                                  last edited by 9 Sept 2010, 10:47

                                  try to replace it with haroldcampbell attachments

                                  1 Reply Last reply Reply Quote 0
                                  • R Offline
                                    rongvuong
                                    last edited by 9 Sept 2010, 11:08

                                    Don't work with sketchup 8.
                                    help me?

                                    1 Reply Last reply Reply Quote 0
                                    • HumpmetwiceH Offline
                                      Humpmetwice
                                      last edited by 9 Sept 2010, 13:43

                                      I get this error after installing the power toolbar. Did I do something wrong, is there something else I need?


                                      2010-09-09_0817.png

                                      1 Reply Last reply Reply Quote 0
                                      • C Offline
                                        CadFather
                                        last edited by 9 Sept 2010, 14:05

                                        ok, wrong lines have been changed - hope it still works.

                                        1 Reply Last reply Reply Quote 0
                                        • thomthomT Offline
                                          thomthom
                                          last edited by 9 Sept 2010, 14:14

                                          Could you add a Last Updated timestamp to your original post? Makes it easier to catch any updates when you browse the plugins.

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

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

                                          Advertisement