I created a small SWF game with AS3 with a small form at the end to capture the users' details and send with a mailto function. It works perfectly on the desktop but when I tested it on the tablet - the mailto function works except that it does not include the details that the user entered in the form. I have tried using different mail apps and different SWF players but to no avail.
Here is my script for the form page
submit_BTN.addEventListener(MouseEvent.MOUSE_UP, openEmail);
function openEmail(e:Event):void{
navigateToURL(new URLRequest("mailto:" + "thisemailaddressleftout" +
"?subject="+"thissubjectleftout"+ "&body=" + name2_field.text + "\n" +
cell2_field.text + "\n" + email2_field.text));
gotoAndPlay(1, "Thank you");
}
Any help would be appreciated as I am a junior in flash.