December 14, 200421 yr Hi , I am trying to get a button that returns to the last layout it does not need to remember the last four layouts just the last one it was on. I am also trying to link to a pdf document through a button im trying OpenURL but to no avail does the pdf document need to be served at the moment im saying openURL pdf_document/about.pdf thanks for your time , DR
December 15, 200421 yr I am trying to get a button that returns to the last layout it does not need to remember the last four layouts just the last one it was on. Use a global text field to store the layout name when you run a navigation script. Have your nav scripts set the global with: Set Field [ gLastLayout ; get(LayoutName) ] Then to return to the previous layout, use: Go to Layout [ by field: gLastLayout ] You could also do this by layout number.
December 15, 200421 yr Dusty, If you are trying to open a pdf file, use the Send Event script step, not the Open URL script step. HTH, Mike
Create an account or sign in to comment