


Hi, after Reader DC installing, my LiveCycle form doesn't work anymore. I can't see some parts of the form appearing only if I click a specific radio-button :
if fieldname.rawValue = "0" {
pagename.presence = "hidden";
} else {
pagename.presence = "visible";
}
Can you help me?
Views
Replies
Sign in to like this content
Total Likes
Your syntax is wrong.
Use...
if (fieldname.rawValue) == "0" {
pagename.presence = "hidden";
} else {
pagename.presence = "visible";
}
Views
Replies
Sign in to like this content
Total Likes
Sorry, my syntax is correct in the form, I only was wrong to write here the example.
Adobe Reader DC 2015.008 doesn't work with the correct syntax as you indicate above.
After installing the previous 2015.007 , everything works as before.
Views
Replies
Sign in to like this content
Total Likes