I have serveral hundred AMF arguments that I need to combine into one variable instead of listing each one in the argument section. I've created a 'for' loop to add them but somehow my logic isn't working. Instead of combining all the Arrays it's only writing out the last one in the list.
aSync[1] := "The quick " + rUnique_ID + " fox Ran"; aSync[2] := "He " + rUnique_ID + " tripped on a snake "; aSync[3] := "Then " + rUnique_ID + "he ate an egg";
for i := 1 to 3 do sBigVar := aSync + aSync[i + 1] ;// + aSync[i+1]; end; write (sBigVar);