Here is the code I am using. The PDF software has no issues with the ENGLISH TEXT, it populates the field without problem. When I insert Chinese characters where I have the place-holder UNICODE, the PDF software turns the Chinese into ????. And this occurs immediately when I try to save the code. So I think the only solution (open to suggestions) is to convert the Chinese to unicode, and then have the script read the unicode but output the Chinese characters to the variable? Hope someone can assist, thank you!
var EntityData = { Entity_Ltd :{ engaddy: "ENGLISH TEXT",
chiaddy: "UNICODE"},
Select_Entity :{ engaddy: " ",
chiaddy: " " }
};
function SetFieldValues(eName)
{
this.getField("AddressEnglish").value = EntityData[eName].engaddy;
this.getField("AddressChinese").value = EntityData[eName].chiaddy;
}