July 19, 200619 yr Noob question here. How do i create a button that'll take me to the last page I came from? I have a page that users might access from anywhere within the process and I need the button to take them back to where they came from. thanks in advance.
July 20, 200619 yr Set up a Global Number field (I'll call it gLastLayout), and on every layout change (meaning you have to script all of your navigation), capture the layout number of the current layout before going to the new layout via: Set Field[gLastLayout;Get(LayoutNumber)] Now you can set your 'back' button to: Go To Layout [Layout Number by Calculation; gLastLayout] Because you're using a global, this will work independently for each user in a multi-user environment. -Stanley
Create an account or sign in to comment