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

    [Plugin] AMS Library 3.7.1b (29 May 2021)

    Scheduled Pinned Locked Moved Plugins
    107 Posts 38 Posters 615.5k Views 38 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.
    • P Offline
      pnickles
      last edited by

      Different error messages now. See attached. Perhaps it's because I'm running Win8 via Parallels?


      Error_1.png


      Error_2.png


      3.png


      4.png

      1 Reply Last reply Reply Quote 0
      • Bryan KB Offline
        Bryan K
        last edited by

        Are there how to use instructions somewhere?

        See my portfolio at https://delphiscousin.blogspot.com/

        1 Reply Last reply Reply Quote 0
        • A Offline
          Anton_S
          last edited by

          Bryan, in case you're wondering if it's a plugin, well it's not. AMS library is more of a dependency for a few of my other plugins.

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

            How to get the version number?

            AMS.ver ?

            1 Reply Last reply Reply Quote 0
            • A Offline
              Anton_S
              last edited by

              Use AMS::Lib::VERSION It returns a string like "3.3.0".

              1 Reply Last reply Reply Quote 0
              • Bryan KB Offline
                Bryan K
                last edited by

                @anton_s said:

                Bryan, in case you're wondering if it's a plugin, well it's not. AMS library is more of a dependency for a few of my other plugins.

                Thanks Anton, but what I'm looking for is how to use it. It's installed without a problem but I need some kind of instructions or tutorial on how to use the controls.

                Thanks.

                See my portfolio at https://delphiscousin.blogspot.com/

                1 Reply Last reply Reply Quote 0
                • A Offline
                  Anton_S
                  last edited by

                  The first post contains a link to the library's documentation. I not particularly sure if that's what you desire though.

                  1 Reply Last reply Reply Quote 0
                  • Bryan KB Offline
                    Bryan K
                    last edited by

                    Anton, thanks. I found some great video tutorials. https://www.youtube.com/user/samketner/videos?sort=dd%26amp;view=0%26amp;shelf_id=0

                    My new problem is that the UI menu is not displaying correctly nor or the contents.. There are no tabs and the menu window is not resizable so I cannot access the contents at the bottom of the screen.

                    Here is a screen shot.

                    Any ideas?


                    MS Physics UI.JPG

                    See my portfolio at https://delphiscousin.blogspot.com/

                    1 Reply Last reply Reply Quote 0
                    • L Offline
                      ladyquestio
                      last edited by

                      I keep getting this error. What is happening?
                      http://tanyaloser.tripod.com/loaderror10.JPG

                      1 Reply Last reply Reply Quote 0
                      • A Offline
                        Anton_S
                        last edited by

                        Hmm. I'm not getting any errors in my SU8. Are you using the latest versions of both plugins? If not, try completely removing both and installing once again.

                        Edit: Actually I'm getting a similar error when I attempt to start MSPhysics simulation in SU8. I haven't been able to determine the cause, so try sticking to SU2013+.

                        Edit: I will ensure the compatibility with SU version prior to 2013 at some point.

                        1 Reply Last reply Reply Quote 0
                        • L Offline
                          ladyquestio
                          last edited by

                          Anton:
                          I removed all the files as per instruction. Defragged the HD. then reloaded SU8 . I have a video of what happens.
                          Watch and see. then Tell me what I did wrong.
                          https://youtu.be/nUL87J2N79A

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            Anton_S
                            last edited by

                            Sorry, I forgot to test it on Windows XP. It should be fixed now. Upgrade to AMS Library, version 3.5.2.

                            1 Reply Last reply Reply Quote 0
                            • G Offline
                              GalvinHRO
                              last edited by

                              with the AMS library i can get the name of the default tray but not the object itself or the child dialogs like "Materials" or "Entity Info" anybody knows if this feature exist or a workaround. If not is it possible to make one with the win32API?

                              Thanks

                              1 Reply Last reply Reply Quote 0
                              • A Offline
                                Anton_S
                                last edited by

                                Galvin,

                                The Tray window structure in SU2018 is as follows:
                                Tray Window Structure.png
                                Provided that you have the handle of the tray, you can then obtain the first two levels of child windows, and then iterate through all windows of that child window to get all the dialogs.

                                With AMS Library, you can use the following function to get all trays:

                                
                                trays = AMS;;Sketchup.get_active_dialogs.find_all { |handle|
                                  AMS;;Window.get_class_name(handle) =~ /Afx;MiniFrame/i
                                }
                                
                                # => [133134]
                                
                                

                                Then once you have the trays, you can get the first two levels of child windows:

                                
                                trays.each { |tray|
                                  c1 = AMS;;Window.get_related(tray, 5) # GW_CHILD
                                  next unless c1
                                  c2 = AMS;;Window.get_related(c1, 5) # GW_CHILD
                                  next unless c2
                                  dialogs = AMS;;Window.get_child_windows(c2, false, false)
                                  panes = dialogs.find_all { |dialog|
                                    AMS;;Window.get_class_name(dialog) =~ /CPanelHeader/i
                                  }
                                  panes.each { |pane|
                                    # First child window contains pane caption
                                    c3 = AMS;;Window.get_related(pane, 5) # GW_CHILD
                                    next unless c3
                                    puts AMS;;Window.get_caption(c3)
                                  }
                                }
                                
                                # => Layers
                                # => Shadows
                                # => Fog
                                # => Materials
                                # => Soften Edges
                                # => Styles
                                # => Entity Info
                                
                                

                                Note that this will not work with sketchup versions prior to 14.

                                Anton

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

                                  Mac=NOPE!

                                  1 Reply Last reply Reply Quote 0
                                  • A Offline
                                    April Zylith
                                    last edited by

                                    MSPhysics_v1.0.3 does not work on SU 2019.

                                    What should I do?
                                    System:
                                    OS: Windows 10 Pro 64 bit.
                                    App: Sketchup Pro 2019 64 bit.


                                    When open SU 2019, Showing These errors.


                                    When open SU 2019, Showing These errors.

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

                                      @april zylith said:

                                      MSPhysics_v1.0.3 does not work on SU 2019.

                                      What should I do?

                                      You're right. It doesn't work. What can you do? Be patient. The author has been working on an update and will release it when it is ready.

                                      Etaoin Shrdlu

                                      %

                                      (THERE'S NO PLACE LIKE)

                                      G28 X0.0 Y0.0 Z0.0

                                      M30

                                      %

                                      1 Reply Last reply Reply Quote 0
                                      • Y Offline
                                        young77
                                        last edited by

                                        Hi...
                                        I just want to make sure is this plugin doesnt work for sketchup 2021 ?
                                        is there any possible way to make this enable to run in skp 2021 ?

                                        thanks,
                                        Hp

                                        1 Reply Last reply Reply Quote 0
                                        • P Offline
                                          pipinek
                                          last edited by

                                          @young77 said:

                                          Hi...
                                          I just want to make sure is this plugin doesnt work for sketchup 2021 ?
                                          is there any possible way to make this enable to run in skp 2021 ?

                                          thanks,
                                          Hp

                                          Splendid plugin,

                                          any updates for SSU 2021. Even paid?

                                          Thank you in advance if any

                                          1 Reply Last reply Reply Quote 0
                                          • Q Offline
                                            qifu123
                                            last edited by

                                            I need some help, AMS Library 3.6.0h In sketchup 2021 error

                                            载入文件 C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/main.rb 时出错
                                            Error: #<IOError: The required, staged c extension file, "C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/libraries/stage/win64/2.7/ams_lib.so", is missing!>
                                            C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/extension_manager.rb:204:in block in require_all' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/extension_manager.rb:201:in each'
                                            C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/extension_manager.rb:201:in require_all' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib/main.rb:148:in <top (required)>'
                                            C:/Program Files/SketchUp/SketchUp 2021/Tools/extensions.rb:197:in require' C:/Program Files/SketchUp/SketchUp 2021/Tools/extensions.rb:197:in load'
                                            C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib.rb:32:in register_extension' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib.rb:32:in module:Lib'
                                            C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib.rb:7:in <module:AMS>' C:/Users/Administrator/AppData/Roaming/SketchUp/SketchUp 2021/SketchUp/Plugins/ams_Lib.rb:5:in <top (required)>'

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 4 / 6
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement