Hello,
PlanetPress Talk arrays are static.
In order to 'clear' an array, you can use a loop to assign a certain value for every individual element of the array(0 for an integer array, '' for a string array, or any other value you determine). For example, in the 'PressTalk Before' of the page, you can do something like this(for a string array declared as 'GlobalVariable1' with a size of 5 elements ) :
define(&i,integer,1)
for(&i,0,1,4)
&GlobalVariable1[&i] := ''
endfor()
The arrays are zero-based.
Thanks.
Pierre P