i wonder if someone can help me!
i have created a .swf file that i am using in dreamweaver, but on my Action Scripting, it only references the email and not the subject nor body.
this is my code on my button
button_mc.onPress = function() {
getURL("mailto:me@company.com"+"?subject=Answer"+"&body=Yes");
};
button_mc.onRollOver = function() {
this.gotoAndStop(2);
};
button_mc.onRollOut = function() {
this.gotoAndStop(1);
};
your help will be much appreaciated