Hi there,
I’m having a mystifying problem with sending an email from Flash MX 2004. I have an email button with this code attached directly on the button:
on (release) {
getURL("mailto:info@fletchermunsoneffect.co.uk");
}
but it just won’t work. However, when I preview the swf in a browser it works for some reason. This is a problem, as the finished swf is intended for a CD-Rom presentation which will autorun upon inserting the CD, and the swf will fill the whole screen (again, this works but the email doesn’t!)
I’ve also tried creating a function within the frame such as:
mailbtn.onpress = function() {
getURL("mailto:info@fletchermunsoneffect.co.uk");
};
but this doesn’t work either!
Any suggestions would be greatly appreciated,
Dan