Check out Febhouse | New extensions for Shadow Analysis in SketchUp Download
  • Need experienced SketchUp dev. testers.

    6
    0 Votes
    6 Posts
    608 Views
    F
    @glro said: @farazforoozan said: This is a brief manual if you're interested. http://sketchucation.com/forums/viewtopic.php?f=323&p=459125#p459125 would it be convenient to enlarge the use of the plugin to openoffice spreadsheets? The library does not support Open Office. Perhaps something to look in to for the future.
  • [REQ] Battens

    12
    0 Votes
    12 Posts
    930 Views
    pilouP
    Old wizard Beautiful stair isn't it ? [image: Rembrandt_Philosopher_in_Meditation.jpg]
  • Multiple Leader Lines for Single Text String

    8
    0 Votes
    8 Posts
    1k Views
    fredo6F
    @plesiosaur said: One note on Fredo Tools mentioned above: Be sure that the leader line format in the model info setting, Text>Leader Lines, the leader style must be set to Pushpin; if it is View Based you will get adverse results. If you wish to move the labels, either anchors or text part, just do it with ReportLabelArea, not with the native SU Tool. Fredo
  • Help for new tool

    18
    0 Votes
    18 Posts
    2k Views
    thomthomT
    Yea, I wish there was a UI manager. That SketchUp would allow users to create their own toolbars from all the available toolbars and menus. Maybe in the future - lets hope.
  • Joint push pull plugin - by Fredo 6

    9
    0 Votes
    9 Posts
    3k Views
    P
    Yes that helps too thanks!:)
  • @Jim: Protrude plug-in for paneling

    7
    0 Votes
    7 Posts
    766 Views
    J
    Adding these features would likely require a complete re-write of the Protrude plugin, and that is not something I am planning on anytime soon.
  • Round corners

    4
    0 Votes
    4 Posts
    520 Views
    jolranJ
    Jaha Tjena! He he. Jag översätter på engelska efteråt också, för folk kanske bli ilskna här annars. Som jag skrev så måste du ha libFredo installerat för att kunna köra denna plugin. Fredo använder ett bibliotek som hans plugins refererar till. Och har man inte den i plugins mappen så funkar inte någon(tror jag i alla fall) av hans plugins. Du hittar den här! http://sketchucation.com/forums/viewtopic.php?t=17947 Dessutom så nämner Fredo att man måste ha fulla rättigheter till mapparna man installerar i. Det kanske är där du har strul. Det är bara att höra av dig igen om det fortsätter strula Short Translation: Just pointed out that libfredo is required for running Fredos plugins. (link above) Also IMPORTANT:Please make sure that you have full Read / Write permissions in the folder where you install RoundCorner
  • [Plugin] Another Sketchup v1.6.1 Feb 19 2013

    16
    0 Votes
    16 Posts
    21k Views
    G
    Thank you dukejazz for the reply. With the new version still no luck. The plug-in is loaded, the toolbar is shown, and the menu is added, but after that an error box pop up (see attachment). [image: HcS9_2013-02-2021.00.26.jpg] [image: wAno_2013-02-2020.57.30.jpg]
  • Wrapping a Profile

    6
    0 Votes
    6 Posts
    491 Views
    jeff hammondJ
    @jim57 said: What's the distinction between Extrude and Loft? In my examples, Loft seems to twist things up. i can't really remember anymore.. i have extrude by Rails,Lathe,Vector, and Vector to Object installed from TIG's extrude suite.. I tend to use CurviLoft for most surface creation if i'm staying strictly in sketchup..
  • A plugin for my CNC milling

    6
    0 Votes
    6 Posts
    754 Views
    gullfoG
    have you reached out to the manufacturer to get the file specifications - gcode version # etc? they should know what version of the file, formats etc is needed for their machines...
  • Installation problem with RoundCorner on mac.

    3
    0 Votes
    3 Posts
    186 Views
    F
    YES! Thank you so much! That did it
  • Plug : Random Orientation - done!

    4
    0 Votes
    4 Posts
    568 Views
    olisheaO
    Looks tatsty! Stromb-oli! Thanks Pilou.
  • Lost my "Plugin toolbar" from menu

    5
    0 Votes
    5 Posts
    559 Views
    K
    i had the same problem yesterday. Tried a lot to fix it but nothing helped. In the end i de-installed and re-installed sketchup and that did the trick
  • Unload a Plugin

    3
    0 Votes
    3 Posts
    237 Views
    D
    Aerilius beat me to it, but here's my similar answer, anyway not easily without completely overwriting all of it's definitions and methods which would be risky unless you wrote it in the first place. the alternative is use RC to find and rename the plugin so it doesn't work for the next startup, and then do a restart. there may even be a plugin for that... john
  • Make all Component Unique

    11
    0 Votes
    11 Posts
    1k Views
    thomthomT
    Not sure if it's described in the plugin description - but there is a function there.
  • [Plugin] Plugin Loader for SketchUp

    14
    0 Votes
    14 Posts
    20k Views
    D
    @gilles add self. at line 143, that seems to work here... [ in a quick test at least!!! ] def self.as_require_all(dirname) john
  • [REQ] Additive PushPull

    3
    0 Votes
    3 Posts
    2k Views
    pilouP
    See this post for one of the option asked!
  • [REQ] replace all similar groups with component

    23
    0 Votes
    23 Posts
    2k Views
    pilouP
    TIG has also some snipsets for this sort of things (all codes must be on one line in the ruby console!!! Transform objects of a selection in components! m=Sketchup.active_model; m.start_operation("Faces>Compos"); n=m.active_entities;m.selection.to_a.each{|e|(g=n.add_group(e.all_connected); g.to_component.definition.name="FaceSet#1")if e.valid? and e.parent==n.parent and e.class==Sketchup;;Face}; m.commit_operation [image: index.php?PHPSESSID=4e825ae188c60774366f18ac0035054f&action=dlattach;topic=1622.0;attach=15209;image] Tranform any faces in components m=Sketchup.active_model; n=m.active_entities; m.selection.to_a.each{|e|(g=n.add_group(e); g.to_component.definition.name="Face#1")if e.class==Sketchup;;Face} [image: index.php?PHPSESSID=4e825ae188c60774366f18ac0035054f&action=dlattach;topic=1622.0;attach=15210;image] all faces of a selection are transformed in groups (except groups or components yet existing) m=Sketchup.active_model;n=m.active_entities;m.selection.to_a.each{|e|n.add_group(e)if e.class==Sketchup;;Face}; [image: index.php?PHPSESSID=4e825ae188c60774366f18ac0035054f&action=dlattach;topic=1622.0;attach=15211;image] Ps For be complete Groups to Components by Thomthom
  • This could be done in Sketchup?

    3
    0 Votes
    3 Posts
    327 Views
    jeff hammondJ
    can that be drawn in sketchup? yes ..using the same method as shown in the video? no
  • Plugins Quarantine

    5
    0 Votes
    5 Posts
    135k Views
    thomthomT
    The logs list no edits for this thread. Just locks/unlocks, merge and bump.

Advertisement