9 January 2009

Adobe Flash email links

When invoking an email link from within Flash (using the getURLmailto:email@somewhere.com) you may find that Internet Explorer opens a new blank window. This doesn't happen in Firefox. To resolve this issue simply remove the target parameter, see below.

ActionScript code before:
on(release){
getURL("mailto:springheadpark@cpplc.com","_blank");
}

ActionScript code after:
on(release){
getURL("mailto:springheadpark@cpplc.com");
}

No comments:

Post a Comment