Flash remoting displaying results in text box

new to flashremoting built cfc to query database then want to display results in a text box based on testing tools results are being returned correctly but i cant figure out how to make them populate the text box.

I have a textbox with an instance name of getCheeks
querry returns two colums from database item and id

action script looks like this:

#include “NetDebug.as”
#include “NetServices.as”
#include “DataGlue.as”

// Create the gateway
if(isGatewayOpen == null) {
isGatewayOpen = true;
NetServices.setGatewayUrl(“http://72.236.19.10/flashservices/gateway”);
gw = NetServices.createGatewayConnection();
toolbarService = gw.getService(“cfcSabre.LauraGeller.qToolbar”,this);
trace(“Connected”);
// call web service sets
toolbarService.nCheeks();
}
// responder
function getnCheeks_results(){
DataGlue.bindFormatStrings(getCheeks, nCheeks, “#item#”, “#id#”);
}