Flash is new me. I am having problems getting my Flash form to work with my ASP page. I am using
LoadVariables("Insert.asp","0","POST"
To communicate with my ASP page, but nothing is happening. The rest of my code it below. Can someone help me out?
on (release) {
var LastIncumbent;
LastBid.text = WinningBid.text;
FirstPreRound.text = LastRound.text;
LastRound.text = math.round(math.random()*14000)+33000;
LastHouseBid.text = WinningBid.text*(1+(math.round(math.random()*2)-1)/10);
LastPlayerBid.text = WinningBid.text*0.90;
LastIncumbent = Incumbent.text;
Incumbent.text = "House";
WinningBid.text = LastHouseBid.text;
if (Number(LastHouseBid.text) == Number(LastPlayerBid.text) && LastIncumbent == "Player"
{
surplus.text = Number(LastPlayerBid.text)-LastRound.text+Number(surplus.text);
Incumbent.text = "Player";
WinningBid.text = LastPlayerBid.text;
}
if (Number(LastHouseBid.text)>Number(LastPlayerBid.text)) {
surplus.text = Number(LastPlayerBid.text)-LastRound.text+Number(surplus.text);
Incumbent.text = "Player";
WinningBid.text = LastPlayerBid.text;
}
Surplus = surplus.text
LoadVariables("Insert.asp","0","POST"
}
LoadVariables("Insert.asp","0","POST"
To communicate with my ASP page, but nothing is happening. The rest of my code it below. Can someone help me out?
on (release) {
var LastIncumbent;
LastBid.text = WinningBid.text;
FirstPreRound.text = LastRound.text;
LastRound.text = math.round(math.random()*14000)+33000;
LastHouseBid.text = WinningBid.text*(1+(math.round(math.random()*2)-1)/10);
LastPlayerBid.text = WinningBid.text*0.90;
LastIncumbent = Incumbent.text;
Incumbent.text = "House";
WinningBid.text = LastHouseBid.text;
if (Number(LastHouseBid.text) == Number(LastPlayerBid.text) && LastIncumbent == "Player"
surplus.text = Number(LastPlayerBid.text)-LastRound.text+Number(surplus.text);
Incumbent.text = "Player";
WinningBid.text = LastPlayerBid.text;
}
if (Number(LastHouseBid.text)>Number(LastPlayerBid.text)) {
surplus.text = Number(LastPlayerBid.text)-LastRound.text+Number(surplus.text);
Incumbent.text = "Player";
WinningBid.text = LastPlayerBid.text;
}
Surplus = surplus.text
LoadVariables("Insert.asp","0","POST"
}