sketchucation logo sketchucation
    • Login
    1. Home
    2. CadFather
    3. Topics
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 91
    • Posts 1,048
    • Groups 2

    Topics

    • CadFatherC

      Batch Open-Process-Save

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      15
      0 Votes
      15 Posts
      786 Views
      M
      @tig said: The save_as_version is not accessible in the current API Well that'll help to explain why I had such trouble trying to find it in the API docs! Thanks TIG, I'll look into that one!
    • CadFatherC

      Can a script fire another?

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      23
      0 Votes
      23 Posts
      579 Views
      CadFatherC
      @aerilius said: Sorry for being late that's quite alright.. i was taking my time anyway..
    • CadFatherC

      [Plugin] Material Renamer

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      29
      0 Votes
      29 Posts
      29k Views
      designerbursaD
      Plugin name and menu text PLUGIN_NAME = 'Rename Materials by File Name'.freeze Plugin class class RenameMaterials def self.rename # Get the active model model = Sketchup.active_model # Get the file name and remove the extension file_name = File.basename(model.path, ".*") # Get all materials in the model materials = model.materials # Iterate through all materials and assign new names based on the file name materials.each_with_index do |material, index| new_name = "#{file_name}_#{format('%02d', index + 1)}" material.name = new_name end puts "Materials have been successfully renamed based on the file name." end end Menu item that activates the plugin UI.menu('Plugins').add_item(PLUGIN_NAME) { RenameMaterials.rename }
    • CadFatherC

      [Plugin] Components to Grid

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      22
      0 Votes
      22 Posts
      23k Views
      pilouP
      Alas not better ! My SketchUp is absolutly new! Only "Component on Grid" installed! So no conflict possible! (like Light Up above) [image: 3cmV_not_better.jpg] If i add new volumes : the same! that is making snowball ! All is redrawn!
    • CadFatherC

      Sunny Position

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      1
      0 Votes
      1 Posts
      142 Views
      No one has replied
    • CadFatherC

      Idea for plug

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      3
      0 Votes
      3 Posts
      218 Views
      CadFatherC
      Thank you Sam, i can't believe it escaped me this long - works very well, i wish sketchup had a stronger highlight but your plugin shows clearly the selection even for faces inside groups.
    • CadFatherC

      Matchphoto Swap

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      13
      0 Votes
      13 Posts
      483 Views
      CadFatherC
      Thank you Pixero - that helped a lot because as i went back to play i found out what was driving mad... (really i had given up on this! ) when you add the second scene, it doesn't save these, (since it duplicates the photo-matched) [image: dLHp_scene.jpg] switching these on, i can move through different scenes and keep the axis put...! might do a small tutorial later today if i have time..
    • CadFatherC

      Statusbar text in model

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      13
      0 Votes
      13 Posts
      544 Views
      Dan RathbunD
      @tig said: The registry entry isn't updated until Sketchup closes, so you can't check that while inside a SKP, BUT you can get it at startup. Sorry, forgot to note that. (Added a note to my previous post.) @tig said: Incidentally, if you try 'read_default' for 'Visible' it fails to get it as I suspect it's the wrong sort of key [i.e. not REG_Z] ? Yep... Sketchup.read_default() still cannot read DWORD values (and also seems not to be able to read even string values in some of the OEM keys, which I never noticed happen in v7.) I use Win32API calls to read entries (of all types) in the OEM keys. (Requires the Win32API.so file.)
    • CadFatherC

      [Idea] Material swapper

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      7
      0 Votes
      7 Posts
      383 Views
      CadFatherC
      well...when you have only one neuron working at each moment - every idea looks great!
    • CadFatherC

      Question about palettes

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      22
      0 Votes
      22 Posts
      2k Views
      CadFatherC
      yes, maybe i'm better at it after a few guinness... meantime here's the result - i don't have a mac so do not know whether it works there. only thing is that upon reopening, the windows always dock at the bottom of the stack.. Cheers
    • CadFatherC

      (?) Mirror Bug with SketchyPhysics

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      2
      0 Votes
      2 Posts
      260 Views
      CadFatherC
      got it - it's sketchy physics. specifically sketchyphysics.rb
    • CadFatherC

      C-lines to lines

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      6
      0 Votes
      6 Posts
      317 Views
      TIGT
      @jim said: Not if it's posted in the Developers forum, and not the Plugins forum. Doh! Didn't realize where it was... I've 'moved' it here... http://forums.sketchucation.com/viewtopic.php?p=274567#p274567
    • CadFatherC

      (Idea) Location

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      1
      0 Votes
      1 Posts
      211 Views
      No one has replied
    • CadFatherC

      Select same material

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      8
      0 Votes
      8 Posts
      564 Views
      CadFatherC
      sounds great - the operation is really sssssssssssssslow
    • CadFatherC

      Lost the model, Help!!

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      9
      0 Votes
      9 Posts
      1k Views
      G
      max a question i have , as you have loaded so many of the tools do you find that some off them do not function ie the dome in the scf drawtools bar, or the stairmaker 062.rb being canceled out by the scf archi tool bar or the skins from db tools only 2 show up out of the 4 and do not function. if you or anyone else out there has a solution please let me know thanks grim
    • CadFatherC

      [Plugin] hide all edges

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      11
      0 Votes
      11 Posts
      22k Views
      J
      Awesome!
    • CadFatherC

      [7.1 Ruby Bug] - Double entries in extensions + context menu

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      165 Views
      No one has replied
    • CadFatherC

      [7.1 Ruby Bug] - Toggle Units not working

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      184 Views
      No one has replied
    • CadFatherC

      Comps scale handles upset why

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      9
      0 Votes
      9 Posts
      307 Views
      Bob JamesB
      Got it - thank you CadFather. Now I see why it would be nice to have a ruby to get the same dialog.
    • CadFatherC

      FFD Idea/Question..

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      5
      0 Votes
      5 Posts
      413 Views
      CadFatherC
      telling by your latest creations BTM, you should.. (must?) i'll be happy to pace it further if you need
    • 1 / 1