PDA

View Full Version : Links in site


smirnie
08-23-2002, 08:26 AM
I,m taking my first steps into webdesign with flash. I'm not doing it professionally but out of my own iterest.

I have this really simple (I think) question. How can I make a link that automaticaly opens a window to send an e-mail. Is this standard material included in flash or do I need a script for it?

So what I need is a way to make a button open a "new message". So it has to be linked with an E-mailadress.

thx

vosgien
08-23-2002, 09:49 AM
Hi,
try this :

on(release){
getURL ("mailto:yourEmailaddress@domain.com?subject=whateve r you want");
}

That should do it

Vosgien

smirnie
08-23-2002, 09:53 AM
thx for the quick reply