How can you make an e-mail link so when you click the link the e-mail forum pops up. Because a normal link does not work.
Apply this to your link:
on (release) {
getURL("mailto:youremail@email.com");
}
you can also add subject as such:
on (release) {
getURL("mailto:youremail@email.com?subject=need your web design skills");
}
need your web design skills
lol
thanks, yall