Click to See Complete Forum and Search --> : n00b Flash Question #1


Thyrium
07-07-2005, 09:32 AM
I've got this Flash template and I'm trying to change the default email address.

I have the Movie Explorer thing open, and I've had much luck with double clicking some text and replacing my own. But now I'm at this place:

actions for mail
on (release) {
getURL("mailto:test@test.test.com");
}

When I double click the mailto line it opens up the Actions panel... Where do I go next?

LJK
07-09-2005, 11:05 PM
Hi -
It's just a matter of replacing the tests with:

myButton.onRelease=function(){
getURL("mailto:me@myplace.domain");
}
//written on main timeline, not on the button instance, here.

So, if you're "dog@boneheaven.com" that's what would go in...
good luck,
El