As it is a complex topic, linking to different mediums has been a difficult subject to learn in Flash. Fear not, as for the benefit of you, as well as a reference for me, I have written our savior.
First of all, create a button. This is simply done via selecting a drawn object such as a square with the words ‘Email me’ and pressing F8. Then, a popup is brought up with different options. Select the circle which has the word ‘button’ next to it and name it whatever you wish. I usually choose something memorable or vaguely obvious for edits later. Proceed to press F9 and typing the following code.
on(release){
getURL("mailto:deltaforce123@gmail.com")
}
Wait, that is my email! I don’t want to take credit for your production. So lets figure this out. The On(release){ mechanic works as a handle for the script, and the getURL gets the action. The } at the end holds it together, so it must be my email you must change. Assume that your email is SeanBeggedMeForYe@rsForThisTut.com. Then, highlight my email, erase it completely, and paste SeanBeggedMeForYe@rsForThisTut.com. Easy enough? Want the user to be able to IM you also? Does Aim sound like a good message client? Good then, I have just the script for you. It begins and ends just as the prior one, but instead of mailto it reads
aim:goim?screenname=
and this is then followed by the screename promptly. End the parenthesis and cup the script. However, if you wish to add a message, in addition add
&message=Message
Change message to whatever you want the IM to read. Instead of spaces use addition signs. Your script for instant messaging should look like this.
on(release){
getURL(" aim:goim?screenname=ForceDelta8&message=Hello")
}
Except my username and message being replaced with yours. Enjoy, and I hope you learned something and didn’t just copypasta.