Simple prob. i know u guys can help me!

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(“ultramarck@edsamail.com.ph”);
}

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?

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:ultramarck@edsamail.com.ph”);
}

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.

wwoooppss…sori…yes…there is a mailto: before the e-mail address…why did i miss dat?

contact.onRelease = function () {
getURL(“mailto:ultramarck@edsamail.com.ph”);
}

after checking the code again
darn…i forgot the “=” after the ?subject…sorry for wasting ur time lostinbeta.

it’s
on(release){
getURL(“mailto:ultramarck@edsamail.com.ph?subject=hello!”);
}

heeheehee…i think i have amnesia… lol…

You didn’t waste my time, I was here anyway.

I am glad you got it fixed :slight_smile: