Help With Making A Email Newsletter Sucription From....
My site is done in 1 swf movie using flash5. Ok, now i want to create an email newsletter subscription form that will let users enter their email(just there email) on the site. I have a ftp server with an cgi-bin and PHP/mySQL installed? What do i have to do so that mySQL can stored the email? How are thing linked together? Or what do I have to do to get them to linked? What kind of source code do I need on my flash movie? Help!!
FlashKit > Flash Help > Flash Newbies
Posted on: 02-17-2002, 11:04 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
EMail/Newsletter Box
Hey! Great forum here and helps me out all the time.
I want to add a text box to a web site built in flash CS 4, but with AS 2.
This is for users to be added to a annual newsletter, the user will submit their email address. (Enter address, click send)..
Will someone point the way with what type of tutorials will walk me through the process? (Textbox? Email link? etc).
Any help is appreciated.
Best,
ChrisinNYC
[F8] Newsletter Email Collector
Can anyone point me in the right direction? Im looking to simply collect emails.
*you type your email in the text box, hit submit, and your email is sent to my email. plain and simple.
Eh?
Creating A Email Collecter For Newsletter
Help!!!! I want to create a form for a email news letter....but Im clueless Im lost in actionscript. Can somebody please help me out.....How would I create a form that you imput your email and its sent to an email account for collection? HELP ME!!!! Im going insane!!!!
Newsletter Email Signup Form
Hi, I am creating a form input for people to submit their emails to get a newsletter. The site is Fun Hit Wonders but I can't get the actual email to go through straight to the server. It's either that I just have a button that goes into the welcome page, or what I would prefer is to have the user to enter the email and it to say thanks for subscribing... Here is the code I used:
on (release) {
//1st hidden field
//this is your unique id
m = "98236230XXXX";
//2nd hidden field
p = "oi";
//this is the form action and method
getURL ("
Making A Newsletter
Hi folks,
I want to create a newsletter in Flash,
but have never done such a thing before.. even not with HTML
so if anyone knows a good tutorial, or some tips?
Thanks,
Yanie!
Making A Newsletter Sign Up
Hey everyone... I'm new at this so please excuse my question. Does anybody know how to make a newsletter sign up in flash?? thanks for your help
Html Newsletter, Doesn't Show Up In Some Email Programe.
Hi people, was being told to do some html newsletter thingy which i had totally no experience in (I'm a flash developer #%$!$%#@~!) so i seek some help here.
After done up a mock up, i realise some email program exp those webbase one doesn't show my newsletter at all. Just line & line of code. Anyone know where does this problem lies? Kindly advice. Thankis.
Chup
p/s, sorry if i post this on a wrong section, cant find a html thread anyway..
Problem With Validation: Newsletter Subscription Email Field...
Hi,
Ususally when I put in a regular contact form in Flash (you know, name, email and message), I use Senocular's tutorial and have the validation on Name as req. field and syntax of Email field and it always works great.
Now I have this form consisting of just an Email field and a Submit button. The filled-in address is supposed to be added to an external database from a paid newsletter service. Their requirements are: - a specific var. name for the field and the action url where the submitted info is processed to their clients database so to speak, so I have to open that page in order for the input to be processed (in a new window).
When I put this on the submit button:
Code:
on (release) {
loadVariablesNum ("http://www.ymlp.com/subscribe.php?clientsname", "_blank", "POST");
gotoAndStop("thanks");
}
it works. But no validation on the filled-in address, so the external page gives an error with anything that's not an email address.
(in url: real client's accountname substituted here for 'clientsname')
So I put this on the button:
Code:
on (release) {
formcheck ();
}
And this in an actionframe a layer above (email is the instance name of the field, and its var name is YMLP0):
Code:
action = "send";
function validate (email) {
if (email.length>=7) {
if (email.indexOf("@")>0) {
if ((email.indexOf("@")+2)<email.lastIndexOf(".")) {
if (email.lastIndexOf(".")<(email.length-2)) {
return (true);
}
}
}
}
return (false);
}
function formcheck () {
if ((((email == null)) || (email.length<1)) || (email == "No valid email address")) {
email = "No valid email address";
action = "";
}
if (!validate (email)) {
email = "No valid email address";
action = "";
}
if ((validate (email)) && (email != "ERROR!")) {
action = "send";
loadVariablesNum ("http://www.ymlp.com/subscribe.php?clientsname", "_blank", "POST");
gotoAndStop("thanks");
}
}
But it doesn't do anything.
Can anyone point me in the right direction? I'm really no scripter, just a designer I'm afraid .
Many thanks.
::URGENT:: Making A Newsletter Out Of Flash.
Dear Reader,
Im about to make a newsletter to send out to many subscribers. I couldn't decide whether to use Quark 5.0, or Photoshop 7.0.
Then I remembered I had seen that a newsletter can be made with flash.
How does this work?
Can I include it in an email, or do I have to link them to a site?
Does the .swf remain small?
Are there any examples on the web, or tutorials anywhere?
Thanks.
[MX04] Making An Email Button Go To Email Client
Good Day,
I have made a button on my website and would like it to do the following:
When pressed it would open the users email client and put my email address in the "TO" box so they can send an email to me.
Sounds simple but I can't work out how to make this happen.
Is there a better way to do this?
Can somebody help me with this?
MAKING A EMAIL LINK
I MAKE A BUTTON AND IN ACTIONS I PUT ON MOUSE EVENT,PRESS,GET URL
AND THEN I PUT MAILTO:XXXXX@AOL.COM IS THAT HOW I DO IT OR AM I MISSING SOMETHING PLEASE HELP........
Email Is Making Me Go Bald ...
Right, I've been trying to get this to work for a few days now. Catbert303 gave me a hand with this and the functions he guided me through work a treat (so big thanks to him) problem I`m having now is when I combine it with the email.php script it just doesnt appear to want to work, the form itself works, but none of the variables are sent to my server. Could someone give me a hand?
Heres a link to the php email im using :
http://www.adeptdesigns.co.uk/email.txt
and heres ma fla file.
If anyone can help that would be great cos I really want this to work, but if I cant then i`ll just make do with not validating anything and just filter out the spammers.
Thanks.
Making A Email Sender...
ok this is want i want to do, im not sure if it will work but.....
a box that you type in your email, then automatically it will send and email to the adress that i have already typed up, is that possible, and if so how wuold i do it?
Thanx a bunch
Lewis
Making An Email Window Pop Up
Hey folks,
You know how in HTML, if you use "mailto:email@stuff.com", it typically pops up Outlook for you? What is the equivalent ActionScript code to accomplish this?
I tried using GetURL function, but I'm sure I must be doing it wrong.
Interested in knowing. Thanks.
- Digm
Help With Making Link To Email In Flash
This is going to sound pretty dumb...but I'm brand new to Flash. Today is my first day as a "flash designer" (far from it)! I'm not a big Flash fan...BUT...I want to be able to offer it to clients....I don't see myself designing 100% flash sites...but incorporating some aspects of Flash is a good idea. I've managed to do what I've wanted to with my little splash page created in flash...my only dilemma is I cannot make my email button work. I simply typed in email, but I'm not sure how to set it up so when you click on it it will bring up outlook.
Example: when someone clicks the email text, it should bring up their email to send an email to me...in HTML it's pretty simple: mailto:joesomebody@example.com
If someone can tell me how I can do this in Flash, I'd appreciate it.
Rookies eh!
Making An Email Link Work
Hi,
I am trying to make a text link launch e-mail from inside of flash.
I tried highlighting the text and in the properties "link" box I typed by email launcher (mailto:kd@kurtdalziel.com?subject=Motion Media) but it doesn't work.
Any ideas? thanks a lot.
Making Result An Email Link
I am attempting to change my output into an email link. Can anyone point me in the right direction:
CODE:
function getinformation_Result (result)
{
trace ("server responded: Records: " + result.getLength ());
// This function will be invoked by the server when it has finished processing
_root.dsp_email = result.items[0].email;
Problems Making A Simple Email Form In Flash
Ok hi dudes!!
ok ive worked with flash for quite awhile but have never done a simple email for where you can send email..
ive downloaded afew open source files from net but cant get anything to work..i know nothing about php or perl or cgi bin stuff..
all i would want is a form where the viewer if he or she wants to send email it would ask:
NAME
email address
and then you could leave message
SEND button RESET Button
Anyhow im abit confused why all this Perl, PHP stuff has to be involved,,is it not possible just to have this info sent..like an email..just using Outlook and flash..
Basically i have tried to test afew templates out by just adding my own email address as the Recipient in the actionscript and then testing movie in flash and filling out one of these email forms and trying to send email to myself to see if it works..but it does'nt...
Once of the open source files i have says this in the instruction attached mail with the FLA:
Flash to Email example using modified version of Matt's FormMail.pl script.
1. Copy the flashformmail.pl to your server cgi-bin folder, chmoded to 775 or 755
2. Edit the variables in the FLA file.
3. Publish the movie and enjoy
Feel free to use it whenever you need to.
YOu can just copy/paste the entire movie into your own flash movie, you can edit
its apearance and behaviour as you wish to.
It is just a Flash - XML - Perl example for creating FlashToEmail form on your site.
vena@venata.net
2003
----------------------------------------------------------
anyhow do i have a Cgi Bin what is this..??? im just a little lost as i dont know coding well and am not familiar with any of this techy stuff...
whats the best and easiest form to modify??
Many thanks!!!
chris
Newsletter?
Does anyone know how to make or get a newsletter, with the Subscribe and Unsubscribe options?
Thanks
Newsletter
Hello guys. I'm looking in how to do a very simple newsletter in flash. Just a textbox to input the mail that want to receive the news and a send button. in the email of the person how want to receive the newsletter, should receive a email with a confirmation and, after confirm, I'll receive an email to join the mail to a contact list, so I can sen all the news to the interest people.
How can I do this? Does anyone knows any sample to look at? I really don't know very much about action script.
Thanks
Newsletter
my newsletter form will not work i have it set up...BUT when you click submit it doesnt go to my email. so please help.
Newsletter Help
hello!!! i didnt know in what forum i should put this question, and i dont even know if anyone could help me... but i need to create a newsletter... and i simply dont know how??? does anybody know a link to a website or a book where i can learn how to do this???
i also need that people can subscribe it from the website im developing, and the site is in flash, so.... any thoughts?????
thankls a million
Newsletter?
How do i use flash and phb to make a newsletter sign up thingy.
Newsletter
Please I need a tutorial or sample to create a newsletter
AS2/PHP Newsletter?
I've had a search on the forums, but haven't found exactly what I am looking for.
I have a commision for a website, and they need a simple newsletter, where people sgn up from the flash site, and they can send a bulk newsletter etc.
I would imagine a simple db or text file would suffice, where they can manually add the collected email addresses and send out a newsletter, rather than a dedicated control panel.
Does anyone know of a Flash newsletter script, preferably AS2 and PHP?
Cheers,
Joe
Newsletter
my newsletter form will not work i have it set up...BUT when you click submit it doesnt go to my email. so please help.
Newsletter Help
hello!!! i didnt know in what forum i should put this question, and i dont even know if anyone could help me... but i need to create a newsletter... and i simply dont know how??? does anybody know a link to a website or a book where i can learn how to do this???
i also need that people can subscribe it from the website im developing, and the site is in flash, so.... any thoughts?????
thankls a million
Newsletter Box
hi , every one , can anyone help me with this. i would like to create a newsletter sumbission , so that everyone who visit my page could submit their e-mail to receive future news or uploads on my web page. i just dont know how to do that in flash , help me please , peace
Xml Newsletter
hello. everyone!
I want to make a FLASH + XML newsletter for my website.I can make it useing flash+php.
But now I want to use FLASH+xml.
who can give me a hand. or tell me where I can find some tutorials like this.
Thanks !
Newsletter
hello guys
does anybody know how to allow someone to subscribe to a news letter by entering their emails. I followed the guestbook tut that hassan gave and that was great. i thought it maybe very similar to that, but i am unsure as to what to add or change.
thanks
School Newsletter Help
ok, im mking a flash movie and want to write it 2 cd, its gonn be like a monlthly school newsletter type thing only done in flash, soooo...... i want to put files on the cd nd nt people to be able to "download" the files off the cd through flash, im thnking i could use a url to do it , becuse people use different cdrom drive letters im not sure how to make the "download" work on all drive letters, cn ny1 help me!?
Flash And Newsletter
Hi Flashers,
I'm not a Flash Scripter as I do only animations, but getting in Scripting and need you're help. I'm designing a website in which I added a Flash Newsletter table. Actually, I haven't worked on it yet but I kept a Input text bar with a button (with the script "go to and Play(2)") and in he second frame I had a text "Thank You".
Now the main problem is I want visitors to input their email address into it and their email address should get added in my Excel / Access database, which I can further use to send them the Newsletter. Now I don't know how to embed Excel /Access with Flash. Whaht sript should I give to that button. What database I need to structure out for this. I also need the possibility that user should enter "@" sign in their email address and all.
I hope you people understand what I mean and will help me......
Thanks for Advance.....
Vickymustdie
Newsletter Tutorial?
Hi everyone ,
I ve been trying to find out how can I make an email newsletter
but its been really hard!
I did my HTML page but when I copy the code
on to the email and send it (to myself)
for a test it gets blocked automatically by
antivirus software and I just get blank page for result...
Any suggestions?
Best Way To Do A Mass Newsletter?
i client emailed me that they want to add a newsletter feature to there site. Now i do mostly flash so i dont really no how to do this. Should i be looking for a pre-fromated script or a Flash Tut? whats the best way to do this .php, .xml?
[F8] XML Newsletter-ish Tutorial?
first off, i didn't know if i should put this in the xml forum because this deals mainly with XML or this forum because it is something that seems simple.
i'm making a flash site, and i would rather not have to reopen and change the fla every time i want to change something like a picture, or write an article or something.
from what i have read, it seems that this can be best accomplished with XML.
what i need to know how to do:
a script that loads a picture from the xml file into a alotted area on screen(guessing a blank MC)
a script that lets me populate a scrollable textfield with text from the xml file
anybody know any tutorials that can help me with that?
Newsletter+flash
Hi!
I would like to design a newsletter and send it to all our clients... Don't really know how to go about doing it... Must I design a webpage and when I open it in ex. IE, just go to file>send as email?? And, if I do that, and use flash on the page, it gives me an error about Active X and security warnings....?? So, can you not use flash?
please help!!
thanks!
Developing A Newsletter...
I am developing a content in flash that has an area of newsletter simple, with fields for name and email, but I am with difficulties therefore the archives are housed in a server php and the archive send and config are not sending the fields correctly. Somebody could help me?
Newsletter From Flash To Php
Hello guys!
I'm building a flash site, that contains a newsletter box [ join our newsletter ] where the user writes his email and clicks submit.
How should i send the email to a php file?
Little Newsletter Thing
Happy New Year to Everyone Here at Kirupa!
I got this little news letter thing that I am trying to get working heres the layout of the little guy:
All in one MC called: newsletter_mc
A dynamic text field, a button and a background image.
when user enters email address and presses button time line goes to nextFrame and plays (text field and button fades out.) thank you appears and then goes back to frame one (text field fades in and button fades in) and stops on frame 5.
soooo. with that being said I am having issues still, here is the AS i have written:
Code:
Frame 5 (because items fade in)
(dynamic text field variable is email, this is within a comp movie clip)
stop();
this.comp.email.text = "Enter Email";
this.comp.email.onSetFocus = email.text = "";
on button-
on (release) {
if (this.comp.email.text eq "") {
stop();
} else {
loadVariablesNum("email.php", 0, "POST");
gotoAndPlay(6);
}
}
on frame 12 after everything fades out.
gotoAndPlay(2);
Basically a text field that user puts in email hits button it all fades out then comes back and sets it self to "" (blank) the problem i am having is that the email stays in the field. Any ideas?
Thanks inadvance yall.
MT
Sign Up To The Newsletter
Does anyone knwo how to create a sign up for to a news letter? What does it involve? Will i need to have some form of data base that my customers emails are stored to?
Any help will be much appreciated!
Newsletter+flash
Hi!
I would like to design a newsletter and send it to all our clients... Don't really know how to go about doing it... Must I design a webpage and when I open it in ex. IE, just go to file>send as email?? And, if I do that, and use flash on the page, it gives me an error about Active X and security warnings....?? So, can you not use flash?
please help!!
thanks!
HELP Newsletter In Flash...
Hey everybody!!!!
I'm trying to do an "Get our newsletter" form where the person just enters it's email and press submit and it goes directly into my email...
Can somebody give a hand please ?
P.S. my server is linux, so i work with php...
Thank's in advance...
Hugo
|