Email Link Simple As It Sounds I Forgot How To Do It Lol
whats the code on a button so when its clicked a email window pops up like in html its really simple can you just post it use dave@dave.com thanks guys
FlashKit > Flash Help > Flash ActionScript
Posted on: 09-17-2004, 05:19 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Simple Email Link
I'm just trying to open up a default email link. I'm using the html mailto: bit of markup, but I'm opening a browser window as well. Anyone know an easy way to just to open up the email interface?
How To Do A Simple Email Link?
I want to have a button that when the user clicks it, it will open up the user's email account and put my email in the send to field, so they can send me an email. Like a "click here to email" button. Any one have the code that I would use or any advice?
Simple Email Link Question
Hi Guys
I have a simple question. How do I make my email address on my site "active" so when its clicked, it pops open your email application. A very common thing I see, but don't know how to do it.
You can check out my site at
http://www.Geneleedesign.com
click on: contact...then click on email..you'll see what I mean.
feedback would also be much appreciated
thanks
Gene
Forgot Link
Hey everone....
I want to make a cool shooting game but forget the link from I think it was Flex..
Somthiung like that please help with Link..
Simple Email Link That Opens NEW MESSAGE Box
Hello everyone; I am newbie and I need help creating a button that simply opens a New Message window with my email address in it; I want users on my site to be able to send me as much info as they want including file attachments, so I don't want to use a form.
Simple Question About Email Address Link
I create a button so when user click on it, it suppose to send an email to the address.
This is the script that I use and I don't understand why it doesn't work.
on (release) {
getURL("mailto:creativecrossing@yahoo.com", "_blank");
}
Forgot Password Email Only Code Tweak Help
I have a working flash and php script combo that works in sending user and password info via requests for forgotton passwords.
I did not build it and my skill is limited. I only want the user to submit thier email and then the script sends user the password to thier email. or send both user and a password as is now...but the only requirment is email.
Currently user has to submit user both user name and email... I only want email reqirment. Can someone look at the code and help me out a bit? FLASH AND PHP CODE BELOW.
php is:
-------------------------------
<?php
include("conn.php");
$success = 1;
$username = $HTTP_POST_VARS['username'];
$email = $HTTP_POST_VARS['email'];
$sql = "SELECT vchPassWord FROM tUser WHERE vchUserName = '".$username."' AND vchEmail = '".$email."'";
$rs = mysql_query($sql, $conn) or die(mysql_error());
$row = mysql_fetch_assoc($rs);
if(!$row){
//The user dont exists
$success = 0;
$msg = 'The user doesnīt exists or the username and e-mail donīt match.';
echo '&success='.$success.'&msg='.$msg.'&';
} else {
//The user exists
$password = $row["vchPassWord"];
$subject = "Your MyCompany.com user information";
$message = "Here is your user information for MyCompany.com:
";
$message .= "Username: ".$username."
";
$message .= "Password: ".$password."
";
$message .= "E-mail: ".$email."
";
$message .= "Log on to: http://www.mycompany
";
$footer = "From: MyCompany.com";
$formsent = mail($email, $subject, $message, $footer);
if($formsent == 1) {
$msg = "Thank you, your password has been sent to ".$email;
} else {
$success = 0;
$msg = "We are sorry, but your password could not be sent to ".$email;
}
echo '&success='.$success.'&msg='.$msg.'&';
}
mysql_close($conn);
?>
-------------------------------------------------------
flash is:
----------------------------------------------------------
Selection.setFocus(inpUserName);
this.inpUserName.tabIndex = 0;
this.inpEmail.tabIndex = 1;
this.btnSubmit.onRelease = function(){
this._parent.submit();
}
this.btnClose.onRelease = function(){
gRoot.loadContent("home.swf", null, false);
}
function submit(){
if(this.inpUserName.text != "" && this.inpEmail.text != ""){
if(gRoot.checkEmail(this.inpEmail.text)){
this.txtResponse.text = "Sending message...";
var tVars = new LoadVars();
tVars.owner = this;
tVars.username = this.inpUserName.text;
tVars.email = this.inpEmail.text;
tVars.onLoad = function(){
this.owner.txtResponse.text = this.msg;
}
tVars.sendAndLoad(gSystemPath + "forgot_password.php", tVars, "POST");
} else {
this.txtResponse.text = "Please enter a valid email address.";
}
} else {
this.txtResponse.text = "Please fill in all fields and try again.";
}
}
stop();
-------------------------------------
Any help would be greatly appreciated.
Thank you
m.
Forgot Password Email Only Code Tweak Help
I have a working flash and php script combo that works in sending user and password info via requests for forgotton passwords.
I did not build it and my skill is limited. I only want the user to submit thier email and then the script sends user the password to thier email. or send both user and a password as is now...but the only requirment is email.
Currently user has to submit user both user name and email... I only want email reqirment. Can someone look at the code and help me out a bit? FLASH AND PHP CODE BELOW.
php is:
-------------------------------
<?php
include("conn.php");
$success = 1;
$username = $HTTP_POST_VARS['username'];
$email = $HTTP_POST_VARS['email'];
$sql = "SELECT vchPassWord FROM tUser WHERE vchUserName = '".$username."' AND vchEmail = '".$email."'";
$rs = mysql_query($sql, $conn) or die(mysql_error());
$row = mysql_fetch_assoc($rs);
if(!$row){
//The user dont exists
$success = 0;
$msg = 'The user doesnīt exists or the username and e-mail donīt match.';
echo '&success='.$success.'&msg='.$msg.'&';
} else {
//The user exists
$password = $row["vchPassWord"];
$subject = "Your MyCompany.com user information";
$message = "Here is your user information for MyCompany.com:
";
$message .= "Username: ".$username."
";
$message .= "Password: ".$password."
";
$message .= "E-mail: ".$email."
";
$message .= "Log on to: http://www.mycompany
";
$footer = "From: MyCompany.com";
$formsent = mail($email, $subject, $message, $footer);
if($formsent == 1) {
$msg = "Thank you, your password has been sent to ".$email;
} else {
$success = 0;
$msg = "We are sorry, but your password could not be sent to ".$email;
}
echo '&success='.$success.'&msg='.$msg.'&';
}
mysql_close($conn);
?>
-------------------------------------------------------
flash is:
----------------------------------------------------------
Selection.setFocus(inpUserName);
this.inpUserName.tabIndex = 0;
this.inpEmail.tabIndex = 1;
this.btnSubmit.onRelease = function(){
this._parent.submit();
}
this.btnClose.onRelease = function(){
gRoot.loadContent("home.swf", null, false);
}
function submit(){
if(this.inpUserName.text != "" && this.inpEmail.text != ""){
if(gRoot.checkEmail(this.inpEmail.text)){
this.txtResponse.text = "Sending message...";
var tVars = new LoadVars();
tVars.owner = this;
tVars.username = this.inpUserName.text;
tVars.email = this.inpEmail.text;
tVars.onLoad = function(){
this.owner.txtResponse.text = this.msg;
}
tVars.sendAndLoad(gSystemPath + "forgot_password.php", tVars, "POST");
} else {
this.txtResponse.text = "Please enter a valid email address.";
}
} else {
this.txtResponse.text = "Please fill in all fields and try again.";
}
}
stop();
-------------------------------------
Any help would be greatly appreciated.
Thank you
m.
HTML Formatted Email W/ Flash: Email Link Help
is there a way to put a mailto into a Flash that's embedded in an email without a browser window popping up when the user clicks on it.
The reply email works fine, but a browser window will open with the mailto in the URL and "Action Canceled" in the window. Not too pro looking.
Also, I found the Flash only plays in some email clients, when user views the email. I had to put a 'play' button on the first frame before the loader in case it doesn't play. I tried putting a "gotoAndPlay" but that didn't work either, took the loader out, even put the animation on the main timeline. Funky.
Told the client it's a bad idea, unpredictable, but they never listen to people that know what's up...
Email Link On Swf Doesn't Work In Embeded Email, Why?
I am working on a swf file (sort of an ad) for email distribution purpose, the swf has an email link on it for potential clients to reply to us.
I upload the swf on our server, embed the swf into an email, and send the email off to do a test, the animation is playing fine, but there is a problem, when i click on the email link, I receive the following error message:
"Microsoft Outlook has encountered a problem and needs to close. We are sorry for the inconvenience."
And then the Outlook is closed down.
But this problem only happens on NT system, as while i click the same link from my XP, it instantly open up a new reply message fine, anyone has come across this problem and knows how to get around with it, could you help?
Many many thanks
Help Please Email From Page To Another Email With Url Link
This is getting really confusing for me so I need some help! The issue is that I am developming a video player that a client would like to have an ability of users to send (email) the page to a freind, with a link back to that specific page. I have experience sending mail via PHP scripts, and the mailto: commands. Does anyone have any idea how this could be accomplished? I need some direction. Thanks Devon
www.conjuringzoo.com
Can I Dynamically Link And Play Sounds?
I am building a morse code training program for my Ham Radio Club. I am wondering how to script the code that would allow the user to type (via a virtual keyboard on the program interface) a sentence, linking each dynamically selected letter to a sound file (MP3), and then play the setence in morse code when the play button is selected? Displaying the typed text in a dynamic window is the easy part, but linking each selected letter to a sound file, and playing them in sequence is where I am stuck.
I cannot find any help for this type of script via manuals and help files. Thank you in advance for your help.
Sincerely,
David, WD8PUO
[MX04] Muting Sounds On Link Click
Hello everyone,
Been working on a site for a while that requires a flash banner at the top that plays through some song clips. Elsewhere on the site is a link that launches a pop up that contains a complete Flash audio player with controls. The problem I'm having is that I need the music from the original banner on the homepage (still open in the background when the popup is launched) to mute itself so that the only audio playing is that from the popup player.
Is this even possible? The only section of the main site that is flash is that audio banner. It has a mute button on it, but otherwise is just an image.
Thanks in advance,
Dan
Link To Library Sounds From External Textfile?
Hi everyone, this is my first post.
I have an external text file that has a list of the names of songs that are called into a dynamic textfield called txtSongs.
All the song names in the ext-textfile are in hyperlink format but don't link to anything, I want to do that in flash using AS2.
I want to add an event listener that says "when a link in txtSongs is hovered over, play some sound in library".
Then the second part is extracting the text of the hyperlink to tell flash which sound in the library to play.
Does anybody know how to do this?
Email Link
hello,
Does any body know if there's a bit of scripting that could link a button to an email address so that when clicked it altermatically opens up the users email?
Thanks,
E
Email Link
This is probably obvious but I can't figure out how to set up a 'mail to' button in flash.
Anyone know how?
Email Link
Does anyone know how to make a email like with flash 5? The get url just takes me to a website. and I tried this under get url mailto:www.cycloidsounds.com please help.
Thank you
Email Link
greetings all
i have made a small animation which has some text on screen.
when the email address is clicked i need to open the computers email client.
all the action scripts are ghosted and when i use the url get function at the botton of the character menu the link vanishes when i run the animation
iam using the following format:-
"mailto:spider@virtual-bizness.com"
regards
spider
Email Link
I created a button with a mailto: in the URL field to have an email window pop up. I get the email okay, but I also get a separate browser window with the "mailto"email@email.com" in the URL.
How do I set up an email link, without causing a browser to open?
Email Link
what should i use for an email link. when i try get url"mailto:drpsychedelic@hotmail.com" the default mail program opens ...yah.....but a browser window also opens to that address and of course its not found......how can i get just the email to open for the sender and not the browser window also ??????
Email Link?
I have created a simple flash program that consists of a round ball, with the words "Email Me" on it, and it bounces around the screen. I want to create an email link to a hotmail account that will be activated by the user clicking on the flash program. Does flash support this kind of thing? The reason I ask is because I put the code in that would usually create an email link, and it didn't work. I would really appreciate someone giving me the code, or at least telling me why it didn't work.
Email Link
i am dumb. how do i make my contact link work so people can clik it and send mail to me?
thanking you in advance...
k11
Email Link
When you add a email link to your site. It should read mailto:emailaddress right? Well when I test it my explorer pops up. Thanks for your help
Email Link?
whats the action for a button if i want to link to an email adress??
sorry i know its probably the easiest questions ever...
but i dunno
Email Link?
How do i make a symbol or a button open an email document. As in I want someone to email me, my button opens their email program. Like any other email link on the internet. Hope i'm clear.
Email Link
Very basic question:
How do I hook up an email link so it opens outlook (or whatever)? Right now I have mailto: address but it's not working!
Thanks
Link To Email
can someone please give a quick script for linking a button to an email link. the button should open a new email box with the address already in the bar. ex. email@helpme.com
i can't find it in the Flash help. i'm using Flash 5.
thank you!
Email Link
Hello i created an entire site in flash and have a question. I created a contact page where viewers can get a hold of me. I want to know how I can have my text (i.e. fow@hotmail.com) when clicked on, automatically open up their mail sever and have my name appear instantlly to send me mail. Any help I would greatly appreciate thank you.
Email Link
can u make a flash button an email link? like a mailto in html?
Add Email Link
could anyone tell me how to add an e-mail link to a button? i've seen a couple of tutorial but they've been for flash 5 and i don't think it ports over well or i'm doing something wrong.
thx, squid.
Email Link
I've created a button that I want to open the user's default email system to email me and I can't get it to work. I'm using the
getURL( mailto:
because I thought that it would work, but no such luck. If anyone thinks that they might know what I'm doing wrong, could you please advise me.
Thanks
Email And Link
Hello,
how to include make a text in flash work as a link www.name.com or a mail link such as in normal web sites?
Thanks,
Miguel
Email Link
Hey, completly simple question i assume...
How do you link to an email address from within a text section?
Thanks
Nic
Email Link
can anyone please tell me how to link a form to my email. So that any info my user's input will go to my email. I have forms already but I don't know how to link it to my email correctly. Can you please explain clearly the process? Thanks
Email Link Looking For Url
I'm trying to make a button that automatically sends an email, but it doesn't seem to be working the way I have it...... I've been using this action:
on (release) {
getURL("youraddress@whatever.com?subject=whatevert hesubjectis");
}
I'm wondering if anyone could clarify this, or help me out... Thanks!!!
Email Link
It's been a while since I worked with Flash. Forgot how to do simple email link. Isn't it getURL, then mailto:whatever@whatever.com etc? Can anyone help? Thanks.
Email Link
Hi,
how do you link a button to your email. To enable users to email me.
thanx
Email Link
How do I create an email link in flash mx so that when the user clicks the link, their email opens?
Email Link?
You know when I post questions here and you guy/gals give answers it goes to my email, I try to click it to link back but I can not. Is there a setting I need to do when I click it it will take me to here instead of me copy/paste
Email Link?
hi all
I know the standard code for an email link in a swf inside a html page is:
on (release) {
getURL("mailto:someone@somewhere.co.uk");
}
but this doesnt work in a standalone projector?
How can i put an email link inside a projector that works?
Email Link
I am creating a contact page with flash. I want to create a button so that when someone clicks on it they can email me. How do you write the code?
Thanks
Simon
Help With Email Link
A few months ago I read a tutorial that told how to use actionscripts to open outlook express on the users computer, but now
that I need to know how to do it I can't find it. Can any one help?
Email Link
What's the actionscripting look like on a button that I want to have open a users mail client with a specific email? Is there a flash variable set up for this or do you have to use Javascript and a href it? I wanted to do a whole complex input text fields contact page but it seems as though my server is not set up for that and I am not a programmer at all. So I guess this will just have to do if anyone can help. Thanks so much.
|