Trying to build a handler to parse an array of data. I get;
"The variable atomValue is not defined."
here is the strange part, just before the hand back, there is data in atomValue.
Snip of the code;
end repeat
log "atomValue before return" & atomValue
log class of atomValue
return atomValue as string
end SetAtom
Sample of the log (note the Handler is called successfully many times, and only the last is an error);
(*string*)
(*start of loopAtom "purd" contains: 1904-01-01 00:00:00*)
(*atomValue set to 5th word--01-01 00:00:00*)
(*atomValue before return 01-01 00:00:00 *)
(*string*)
(*atomValue set to 5th word--192.168.11.200/ipodfeed/feed.php*)
(*atomValue before return 192.168.11.200/ipodfeed/feed.php *)
(*string*)
(*atomValue set to 5th word--192.168.11.200/ipodfeed/1513_20060521020000.ipod.mp4*)
(*atomValue before return 192.168.11.200/ipodfeed/1513_20060521020000.ipod.mp4 *)
(*string*)
"The variable atomValue is not defined."
thanks
Kevin Cossaboon.