ColdFusion 9.0 Resources |
Using server-side ActionScript functionsAfter you connect to the Flash Remoting service, you call functions that are defined in your server-side ActionScript files, and return results. Call a function
Using the function results in ActionScriptTo use the results returned by server-side ActionScript, create a corresponding results function. The results function uses a special naming convention that ties it to the function that calls the server-side ActionScript. For example, if you defined a client-side ActionScript function called basicCustomerQuery, you also must create a results function called basicCustomerQuery_Result. The results returned by server-side ActionScript functions differ somewhat depending on whether you are using CF.http or CF.query:
Using results returned by the CF.query functionYou use functions in the RecordSet ActionScript object to access the data returned in a CF.query record set; for example, how many records are in the record set and the names of the columns. You can also use the RecordSet functions to pull the query data out of the record set. To do so, you reference a specific row number in the record set and use the getItemAt RecordSet function, as in the following example: // This function populates a Flash text box with data in the first row // of the record set under the "email" column name. function selectData_Result ( result ) { stringOutput.text = result.getItemAt(0)["email"]; _root.employeesView.setDataProvider(result); } In the example, the column name is referenced in the getItemAt function between square brackets [ ]. (In ActionScript, indexes start at 0, so getItemAt(0) returns the first row.) For more information, see Using the CF.query function. Using results returned by the CF.http functionThe CF.http server-side ActionScript function returns data as simple text. You write server-side functions that reference the properties available in the object returned by the CF.http function. These properties store the file content of the retrieved file, HTTP status codes, the MIME type of the returned file, and so on. On the client side, you create return functions to handle data returned by the CF.http function. You write these functions to handle simple text data. For more information, see Using the CF.http function. |