PDA

View Full Version : Flash Movieclip Postback Web Form



andrthad
August 22nd, 2006, 06:33 PM
Hi All,

Working with an ASP.NET web form and want to make a flash movie with a button. I want to make the button function like a submit button and perform the postback. What actionscript do you need to place on the flash button/mc?



onRelease{
getURL( ??? , "post");
}

- |Flash Man| -
August 23rd, 2006, 04:41 AM
i assume that ASP would be similar to PHP in recieving variables

try this:

on(release){
loadVariablesNum("watever.asp", 0, "POST");
}
if thats what u mean??