- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I put a button beside the image field that teh user can click to activate it. On the Initialize event of the Image field set the access to "readOnly" (ImageField1.access = "readOnly". Then on the click event of the button use code like this:
var pswd = app.response("This image is protected by a password. \n Please enter a valid password.");
if (pswd == "password"){
ImageField1.access
= "";
} else
{
app.alert("You entered an invalid password!")
}
Paul
Views
Replies
0 Likes
Total Likes