Go to specified page by name using code
-
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
-
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.
-
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 -
It worked!

Thank you so much!
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better π
Register LoginAdvertisement