i have a button with instance name contactMe, and when you click on it, it opens ur default email in a compose window with the set e-mail address in the To: box.
contactMe.onRelease = function () {
getURL(“[email protected] ”);
}
question, how do i put the subject of the email? i can do it in HTML, but the same code doesn’t work with Flash. how can i do that?
system
December 30, 2002, 8:04pm
2
Hmm, if the code for HTML doesn’t work for it in Flash… then I have no clue.
Well one thing though, instead of just your e-mail address you should have
on (release) {
getURL(“mailto:[email protected] ”);
}
Maybe the mailto is the reason the subject code wouldn’t work.
If not… then I have no clue, you might have to run it through some kind of PHP formmail script.
system
December 30, 2002, 8:15pm
3
wwoooppss…sori…yes…there is a mailto: before the e-mail address…why did i miss dat?
contact.onRelease = function () {
getURL(“mailto:[email protected] ”);
}
after checking the code again
darn…i forgot the “=” after the ?subject…sorry for wasting ur time lostinbeta.
it’s
on(release){
getURL(“mailto:[email protected] ?subject=hello!”);
}
heeheehee…i think i have amnesia… lol…
system
December 30, 2002, 10:19pm
4
You didn’t waste my time, I was here anyway.
I am glad you got it fixed