Hi,

If anyone could help me out with this I'ld greatly appreciate it. I'm trying to load variables from an external PHP file. I've hardly ever used ActionScript (I'm more of a Lingo programmer), but I just want to know if this code looks correct.

on (release)
{
setGameData();
loadVariables("http://www.combat-arnis.com",_root, "POST")

gotoAndPlay ("Scene 1", "sent");




function setGameData()
{
NameFrom = TextField1.text;
NameTo = TextField2.text;
EmailTo = TextField3.text;

//User wants to send recipe too
if (recipeRequest == TRUE)
{
rr=1;
}

if (recipeRequest ==FALSE)
{
rr=0;
}

// ":" used as delimiter between message and recipeRequest
gameData = "Message1" + ":" + rr;


}
}

Is there any way of using Lingo code such as "GetExternalParamValue" in a flash movie??