Sure
Use, for (not for each, for)
local var TmpName
On Ajax request complete
Blank Sub Event request complete
action
set TmpName = replace(Ajax.LastData, "[", "") //remove opening bracket
set TmpName = replace(TempName, "]", "") //remove closing bracket
set TmpName = replace(TempName, '"', "") //remove double qoutes, note the use of single qoutes around the double qoute in the middle
Sub Event request complete
For "imageloop" 0 to tokencount(TmpName ",") //This counts the amount of commas, indicating each chunk with a file name
action
append text.txt tokenat(TmpName, loopindex, ",") // every loop it will fetch the next 'chunk' containing the file name. I append it to a text file here, but you can use it to any sort of action using : tokenat(TmpName, loopindex, ",")