Ask a Question related to Macromedia Flash Ad Development, Design and Development.
-
wrighty85 #1
Banner connected to email address.
Hi,
I have designed my first flash banner that when clicked on, goes to a website.
I would like this changed so that when the banner is clicked on, an email can
be sent. eg. the banner would be showing advertising space and an email could
be sent to my email address from interested parties. Is this possible?
Thanks in advance.
wrighty85 Guest
-
email address??
I have the following code for email <strong><font color="#000000"><a href="mailto:mail@leaktechinc.com"></a></font></strong> How do add... -
Embeding a flash banner in an email
Hi there, Hope you are well. I was just wondering if anyone knew if it was possible to embed a flash banner inside an email. Whenever I try... -
Running NTDSUTIL in Directory Services Restore mode - should be connected or NOT connected to the network?
Gurus, I have been studying Windows Server 2003. Say you have an operations master which is off-line due to a lengthy hardware failure, such as... -
email - reply address
After configuring internet access and email accounts using pop3 connector, everything worked fine except for the reply address on the emails. My... -
Getting email address.
When my Users enter their information into my trouble call database, is there a way to get their email address automatically rather than them... -
aniebel #2
Re: Banner connected to email address.
Which version of actionscript are you using?
For AS2.0:
getURL("mailto:anyone@anywhere.com");
For AS3.0:
var email:URLRequest = new URLRequest("mailto:anyone@anywhere.com");
//listens for mouse click and runs clickHandler when it hears it
email_btn.addEventListener(MouseEvent.CLICK, clickHandler);
//what to do when button is clicked
function clickHandler(event:MouseEvent):void
{
navigateToURL(email);
}
aniebel Guest
-
wrighty85 #3
Re: Banner connected to email address.
Many thanks for your reply.
Im using AS3.0. I have attached the code in the 'Actions' script but still no joy.
Any ideas?
Thanks.
wrighty85 Guest
-
aniebel #4
Re: Banner connected to email address.
Where did you place the code and do you have a button with the instance name that matches the one in the code? Please post your code, thanks.
aniebel Guest



Reply With Quote

