thanks Dave...  the results of typing too fast... you are right...  
the first line can be 

  getData_result = function(result) {
    _root.myResultSet=result;
   }

or

  function getData_result(result) {
    _root.myResultSet=result;
   }


cheers... thanks for the edit..

kev.


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: May 21, 2002 4:55 PM
To: [EMAIL PROTECTED]
Subject: RE: [CFTALKTor] CFNorth


>   getData_result(result) {
>     _root.myResultSet = new Object();
>     _root.myResultSet=result.items[1].myColumnName;
>     _root.gotoAndPlay("anotherFrame");
>     }

Kevin,

This line is unnecessary because you're overwriting the same thing in
the next line:

_root.myResultSet = new Object();

Or is it missing a property in the next line?

Also, the first line should be:

getData_result = function(result) {


Steve: You could also use another method for the responder (callback
object):
http://www.quantumwave.com/html/fRemote_listCF.html


Dave Yang - Quantumwave Interactive Inc.
Toronto, Ontario, Canada
http://www.quantumwave.com

-
You are subscribed to the CFUGToronto CFTALK ListSRV.
This message has been posted by: "Dave Yang" <[EMAIL PROTECTED]>
To Unsubscribe, Please Visit and Login to http://www.CFUGToronto.org/
Manager: Kevin Towes ([EMAIL PROTECTED])
http://www.CFUGToronto.org/
This System has been donated by Infopreneur, Inc.
(http://www.infopreneur.net)


-
You are subscribed to the CFUGToronto CFTALK ListSRV.
This message has been posted by: "Kevin Towes" <[EMAIL PROTECTED]>
To Unsubscribe, Please Visit and Login to http://www.CFUGToronto.org/
Manager: Kevin Towes ([EMAIL PROTECTED]) http://www.CFUGToronto.org/
This System has been donated by Infopreneur, Inc.
(http://www.infopreneur.net)

Reply via email to