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

    [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.
    • B Offline
      bellwells
      last edited by

      @edson said:

      max,

      in order to install this toolbar i removed all my plugins and started moving them back carefully in order no to have double copies. in doing so i realized that another toolbar you made (ARCHILAND toolbar) has a folder called CD_ICONS, the same name of the icons folder for the powertoolbar. my question: is it ok to have both folders with the same name? will not there be some confusion between them? what should i do?

      Edson, there will be a problem with 2 folders the same name as you'll be asked if you want to replace the old with the new, which you do NOT want to do! What I did was simply place the contents of the PowerToolbar CD_ICONS into the other CD_ICONS folder (or vice versa) by copy all and paste.

      Max, thanks for another great addition to SU!!!!

      Ron

      1 Reply Last reply Reply Quote 0
      • CadFatherC Offline
        CadFather
        last edited by

        hi Edson, the two plugins have different subfolders inside CD_ICONS (architect and power). you should have 1 cd_icons folder and inside it, the 2 subfolders.

        i think the parsing errors reported can be easily fixed but i do not have a mac to check/fix - some kind master with a mac could look into it perhaps?

        the quick other option is to disable the plugins which cause the error - if you can report the full text of the ruby console i will try later..

        1 Reply Last reply Reply Quote 0
        • C Offline
          chango70
          last edited by

          OMG, Cadfather, why can't Google hire you!? I am always amazed by how professionally thought out your tools (interface at least) are! Thank you. 😍

          1 Reply Last reply Reply Quote 0
          • CadFatherC Offline
            CadFather
            last edited by

            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

              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
              • pilouP Offline
                pilou
                last edited by

                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
                • Chris FullmerC Offline
                  Chris Fullmer
                  last edited by

                  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

                    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
                    • Chris FullmerC Offline
                      Chris Fullmer
                      last edited by

                      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

                        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

                          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

                            the link to your website is broken btw

                            1 Reply Last reply Reply Quote 0
                            • W Offline
                              windrockwater
                              last edited by

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

                              1 Reply Last reply Reply Quote 0
                              • CadFatherC Offline
                                CadFather
                                last edited by

                                Hi, link repaired.. thanks

                                1 Reply Last reply Reply Quote 0
                                • H Offline
                                  haroldcampbell
                                  last edited by

                                  @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

                                    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

                                      Don't work with sketchup 8.

                                      1 Reply Last reply Reply Quote 0
                                      • CadFatherC Offline
                                        CadFather
                                        last edited by

                                        i'm hoping to fix the bugs soon..

                                        1 Reply Last reply Reply Quote 0
                                        • T Offline
                                          tina0603
                                          last edited by

                                          try to replace it with haroldcampbell attachments

                                          1 Reply Last reply Reply Quote 0
                                          • R Offline
                                            rongvuong
                                            last edited by

                                            Don't work with sketchup 8.
                                            help me?

                                            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