Expand my Community achievements bar.

Enhance your AEM Assets & Boost Your Development: [AEM Gems | June 19, 2024] Improving the Developer Experience with New APIs and Events

Compatibility with Reader 6.0

Avatar

Former Community Member
I created a form with Adobe Designer 7.0. This form contains some calculations in the calculate event of two of fields, but they don't seem to work at all when the form is opened and viewed with Reader 6.0. When I open the form with Reader 6.0, it says that the form requires features from another version of Adobe and that I should upgrade. If I save my PDF form as a Adobe 6 Compatible PDF file, it is still not doing the calculations.



Has anyone else seen this type of behavior? What is the cause of this restrictions?



The calculation that I am using is FormCalc



if ((not (EndDate.isNull)) and (not (StartDate.isNull))) then

TotalNumDays = Date2Num(EndDate.formattedValue, "MM/DD/YYYY") - Date2Num(StartDate.formattedValue, "MM/DD/YYYY")

endif

if ((TotalNumDays <> 0) and (not (TotalNumDays.isNull))) then

UsagePerNight = ComplMeter / TotalNumDays

endif



any help would be appreciated?
0 Replies