sketchucation logo sketchucation
    • Login
    1. Home
    2. Jorgensen
    3. Posts
    Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
    ⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
    J
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 89
    • Posts 368
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Text position problem

      Thanks Didier - I added point.z = point.z + 6 - this helped πŸ˜„

      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Text position problem

      If I afterwards manual move the text 200mm, on the blue axis, the problem dissapers.

      But how do I do this automatic ?
      point = Geom::Point3d.new object.bounds.center
      Adding 200mm to the Z axe of point ?

      Sorry, I have quite a lot questions.... and still a lot to come

      Thanks
      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Text position problem

      Hi azuby

      Thanks for your help - but I still have the problem that the text gets cut off - se images.

      The 'test' text is added via mouseclick and does not have this problem 😞

      EDIT
      Is this the proper group/place for such technical questions ?


      1.jpg


      2.jpg

      posted in Developers' Forum
      J
      Jorgensen
    • Text position problem

      I'm working on my very own (noooooob) area script.

      And now I'm having my first problem - when add a text to a face in Sketchup, by doubbleclick, the text is visible from allmost every angle, but if I use

      coordinates = object.bounds.center
      model = Sketchup.active_model
      entities = model.entities
      point = Geom::Point3d.new coordinates
      
      $area = (object.area / (39.3700787*39.3700787)).round
      $text = "#{object.layer.name}\n#$area m2"
      $textObjects.push(entities.add_text $text, point)
      

      It seems like the text is being cut by the face - is there a way to avoid this ?

      And a other small thing - how do I add a Β² to the areatext ?

      Thanks
      Jorgensen

      Here is the complete script:

      $textObjects = Array.new

      def tmTextAdd
      tmSelectAllFaces
      model = Sketchup.active_model
      ss = model.selection
      for object in ss

      end
      ss.clear
      end

      def tmSelectAllFaces
      model = Sketchup.active_model
      ss = model.selection
      ss.clear
      for ent in model.entities
      if (ent.kind_of?(Sketchup::Face))
      ss.add(ent)
      end
      end
      end

      def tmTextDelete
      if $textObjects.length > 0
      $textObjects.each do |e|
      if(not e.deleted?)
      e.erase!
      end
      end
      $textObjects.clear
      end
      end

      #tmSelectAllFaces
      #tmTextAdd
      #tmTextDelete

      #---------------------------------------------------------------
      #- Setup menu -
      #---------------------------------------------------------------
      if(not $TM_area_loaded)
      Mejeriet_menu = UI.menu("Plugins").add_submenu("TM").add_submenu("Arealer")
      Mejeriet_menu.add_item("On") { tmTextAdd }
      Mejeriet_menu.add_item("Off") { tmTextDelete }
      end
      $TM_area_loaded = true

      posted in Developers' Forum
      J
      Jorgensen
    • RE: D/Code - smells like IRB spirit (1.0 RC1)

      Hi azuby

      The problem is, that I have so sidescroll the window to see long lines.

      It might be just me (noob), but to me a "code window" and "a output" would be fine - does there have to be three ?

      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: D/Code - smells like IRB spirit (1.0 RC1)

      First of all - it is fantastic to be able to test scripts direct inside Sketchup πŸ˜„

      Would it be possible to have the input(Select all) window in the top and Code (Raw) window
      windows at the bottom - for me it is difficult to se long lines 😞

      Does one have to have two windows ?

      Could Code(RAW) do it ?

      Sorry, if my questions are noob - byt i'm a noob πŸ˜‰

      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Time.rb

      Hi TBD πŸ˜‰

      I have just worte a mail for Smustard - is it possible to upgrade - or am I supposed to pay $5 for the upgrade ?

      Btw - nice to be in so close contact to the plugin developers. This is sure something that makes Sketchup a very special program πŸ˜„

      Thanks
      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Time.rb

      Just found out that I have v. 1.1 - and the lasted version is 1.3 😞

      posted in Developers' Forum
      J
      Jorgensen
    • Time.rb

      Hi

      I purchase the Time.rb by TBD some time ago, and just wanted to use it again. But it seems that it does not work in Sketchup 6.0 - does anyone know of a fix or newer version ?

      Thanks
      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Creating a simple wheel with two axis

      Now it works for me πŸ˜„ but I have to find out why - I still have something to learn about grouping and linking......

      Thanks
      Jorgensen

      posted in SketchyPhysics
      J
      Jorgensen
    • RE: Creating a simple wheel with two axis

      Still no go 😞

      posted in SketchyPhysics
      J
      Jorgensen
    • RE: Creating a simple wheel with two axis

      @Solo
      Thanks, but I know how to model the wheel πŸ˜„ But the problem is how to add the physics 😞 - my fault

      @CPhilips
      Thanks for the file. But when I press the 'Play' button the the wheel simply brakes apart 😞

      Thanks
      Jorgensen

      posted in SketchyPhysics
      J
      Jorgensen
    • Creating a simple wheel with two axis

      Does anyone know to create a wheel like this ?
      http://www.dino.dk/webshop/images/small_19543.jpg

      I'm having some big problems 😞

      Thanks
      Jorgensen

      posted in SketchyPhysics
      J
      Jorgensen
    • RE: An idea for a areascript ?

      Absolutely - and if the face can generated automatic πŸ˜„

      I'm not sure if it is needed that the floor and walls are connected - I usely keep those seperated....

      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • An idea for a areascript ?

      Hi

      I often use Sketchup to sketch floorplans. In this process the walls are often moved alot (as you all probably know). What could be usefull here is a area script.

      What the script should do:

      • one add a face block in a layer called, let's say '0A Areas'
      • the script then adds a text in the centre of this face, contains the name of the block and the area of the face, the text should be in a different layer, so it is possible to turn off the areas layer

      Does anyone know if there is any script that exists or could be modified to do this ?
      What do you think of the idea ?

      Thanks
      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • RE: Ruby top 50 ?

      Yes, I can se the site - but not a top-list πŸ˜„

      posted in Plugins
      J
      Jorgensen
    • RE: Ruby top 50 ?

      Where ? πŸ˜„

      posted in Plugins
      J
      Jorgensen
    • Ruby top 50 ?

      Hi all

      First - I just (cupple days ago) discoved this forum. And WOW 😲 - just what I have been missing since the http://www.sketchup.com went to goolge news πŸ˜„ THANKS

      There are so many great plugins, that it is quite dificult to find the best and must have ones πŸ˜‰

      Could it be a idΓ© to create somekind of top 50 (100) list ? So peolpe could vote or in another way have influence on the top list ?

      What about to be able to download script right from this site - so the amout of downloads could be added to the top list ?

      Just some ideas πŸ˜„ 😍 πŸ’­

      Great forum - thanks.

      Jorgensen
      Denmark

      posted in Plugins
      J
      Jorgensen
    • RE: Can anyone modify the xLine.rb function ?

      Hi Didier

      Even though I don't know many Ruby programmers, I'm sure you are one of the fastest and most skilled πŸ˜„

      Thanks
      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • Can anyone modify the xLine.rb function ?

      Hi

      I was looking for a way to create stippled lines.. and found the xLine.rb script useful.

      But when I translate a line inside a group to a xLine, it's pasted in the 'root' of the drawing - can anyonde modify this, so it's inserted inside the active group ?

      Jorgensen

      posted in Developers' Forum
      J
      Jorgensen
    • 1
    • 2
    • 15
    • 16
    • 17
    • 18
    • 19
    • 18 / 19