Good Morning,

I have a movie which uses ASP to populate a dynamic text field. I have defined an array in my Flash movie to allow for multiple records. For example, if there are two records, in Flash results[0] gets assigned to the data first record, and results[1] gets assigned to the data for the second record, and so on.

My issue is I would like to assign a dynamic text field the name 'tempResult', and assign it to the value of each array element starting with results[0] through results[n]. When I assign the dynamic text the variable name 'tempResult', and assign it's value as below:

tempResult (the dynamic text field) =
eval(result[0]); (the value of the array element)


nothing is displayed in the dynamic text field. Could someone suggest how to assign the value of a dynamic text field if a Flash movie without using the load variables action?