Need to Change Page in Frame

kluzra

New Member
I have created a Smart Frame using ADM. I have placed Smart Viewers on Page 1, 2, and 3. Created a Previous and Next button on Page 0. On Click of Next I want to increment the Page, and on Previous button clicked, decrement the Page. I know this can't be too hard, I just can't find the command to do this.

Thanks in advance,
Russ
 
(Assuming ADM2)

You need RUN SelectPage...

eg. something like:

/* Next */
RUN SelectPage
( DYNAMIC-FUNCTION('getCurrentPage':U) + 1 ).
 
Top