Forum Moderators: open
function mailpage()
{
//do some mail stuff
}
in the last frame of your flash movie, you need the actions script
getUrl( "javascript:mailpage();" );
are you collecting variables in your flash movie to pass to the mailpage function? If so and supposing the variable is called mailAddress, the action script would be
mailAddress = "someAddress";
getUrl( "javascript:mailpage('"+mailAddress+"');" );
hope this helps
jezra