


Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
I am trying to perform a simple calculation and put the results into each field of an array of numeric fields. I am using Javascript in LifeCycle 8. I am a total newbie to Adobe programming, but I have extensive programming experience in other environments. All I really need to know is the correct syntax to add values to each item in a numeric field array.
e.g. #1
var Total;
Total = 23;
nf[0].rawValue = Total;
nf[1].rawValue = Total + 1;
nf[2].rawValue = Total + 2;
THIS DOESN'T WORK ???? I also tried the following
e.g.
var Total;
Total = 23;
nf.rawValue = Total;
nf.index = 1;
nf.rawValue = Total + 1;
nf.index = 2;
nf.rawValue = Total + 2;
This also doesn't work. please help me add values to specific items within the numeric field array, this is driving me nuts.....
Views
Replies
Sign in to like this content
Total Likes