Hello - I found this script in the Forum, but I'm not able to get it
to work. I have the script in the change event of the drop down field. Whatever is chosen in the ddl, should then appear in TextField12. The ddl works fine, but the value selected is not displaying in the text field on page 4.
if
(xfa.event.fullText == "Supervisor")
{
page4.pcEquip.dirAbove.TextField12.rawValue
= "Supervisor";
}
if
(xfa.event.fullText == "Manager")
{
page4.pcEquip.dirAbove.TextField12.rawValue
= "Manager";
}
if
(xfa.event.fullText == "Director")
{
page4.pcEquip.dirAbove.TextField12.rawValue
= "Director";
}
if
(xfa.event.fullText == "VP")
{
page4.pcEquip.dirAbove.TextField12.rawValue
= "VP";
}
else
{
page4.pcEquip.dirAbove.TextField12.rawValue
= null;
}
Any help is appreciated.
Thanks,
MDawn