I'm trying to send data from Flash to Cold Fusion to have it entered
in a DB.  I can't get it to work.   I'm experienced at flash but have
not used loadVars before and am new to CF.

I have simplified the loadVars to a full url and a pretermined
string, rather than building the string.  The CF uses url.variable to
get the info, so I'm passing it via the querystring.  No matter what
I do, it doesn't update on the DB.  Here's the Flash code:

function sendData(save_string){

           // Create a LoadVars object to hold the variables we wish to send
      save_game_o = new LoadVars();
      save_game_o.id = 1;
      save_game_o.high_score=50;
      save_game_o.high_score_related_info=bent|tennis_player;


save_game_o.saved_game="user{ljkh,11,3,B,m}score{0,1,1}vegetables}wo{}so{}so{}hph{0}";
      save_game_o.load = function(success) {
           if (success) {
                //doesn't show this//
                _level1.error.text = "success:"+success;
           } else {
                _level1.error.text = "error loading data";
           }
      };

      var composite =
"http://www.preventcancer.org/bodyfun/main_game/save_game.cfm";
      save_game_o.sendAndLoad(composite,null,"GET");

}

The CF is at:
http://www.phiresearch.umd.edu/bodyfun/main_game/save_game.cfm
I put it on a server that doesn't have CF just so that you can view
the code.  The flash uses a server that runs CF fine.

Also, I made a composite of the url and the querystring and it worked
fine, updating all the info, so it seems to be a Flash to CF
communication problem.

thanks for any help.

--
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to