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

    [Plugin] Add Named Scene

    Scheduled Pinned Locked Moved Plugins
    10 Posts 6 Posters 10.5k Views 6 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.
    • M Offline
      mirale999
      last edited by mirale999

      Hi all,I'm a newbie in ruby, although being here several years...
      I made a little plugin that lets you give a name upon adding a new scene~

      Name : Named_Scene.rb

      Date : v1.0 11/12/6

      Description : To Let you rename it upon adding a new scene

      Menu Item : View -> Add Named Scene

      %(#a2a2a2)[Still have a problem, I want that: when clicking the menu or hot key, give you a small inputbox, and write the name, and create, you can also not change the default name, and add the new scene as normal~ The default name of the new scene can increase each time, I made the "Scene_Num" to do it but everytime it is "scene 1".

      Who can teach me how to? 😕]

      Thanks Thomthom~! I've updated the attachment below!
      Now it works like this :
      Hit the hotkey or click the menu item, give you an inputbox, you can choose to give the new a unique name, Or leave it to its default and create like normal: Scene 1- Scene 2- Scene 3-...
      The first one define the new tab's name according to the number of existing pages:

      Named_Scene.rb

      Finally make the second one that do exactly the same thing as the normal scene tool, scene 1 - scene 2 - scene 3 - scene 4 - ... ignoring the number of existing pages, %(#BF0000)[will not have any duplicate names! 😄]
      & Use the

      File;;basename(__FILE__)
      

      to ignore its own file name.

      Named_Scene2.rb

      # mirale999 first release, with Thomthom's help.
      # Permission to use, copy, modify, and distribute this software for 
      # any purpose and without fee is hereby granted
      # Freely use
      # Name               ;          Named_Scene.rb
      # Date               ;          v1.0 11/12/6
      # Description        ;          To Let you rename it upon adding a new scene
      # Menu Item          ;          View -> Add Named Scene
      
      # It works like this ;
      # Hit the hotkey or click the menu item, give you an inputbox, you can
      # choose to give the new a unique name, Or leave it to its default and
      # create like normal; Scene 1- Scene 2- Scene 3-...
      #----------------------------------------------------------------------------
      
      require 'sketchup.rb'
      
      module Named_Scene
        
        # Add menu items.
        unless file_loaded? File;;basename(__FILE__)
          add_separator_to_menu("View")
          UI.menu("View").add_item("Add Named Scene") { self.add_namedScene }
        end
      
        @@scene_i = 1
      
        def self.add_namedScene
          model = Sketchup.active_model
          pages = model.pages    
      
          # Ask user for page name.
          list = []
          prompts = ["Scene Name;"]
          defaults = ["Scene"+" "+"#{@@scene_i}" ]
          input = UI.inputbox( prompts, defaults, list, "Add Named Scene" )
      
          # Check if the user cancelled.
          return if input==false
      
          # Get data from result array
          scene_name = input
          @@scene_i = @@scene_i + 1
      
          status = pages.add( scene_name.to_s )
        end
        
      end
      
      #-----------------------------------------------------------------------------
          file_loaded File;;basename(__FILE__)
      #-----------------------------------------------------------------------------
       
      
      

      Hi all, after several years this small plugin has a bug because of the new version of ruby, and mariocha adds LanguageHandler in this version.The new modified version is here:
      Named_Scene2.rbz

      paranoia is a higher form of awareness...

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

        @mirale999 said:

        Still have a problem, I want that: when clicking the menu or hot key, give you a small inputbox, and write the name, and create, you can also not change the default name, and add the new scene as normal~ The default name of the new scene can increase each time, I made the "Scene_Num" to do it but everytime it is "scene 1".

        ` 'Scene1'.next

        Scene2`

        ❓

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

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

          Ah - looking at your code now:

          <span class="syntaxdefault"><br /></span><span class="syntaxcomment">#&nbsp;mirale999&nbsp;first&nbsp;release<br />#&nbsp;Permission&nbsp;to&nbsp;use,&nbsp;copy,&nbsp;modify,&nbsp;and&nbsp;distribute&nbsp;this&nbsp;software&nbsp;for&nbsp;<br />#&nbsp;any&nbsp;purpose&nbsp;and&nbsp;without&nbsp;fee&nbsp;is&nbsp;hereby&nbsp;granted<br />#&nbsp;Freely&nbsp;use<br />#&nbsp;Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Named_Scene.rb<br />#&nbsp;Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0&nbsp;11/12/6<br />#&nbsp;Description&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Let&nbsp;you&nbsp;rename&nbsp;it&nbsp;upon&nbsp;adding&nbsp;a&nbsp;new&nbsp;scene<br />#&nbsp;Menu&nbsp;Item&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;View&nbsp;->&nbsp;Add&nbsp;Named&nbsp;Scene<br />#----------------------------------------------------------------------------<br /><br /></span><span class="syntaxkeyword">require&nbsp;</span><span class="syntaxstring">'sketchup.rb'<br />&nbsp;<br /></span><span class="syntaxdefault">Scene_Num</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">0<br /><br /><br />module&nbsp;Named_Scene<br />&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;unless&nbsp;file_loaded</span><span class="syntaxkeyword">?(</span><span class="syntaxstring">'Named_Scene.rb'</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Add&nbsp;menu&nbsp;items.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">add_separator_to_menu</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"View"</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">menu</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"View"</span><span class="syntaxkeyword">).</span><span class="syntaxdefault">add_item</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"Add&nbsp;Named&nbsp;Scene"</span><span class="syntaxkeyword">)&nbsp;{&nbsp;</span><span class="syntaxdefault">self</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">Add_NamedScene&nbsp;</span><span class="syntaxkeyword">}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">end<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;def&nbsp;self</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">Add_NamedScene<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;model&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">Sketchup</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">active_model<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pages&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">pages<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Ask&nbsp;user&nbsp;for&nbsp;page&nbsp;name.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxkeyword">list=[]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">prompts</span><span class="syntaxkeyword">=[</span><span class="syntaxstring">"Scene&nbsp;Name;"</span><span class="syntaxkeyword">]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">defaults</span><span class="syntaxkeyword">=[(</span><span class="syntaxstring">"Scene"</span><span class="syntaxkeyword">+&nbsp;</span><span class="syntaxdefault">Scene_Num</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">to_s</span><span class="syntaxkeyword">)&nbsp;]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">input</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">inputbox</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">prompts</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">defaults</span><span class="syntaxkeyword">,&nbsp;list,&nbsp;</span><span class="syntaxstring">"Add&nbsp;Named&nbsp;Scene"&nbsp;</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Check&nbsp;if&nbsp;the&nbsp;user&nbsp;cancelled.<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxkeyword">return&nbsp;if&nbsp;</span><span class="syntaxdefault">input</span><span class="syntaxkeyword">==</span><span class="syntaxdefault">false<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Get&nbsp;data&nbsp;from&nbsp;result&nbsp;array<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">scene_name&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">input<br /><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;status&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">pages</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">add&nbsp;scene_name</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">to_s<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Scene_Num</span><span class="syntaxkeyword">=</span><span class="syntaxdefault">Scene_Num&nbsp;</span><span class="syntaxkeyword">+&nbsp;</span><span class="syntaxdefault">1<br />end<br /><br /></span><span class="syntaxcomment">#-----------------------------------------------------------------------------<br /></span><span class="syntaxdefault">file_loaded</span><span class="syntaxkeyword">(</span><span class="syntaxstring">'Named_Scene.rb'</span><span class="syntaxkeyword">)<br /></span><span class="syntaxcomment">#-----------------------------------------------------------------------------<br />&nbsp;</span><span class="syntaxdefault"></span>
          

          Your Scene is a constant. But you are using it as a variable.

          You need to look into the difference between variables and constants. Initial capital letter means a constant in Ruby.

          Here's an amended version:

          <span class="syntaxdefault"><br /></span><span class="syntaxcomment">#&nbsp;mirale999&nbsp;first&nbsp;release<br />#&nbsp;Permission&nbsp;to&nbsp;use,&nbsp;copy,&nbsp;modify,&nbsp;and&nbsp;distribute&nbsp;this&nbsp;software&nbsp;for&nbsp;<br />#&nbsp;any&nbsp;purpose&nbsp;and&nbsp;without&nbsp;fee&nbsp;is&nbsp;hereby&nbsp;granted<br />#&nbsp;Freely&nbsp;use<br />#&nbsp;Name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Named_Scene.rb<br />#&nbsp;Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0&nbsp;11/12/6<br />#&nbsp;Description&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Let&nbsp;you&nbsp;rename&nbsp;it&nbsp;upon&nbsp;adding&nbsp;a&nbsp;new&nbsp;scene<br />#&nbsp;Menu&nbsp;Item&nbsp;&nbsp;&nbsp;;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;View&nbsp;->&nbsp;Add&nbsp;Named&nbsp;Scene<br />#----------------------------------------------------------------------------<br /><br /></span><span class="syntaxkeyword">require&nbsp;</span><span class="syntaxstring">'sketchup.rb'<br /><br /><br /></span><span class="syntaxdefault">module&nbsp;Named_Scene<br />&nbsp;<br />&nbsp;&nbsp;unless&nbsp;file_loaded</span><span class="syntaxkeyword">?(</span><span class="syntaxstring">'Named_Scene.rb'</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Add&nbsp;menu&nbsp;items.<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">add_separator_to_menu</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"View"</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">menu</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"View"</span><span class="syntaxkeyword">).</span><span class="syntaxdefault">add_item</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"Add&nbsp;Named&nbsp;Scene"</span><span class="syntaxkeyword">)&nbsp;{&nbsp;</span><span class="syntaxdefault">self</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">add_namedScene&nbsp;</span><span class="syntaxkeyword">}<br />&nbsp;&nbsp;</span><span class="syntaxdefault">end<br /><br />&nbsp;&nbsp;def&nbsp;self</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">add_namedScene<br />&nbsp;&nbsp;&nbsp;&nbsp;model&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">Sketchup</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">active_model<br />&nbsp;&nbsp;&nbsp;&nbsp;pages&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">model</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">pages<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Ask&nbsp;user&nbsp;for&nbsp;page&nbsp;name.<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxkeyword">list&nbsp;=&nbsp;[]<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">prompts&nbsp;</span><span class="syntaxkeyword">=&nbsp;[</span><span class="syntaxstring">"Scene&nbsp;Name;"</span><span class="syntaxkeyword">]<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">defaults&nbsp;</span><span class="syntaxkeyword">=&nbsp;[(</span><span class="syntaxstring">"Scene#{pages.count}"</span><span class="syntaxkeyword">)&nbsp;]<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">input&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">UI</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">inputbox</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">prompts</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">defaults</span><span class="syntaxkeyword">,&nbsp;list,&nbsp;</span><span class="syntaxstring">"Add&nbsp;Named&nbsp;Scene"&nbsp;</span><span class="syntaxkeyword">)<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Check&nbsp;if&nbsp;the&nbsp;user&nbsp;cancelled.<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxkeyword">return&nbsp;if&nbsp;</span><span class="syntaxdefault">input</span><span class="syntaxkeyword">==</span><span class="syntaxdefault">false<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">#&nbsp;Get&nbsp;data&nbsp;from&nbsp;result&nbsp;array<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">scene_name&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">input<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;status&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">pages</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">add</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">scene_name&nbsp;</span><span class="syntaxkeyword">)<br />&nbsp;&nbsp;</span><span class="syntaxdefault">end<br />&nbsp;&nbsp;<br />end<br /><br /></span><span class="syntaxcomment">#-----------------------------------------------------------------------------<br /></span><span class="syntaxdefault">file_loaded</span><span class="syntaxkeyword">(</span><span class="syntaxstring">'Named_Scene.rb'</span><span class="syntaxkeyword">)<br /></span><span class="syntaxcomment">#-----------------------------------------------------------------------------<br />&nbsp;</span><span class="syntaxdefault"></span>
          

          I make the default name of the scene be made out of the number of existing pages in the current model. If you do it your way, with instance variables instead of constants, then it would just keep on counting between models.

          I also cleaned up your indentation. Always keep your source code clean and organized, good indentation makes it easier to read - which is essential to debug and maintain your code.

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

          1 Reply Last reply Reply Quote 0
          • M Offline
            mirale999
            last edited by

            @thomthom said:

            Ah - looking at your code now:

            Your Scene is a constant. But you are using it as a variable.

            You need to look into the difference between variables and constants. Initial capital letter means a constant in Ruby.

            Here's an amended version:

            I make the default name of the scene be made out of the number of existing pages in the current model. If you do it your way, with instance variables instead of constants, then it would just keep on counting between models.

            I also cleaned up your indentation. Always keep your source code clean and organized, good indentation makes it easier to read - which is essential to debug and maintain your code.

            Thanks Thomas~!! I use your code and now it's a correct version!
            And the Scene name is the very same as the normal one~

            paranoia is a higher form of awareness...

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

              But.... if you delete a scene or two you'll end up with duplicate names. So if you want to avoid that, then you need to make some extra checks.

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

              1 Reply Last reply Reply Quote 0
              • M Offline
                mirale999
                last edited by

                @thomthom said:

                But.... if you delete a scene or two you'll end up with duplicate names. So if you want to avoid that, then you need to make some extra checks.

                Done!

                paranoia is a higher form of awareness...

                1 Reply Last reply Reply Quote 0
                • mariochaM Offline
                  mariocha
                  last edited by

                  Hum.. This plugin is a very good idea. Often wished this would be the native way to do.
                  But for me it the bracket and quote signs are unwanted?
                  See scene 555 attached.


                  name.png

                  %(#008000)[Mario C.
                  Every rule has exceptions, but some.]

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

                    @mariocha said:

                    Hum.. This plugin is a very good idea. Often wished this would be the native way to do.
                    But for me it the bracket and quote signs are unwanted?
                    See scene 555 attached.

                    this is because the plugin has been written with a previous version of ruby

                    instead of

                    # Get data from result array
                    scene_name = input
                    

                    put

                    # Get data from result array
                    scene_name = input[0]
                    
                    1 Reply Last reply Reply Quote 0
                    • C Offline
                      chrisconcise
                      last edited by

                      Good Job on your plugin, We are often creating scenes, and it is a pain to not be able name it once created. When creating a scene, the scene name it add includes [""], It would be really helpful to me if it could be modified, so that the scene name is only what you enter into the field, maybe I am doing something wrong, please advise if you would
                      thanks
                      Chris

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

                        @chrisconcise said:

                        Good Job on your plugin, We are often creating scenes, and it is a pain to not be able name it once created. When creating a scene, the scene name it add includes [""], It would be really helpful to me if it could be modified, so that the scene name is only what you enter into the field, maybe I am doing something wrong, please advise if you would
                        thanks
                        Chris

                        I need exactly this.

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

                        Advertisement