sketchucation logo sketchucation
    • Login
    πŸ€‘ SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

    Go to specified page by name using code

    Scheduled Pinned Locked Moved Developers' Forum
    4 Posts 2 Posters 105 Views 2 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.
    • renderizaR Offline
      renderiza
      last edited by

      Hi,

      I am familiar with (Sketchup.send_action "pageNext:") but I have been trying to go to a specific page by name and not by relative position. Is there a way to do this?

      Thanks

      [url=https://www.sketchupcode.com/:z3kqsidd]My Extensions ...[/url:z3kqsidd]

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

        https://developers.google.com/sketchup/docs/ourdoc/pages#selected_page=

        That's the one. You might have to iterate through the pages to find the one that is named what you want, then use the above command to go to that page.

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

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

          A little mock up code would look like this:

          model = Sketchup.active_model
          pages = model.pages
          
          my_page_name = "Page 2"
          page_num = 0
          
          pages.each do |e|
            if e.name == my_page_name
              pages.selected_page = model.pages[page_num]
              break
            end
            page_num+=1
          end
          

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

          1 Reply Last reply Reply Quote 0
          • renderizaR Offline
            renderiza
            last edited by

            It worked! πŸ’š

            Thank you so much!

            [url=https://www.sketchupcode.com/:z3kqsidd]My Extensions ...[/url:z3kqsidd]

            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