Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

LiveCycle form doesn't work with Adobe Reader DC

Avatar

Level 2

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?

2 Replies

Avatar

Level 10

Your syntax is wrong.

Use...


if  (fieldname.rawValue) == "0"  {


          pagename.presence = "hidden";


} else {


          pagename.presence = "visible";


}


Avatar

Level 2

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.