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

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.
  • R Offline
    renderiza
    last edited by 25 Oct 2012, 07:07

    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
    • C Offline
      Chris Fullmer
      last edited by 25 Oct 2012, 07:15

      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
      • C Offline
        Chris Fullmer
        last edited by 25 Oct 2012, 07:20

        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
        • R Offline
          renderiza
          last edited by 25 Oct 2012, 07:44

          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
          1 / 1
          • First post
            1/4
            Last post
          Buy SketchPlus
          Buy SUbD
          Buy WrapR
          Buy eBook
          Buy Modelur
          Buy Vertex Tools
          Buy SketchCuisine
          Buy FormFonts

          Advertisement