sketchucation logo sketchucation
    • Login
    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!
    ⚠️ Update | Sketchucation Tools 5.0.8 released with licensing improvements and bugfixes Download

    New API doc - typos and questions

    Scheduled Pinned Locked Moved Developers' Forum
    370 Posts 35 Posters 355.4k Views 35 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.
    • scottliningerS
      scottlininger
      last edited by

      @thomthom said:

      ToolObservers? How are they related to onClose and onOpen?

      I meant to say, InstanceObservers. πŸ˜›

      In any case, they fire fine for me.

      • Scott Lininger
        SketchUp Software Engineer
        Have you visited the Ruby API Docs?
      1 Reply Last reply
      Reply Quote 0
      • J
        Jim
        last edited by

        @remus said:

        @unknownuser said:

        Jim, is there a way that I could be granted edit rights just to this thread? Then I could add a FIXED note inside the reports as I correct them?

        I'll ask gai if he can make you a mod for the ruby forum πŸ‘

        Scott, there's no way to give edit-rights on a single topic. So you get edit rights to the whole Ruby Forum.

        If you have a list of changes, we can take care of marking them fixed. I'd hate to see you spend time doing it if you have more important work to do.

        Hi

        1 Reply Last reply
        Reply Quote 0
        • GaieusG
          Gaieus
          last edited by

          Hi Scott, I have sent you a PM, too, about it. The mods have also be informed to welcome you in the team.
          πŸ˜†

          Gai...

          1 Reply Last reply
          Reply Quote 0
          • thomthomT
            thomthom
            last edited by

            @unknownuser said:

            @thomthom said:

            ToolObservers? How are they related to onClose and onOpen?

            I meant to say, InstanceObservers. πŸ˜›

            In any case, they fire fine for me.

            Hmm... When I tried to implement it in my plugin the onClose never fired. I also tried Jim's observer test script: http://sketchuptips.blogspot.com/2008/03/plugin-oberver-tests.html - and that never fired either. Could you post a working sample where onClose fires? (The onOpen always works though.)

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

            1 Reply Last reply
            Reply Quote 0
            • scottliningerS
              scottlininger
              last edited by

              @thomthom said:

              Could you post a working sample where onClose fires?

              Give this a go... Could be that we're seeing a sneaky bug...

              class MyInstanceObserver < Sketchup;;InstanceObserver
                 def onOpen(instance)
                   UI.messagebox("onOpen; " + instance.to_s)
                 end
              
                 def onClose(instance)
                   UI.messagebox("onClose; " + instance.to_s)
                 end
              end
              
              model = Sketchup.active_model
              model.definitions[0].instances[0].add_observer(MyInstanceObserver.new)
              
              • Scott Lininger
                SketchUp Software Engineer
                Have you visited the Ruby API Docs?
              1 Reply Last reply
              Reply Quote 0
              • thomthomT
                thomthom
                last edited by

                Nopes. Doesn't work.

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

                1 Reply Last reply
                Reply Quote 0
                • J
                  Jim
                  last edited by

                  Works for me...

                  Hi

                  1 Reply Last reply
                  Reply Quote 0
                  • thomthomT
                    thomthom
                    last edited by

                    Scott just found out that it works if the script loads when SU loads. But if you put it a subfolder for instance, and then manually load it, it won't work.
                    Jim's Observer tests never fire the event in SU7. However, in SU6 it works fine.

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

                    1 Reply Last reply
                    Reply Quote 0
                    • J
                      Jim
                      last edited by

                      Just wondering if you have Dynamic Components on, and what happens if you turn them off?

                      Hi

                      1 Reply Last reply
                      Reply Quote 0
                      • thomthomT
                        thomthom
                        last edited by

                        @jim said:

                        Just wondering if you have Dynamic Components on, and what happens if you turn them off?

                        Well I'll be! After disabling DCs the onClose even works!

                        btw, the DefinitionObserver works in SU6. But not SU7. Noticed that when I tested this observer in SU6.

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

                        1 Reply Last reply
                        Reply Quote 0
                        • scottliningerS
                          scottlininger
                          last edited by

                          Self note: need to add an explanation of how add_face works in relation to which "side" of the face is inside vs. outside, and document the exception where faces drawn at z=0 are always drawn with inside facing upward.

                          πŸ˜„

                          -Scott Lininger

                          • Scott Lininger
                            SketchUp Software Engineer
                            Have you visited the Ruby API Docs?
                          1 Reply Last reply
                          Reply Quote 0
                          • scottliningerS
                            scottlininger
                            last edited by

                            From Didier's post:

                            404 Not Found

                            favicon

                            (www.sketchucation.com)

                            Need to add an FAQ for getting to installation directory of SU, for folks trying to build installers (and find out a mac equivalent.)

                            • Scott Lininger
                              SketchUp Software Engineer
                              Have you visited the Ruby API Docs?
                            1 Reply Last reply
                            Reply Quote 0
                            • A
                              avariant
                              last edited by

                              BoundingBox.valid?

                              text says

                              status
                                  true if the bounding box is valid (not empty), false if it is not valid (empty)
                              

                              but the code example has it exactly the opposite:

                               bbox = Sketchup.active_model.bounds
                               status = bbox.valid?
                               if (status)
                                 # If true, bounding box is empty.
                               else
                                 # If false, bounding box contains entities.
                               end
                              
                              1 Reply Last reply
                              Reply Quote 0
                              • Chris FullmerC
                                Chris Fullmer
                                last edited by

                                The introduction to RenderingOptions class states:

                                @unknownuser said:

                                The majority of the rendering information returned exists in the Model Info > Display section of SketchUp.

                                There is no longer a Model Info > Distplay section of SketchUp. I suppose it should say its in the styles inspector or something like that.

                                Error 404 (Not Found)!!1

                                favicon

                                (code.google.com)

                                Also, the API doesn't list these:

                                DisplayQueWidth
                                DisplayDims
                                DisplaySketchAxes
                                DisplayText
                                DisplayWatermarks
                                DrawDepthQue
                                DrawLineEnds
                                DrawProfilesOnly
                                DrawUnderground
                                EdgeType
                                FogEndDist*- listed as FogEnd in the API*
                                FogStartDist - listed as FogStart in the API
                                HideConstructionGeometry
                                LineEndWidth
                                LockedColor
                                SectionTransparencyMode
                                ShowViewName

                                And the API lists these which don't appear to be valid:
                                DisplayFogEdges
                                FogDensity
                                FogEnd - appears to actually be FogEndDist
                                FogStart*- appears to actually be FogStartDist*
                                FogType

                                I tried to be thorough, but perhaps I missed something. It might not be bad to double check my work πŸ˜„

                                Chris

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

                                1 Reply Last reply
                                Reply Quote 0
                                • Chris FullmerC
                                  Chris Fullmer
                                  last edited by

                                  Error 404 (Not Found)!!1

                                  favicon

                                  (code.google.com)

                                  the onReturn method is showing an example for onMouseLeave

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

                                  1 Reply Last reply
                                  Reply Quote 0
                                  • Chris FullmerC
                                    Chris Fullmer
                                    last edited by

                                    Error 404 (Not Found)!!1

                                    favicon

                                    (code.google.com)

                                    Does not give an example of view.zoom_extents. It gives an example of view.zoom

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

                                    1 Reply Last reply
                                    Reply Quote 0
                                    • thomthomT
                                      thomthom
                                      last edited by

                                      ModelObserver.onExplode
                                      http://code.google.com/apis/sketchup/docs/ourdoc/modelobserver.html#onExplode

                                      @unknownuser said:

                                      The onExplode method is invoked whenever a component anywhere in this model is exploded. This is an easier way to watch explode events vs. attaching an InstanceObserver to every instance in the model.

                                      The docs in InstanceObserver http://code.google.com/apis/sketchup/docs/ourdoc/instanceobserver.html doesn't mention any explode event. All though, I imagine there used to be. ModelObserver.onExplode is new to SU7, and I'm sure there was an explode related event in SU6. But it's MIA atm.

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

                                      1 Reply Last reply
                                      Reply Quote 0
                                      • thomthomT
                                        thomthom
                                        last edited by

                                        Face.position_material
                                        http://code.google.com/intl/nb/apis/sketchup/docs/ourdoc/face.html#position_material

                                        Doesn't explain the difference between using 2,4,6 or 8 points.

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

                                        1 Reply Last reply
                                        Reply Quote 0
                                        • thomthomT
                                          thomthom
                                          last edited by

                                          Vector3d.samedirection?
                                          http://code.google.com/intl/nb/apis/sketchup/docs/ourdoc/vector3d.html#samedirection?

                                          @unknownuser said:

                                          vector = Geom::Vector3d.new 0,0,1
                                          vector2 = Geom::Vector3d.new 0,1,0
                                          status = vector.sime_direction? vector2

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

                                          1 Reply Last reply
                                          Reply Quote 0
                                          • thomthomT
                                            thomthom
                                            last edited by

                                            Face.mesh
                                            http://code.google.com/intl/nb/apis/sketchup/docs/ourdoc/face.html#mesh

                                            @unknownuser said:

                                            The mesh method creates a polygon mesh that represents the face. See the PolygonMesh class for more information.

                                            Valid flags are:

                                            * 0: Include PolygonMeshPoints,
                                            * 1: Include PolygonMeshUVQFront,
                                            * 2: Include PolygonMeshUVQBack,
                                            * 4: Include PolygonMeshNormals.
                                            

                                            Add these numbers together to combine flags. A value of 5 will include all flags, for example.

                                            No example given.

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

                                            1 Reply Last reply
                                            Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better πŸ’—

                                            Register Login
                                            • 1
                                            • 2
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 18
                                            • 19
                                            • 7 / 19
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement