Welcome to the Indigo Rose Software discussion forums! You will need to sign up for a forum account and login before you can post. Need help? View the Forum FAQ.
I'm converting from 3.0 to 4.0 and having trouble with passwords and not understanding the help file. Can I get some simple step by step instrutions.
Thanks
<ol type="1">[*] Create two pages[*] On the first page add a Text Object with the following Actions OnClick:
<font color=purple>%JumpPW% = Dialog.GetInformation ("Verify Password", "Please enter your password:")
%PasswordPos% = GlobalList[JumpToPage2Passwords].Find (%JumpPW%)
IF (%PasswordPos% = -1)
%Result% = Dialog.MessageBox ("Invalid Password", "Incorrect password. You may n...", Ok, Stop)
ELSE
Page.Jump ("Page 2")
END IF</font color=purple>
[*] On the second page, add a Text Object with the following Actions OnClick:
<font color=purple>Page.Jump ("Page 1")</font color=purple>
[*] Create a Global list called:
<font color=purple>JumpToPage2Passwords</font color=purple> - and set a password in there.[/list=a]
Comment