Hi,
Yes, I think the problem is in your resultHandler
event.result represents whatever data the gateway returns. At times it
can be an array, at times i can be an object.
One way to find out is to test in the service explorer and see what
the function returns.
In the case of Twitter > Search it returns an object.
This object then contains a property called results. I believe this is
what you should be reading your data from...
function resultHandler2(event:Object)
{
var results = event.result.results;
}
You might also want to check whether the results array is empty before
trying to access [0]
hope this helps
Ben