I have sort of fixed my second problem with the following script
dim aepChange as xpTextObject
self.GetObjectByName("AEP Change", aepChange)
aepChange.Text = Fix(aepChange.Text*100)/100
if aepChange.Text > 0 then
aepChange.Text = "+" + aepChange.Text
end if
if aepChange.Text = 0 then
aepChange.Text = "UNC"
end if
My problem now is that this script will not work in the OnText script of the text field. Is the DIM or ObjectType wrong for this instance? The script works if I put it in the OnOnline portion of the scene. The issue with doing it that way is that you see the script work. It will show the original number first then the UNC or the truncated value.
#XPression