I am creating an Assessment of sorts, and needed to know how to code bookmarks (adding a reg value) and logic to pages which will cause Autoplay to jump to a specific page based on that reg value. I currently have it adding a reg value on page loads. Upon Autoplay run, it checks that value. I have also tried a nested IF statement, unsuccessful. It will work with just one value, but when trying multiple values such as:
IF (%GetLocation% = 1)
Page.Jump("Video")
END IF
IF (%GetLocation% = 2)
Page.Jump("PPT")
END IF
IF (%GetLocation% = 3)
Page.Jump("Assessment")
END IF
etc......it will not work.....I have also tried setting labels in order to jump to the next IF statement....nothing seems to be working. Anyone Please HELP!
IF (%GetLocation% = 1)
Page.Jump("Video")
END IF
IF (%GetLocation% = 2)
Page.Jump("PPT")
END IF
IF (%GetLocation% = 3)
Page.Jump("Assessment")
END IF
etc......it will not work.....I have also tried setting labels in order to jump to the next IF statement....nothing seems to be working. Anyone Please HELP!
Comment