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

    [Plugin] Snapshot – (1.0.1) — updated 09.10.2012

    Scheduled Pinned Locked Moved Plugins
    74 Posts 12 Posters 54.8k Views 12 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.
    • G Offline
      glro
      last edited by

      i replaced the previous file in the rbz, by this new one, and yes, now it works perfectly

      a nice tool to keep tracks, and retrieve a lost model

      thank you

      1 Reply Last reply Reply Quote 0
      • D Offline
        driven
        last edited by

        been playing around with style
        no need to open, but do the icons download to other computers
        don't stay stuck when on the file posting, but I want to test if they download
        This is the Standard horrible mac one
        it's icon doesn't upload either??

        john

        learn from the mistakes of others, you may not live long enough to make them all yourself...

        1 Reply Last reply Reply Quote 0
        • simon le bonS Offline
          simon le bon
          last edited by

          This last release is impressively highly configurable - And then need to be tamed a bit

          The fact is that I'm not easy with the {nr} parameter and the "change digit by" line bellow. 😳

          I'm not able to make the incrementation work.

          Whatever I test, I obtain something like this: xyz_00**_1-0-0**.png ❓

          Need some further explanation 💭 😒

          simon

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

            @unknownuser said:

            Whatever I test, I obtain something like this: xyz_00_1-0-0.png

            That depends on what you want to get (I don't know).

            It's the printf format (I didn't need to implement it, otherwise it would be more complicated). You can write any separating characters and %d is replaced by the number.
            It should work that for a major version 1, minor version 3, you get
            [pre:1z9sy1o8]%d → file_1.skp
            %d.%d (or %1d.%1d) → file_1.3.skp (number between %d sets minimum width)
            %d.%2d → file_1. 3.skp (minimum width is filled up by spaces)
            %d.%02d → file_1.03.skp (with additional 0, it is filled by 0)
            %d-%02d → file_1-03.skp
            %d_%02d → file_1_03.skp
            %02d.%02d → file_01.03.skp
            %02d.%03d → file_01.003.skp[/pre:1z9sy1o8]

            1 Reply Last reply Reply Quote 0
            • simon le bonS Offline
              simon le bon
              last edited by

              Ok, thank you! I understand very better now.

              But Hum! incrementation still dont work for me. Is it something I'm doing wrong or is it something that don't work with the script ?

              http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/Aerilius_Snapshot_005.jpg

              By pressing my +1 button set as above

              a xyz.skp Snapshot should be saved as

              xyz_01_01.png (due to %02d_%02d)

              and due to "change the 2 digit by 1", I understand that the following +1 button depressed should increment the files by the second digit:
              xyz_01_02.png
              xyz_01_03.png...

              But my file is saved as
              xyz_01_00.png and instead of increment it , overwrites on itself.

              Still need help I guess 😳

              Simon.

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

                fixed!

                1 Reply Last reply Reply Quote 0
                • simon le bonS Offline
                  simon le bon
                  last edited by

                  @aerilius said:

                  fixed!

                  Hi Ae,
                  it is not necessarily very comfortable to be tester 😉 😕

                  It seems that increment still doesn't work...

                  (that decrements from 1 to 0 and then overwrites)

                  Cheers,
                  Simon.

                  PS:It should certainly be very useful to add the usages of {nr} parameter to the first post

                  1 Reply Last reply Reply Quote 0
                  • simon le bonS Offline
                    simon le bon
                    last edited by

                    ~~ content outdated --> erased ~~~

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

                      one step further...

                      would it be possible to:

                      scan a folder
                      open automatically all skp files in the folder
                      produce the thumbnail and the file shortcut
                      store them in the specified folder?

                      Because the plugin is great to keep track of the future skp files, and it would be nice to collect the informations also for the already existing skp files...

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        driven
                        last edited by

                        Hi Giro,
                        I just popped in to post another idea and thought I'd use your query to clarify some thoughts, hope you don't mind.
                        @glro said:

                        one step further...
                        would it be possible to:

                        scan a folder
                        open automatically all skp files in the folder

                        'SketchUp Menu' >> File >> Open >> Browse to Folder >> Select All .skp files >> Click 'Select'
                        on a mac all will open in SketchUp, does it not on a PC?

                        @unknownuser said:

                        produce the thumbnail and the file shortcut

                        does it not do this, now? on the mac the 'shortcut's' not needed if you 'apply' the new icon image to the .skp file

                        @unknownuser said:

                        store them in the specified folder?

                        This is already a preference, but once they're on the .skp storing a copy [as a material, maybe?] in the model would be more useful [for transferring to another computer or sharing]

                        @unknownuser said:

                        Because the plugin is great to keep track of the future skp files, and it would be nice to collect the informations also for the already existing skp files...

                        You can already use this with old or new files, the problem with batch processing [fully auto] is getting bad views of some models that haven't been optimally positioned when last saved. You could code in a 'Perspective >> Zoom Extents' type event, but what if its a part of a huge scheme or a 2D floorPlan etc...

                        john

                        learn from the mistakes of others, you may not live long enough to make them all yourself...

                        1 Reply Last reply Reply Quote 0
                        • D Offline
                          driven
                          last edited by

                          a hidden editor pops down on hover
                          allowing you to add all sorts of detail to the icon
                          Everything is made inside a SU WebDialog [could just be an extra option in this plugin]
                          I have a hard coded 'proof of principle' plugin that works on a mac and possibly a PC...
                          You can add your own borders [made in SU]
                          add logos
                          add text
                          can anyone else see any advantages to this concept or should I just finish it for myself and mac only.?

                          john

                          learn from the mistakes of others, you may not live long enough to make them all yourself...

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

                            @driven said:

                            Hi Giro,
                            I just popped in to post another idea and thought I'd use your query to clarify some thoughts, hope you don't mind.
                            @glro said:

                            one step further...
                            would it be possible to:

                            scan a folder
                            open automatically all skp files in the folder

                            'SketchUp Menu' >> File >> Open >> Browse to Folder >> Select All .skp files >> Click 'Select'

                            on my computer this doesn't open all skp files automatically...
                            i have to open each file manually one by one

                            but you are right about the snapshot: to make sure it is taken with the model in the right position, it would be better to have a look on it

                            maybe i can find the code to open automatically all files in a folder, one after the other, and set the zoom coefficient so that the model is visible completely

                            the only thing to do manually would be to gather all the skp files in a folder and then launch the plugin

                            i'll work on it soon

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

                              @driven said:

                              ...
                              can anyone else see any advantages to this concept or should I just finish it for myself and mac only.?

                              this plugin could be a useful addition to ae snapshot, because, as i understand it, it would make possible to add information on the thumbnail

                              when trying to retrieve a model, you would have the image, and also text, to make sure it is the model you are looking for

                              1 Reply Last reply Reply Quote 0
                              • simon le bonS Offline
                                simon le bon
                                last edited by

                                Hey! very interesting perspectives engaged by Giro and Driven 👍
                                +1 for Driven Icon Editor!

                                As the increment feature still don't work for me, I have tried to delete the plugin and to reinstall it. I have been surprised by the fact that my previous settings are reloaded.

                                That means that they are stored somewhere else, probably in a ini textfile (that I have not found).
                                Can you please Aerilius elucidate this point ? May be from this comes my problem ?

                                *s

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

                                  Hi,
                                  writing from my phone from Boulder (wonderful sunny morning after the bad weather yesterday).

                                  SketchUp gives us developera access to the default place where settings are stored, that is on Windows the registry. Open the start menu, "regedit" or run regedit.exe, then navigate to users, software, google, sketchup, plugins_ae

                                  More details/news later

                                  1 Reply Last reply Reply Quote 0
                                  • simon le bonS Offline
                                    simon le bon
                                    last edited by

                                    Thank you for the phone reply dear Ae.
                                    I see what I ignored that many plugins are installed into the registry. What happens if I delete a key? nothing annoying I guess. If the plugin is still in use, the key must be reloaded, am I right?

                                    Well forget this, I wish you a good trip in Boulder and a nice Basecamp 2012 with SCF friends 👍 👍 😄

                                    simon

                                    1 Reply Last reply Reply Quote 0
                                    • D Offline
                                      driven
                                      last edited by

                                      I've been having a look at 'less' cutting edge editor's to see if I can get enough usable feature on a PC version.

                                      I'll PM the volunteers Giro + simon to test the basic concept using hard linked files with this template.

                                      you should be able to edit any text and replace/remove the 'logo'
                                      here's the teaser images...
                                      using NicEdit for wysiwyg...should be more MISE friendly
                                      I won't get it packaged till monday night UK time
                                      john

                                      learn from the mistakes of others, you may not live long enough to make them all yourself...

                                      1 Reply Last reply Reply Quote 0
                                      • T Offline
                                        tulacong
                                        last edited by

                                        oh lala zeeeee....thank you

                                        1 Reply Last reply Reply Quote 0
                                        • D Offline
                                          driven
                                          last edited by

                                          Hi,

                                          sorry for delays, there's a couple of 'PC' unknowns for me that this version may have avoided, but needs some testing.
                                          I created 5 separate edit boxes that can be moved or resized or left blank[by deleting the content]

                                          they can be 'rich text' edited by hovering at the top of page [after clicking into a text box].

                                          if you can see the edit controls before you 'hover', I'll need to find another hide method, as they will be in the final image.... not good.

                                          To Test:

                                          1. unzip and place iConEdit folder in plugins
                                          2. open the iConEdit/ruby's/create_demo_Icon.rb in a text editor, 1. add your path i.e.
                                            iconSu.set_file("C:YOUR PATH/SketchUp/plugins/iConEdit/dragresize_iConEdit.html")
                                          3. then copy paste it into SketchUp 'Ruby Console'[if that works on a PC?]1. or type in
                                            load("C:YOUR PATH/SketchUp/plugins/iConEdit/ruby's/create_demo_Icon.rb") 1. and hit enter.

                                          see what works... report back

                                          latest, possibly 'PC' freindly version?
                                          all the hardcode files/images are in their right folders, don't move [for now]

                                          learn from the mistakes of others, you may not live long enough to make them all yourself...

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

                                            i tried

                                            on a PC

                                            following your indications, i managed to open a html

                                            but then, i don't know how to proceed

                                            the buttons in the html window are not active

                                            i learnt a lot, though, trying to understand your code

                                            thank you


                                            iconeditor html.jpg

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

                                            Advertisement