Using the results from forms

Try this:
formData.onLoad = function() { //changed it to formData instead of replyData
if (success) {
trace(“done loading”);
scroller.html = true;
scroller.htmlText = replyData.textfield;//changed to where the variables are sent
} else {
trace(“not loaded”);
}
}

if this works, it may be that all your variables were being sent, but that you weren’t getting them from the right place.

let me know if it doesn’t work…