Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Flash Registration Form?



I need to create a registration form in Flash. I have never tried anything like this before, so I am completely lost. Any startup links/tutorials/info would be great.



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 05-22-2007, 11:00 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Flash Registration Form?
I need to create a registration form in Flash. I have never tried anything like this before, so I am completely lost. Any startup links/tutorials/info would be great.

Registration Form Within A Swf
what is the best way to use dynamic text boxes in order to create an online registration form...
i want to have a form that people fill info into various text boxes which upon clicking the send button it would send all of the info directly to an e-mail.
can anyone help???

CS3 Login/Registration Form
I try to rewrite AS1 Registration form to AS3 ... but isn't work Please, help me! I don't know what is wrong.

Registration Form/Survey
I am a web/graphic designer and I've been given the task of creating a registration form/survey for our clients to complete, except it needs to be Flash. I am fairly new to Flash, so I'm running into a few speedbumps.

The form is quite long, close to 80 individual text fields, checkboxes, and/or select boxes. So to make it easier to navigate I want to break it up into several pages, possibly with a tab structure to simplify the navigation.

What I'm not sure how to do is design it so that each page saves the information when the user clicks "next" to move onto the next page, and when they reach the end sends all of the information collected across all of the pages in a single file in the form of an email. I anticipate that "send" function to operate using PHP and I'm pretty sure I can handle that, but how to make it send ALL of the data collected, I'm not so sure about. And how to make sure all of that data is collected as they progress through several pages, and that it can be modified if they decide to go "back" and change something, also is confusing me.

Can anyone offer any advice? I have searched for tutorials along these lines but have not had much luck.

UPDATE: Just to clarify, I am familiar with LoadVars and how to utilize that to send data collected, and I anticipate using PHP as opposed to any other method to do so... it's the collecting data across multiple pages and storing it until the user is ready to submit that I'm not sure how to accomplish. I hope that helps a little...? If there was a way to allow them to go back and modify the info already submitted, it would definitely make the finished product that much better, but this feature is not required.

I Need To Make A Password Registration Form
hello ,
My name is philippe and i really need some help with a project that i have in mind. i need to creat within flash mx a password registration form where the password could be save in a text file on a user`s PC not in the internet.

Description "

i made a simple scene in flash mx where is a warning " you must choose a password in order to login the dirrectories. then i put a simple button which could be use to save the password in a txt file
once the user choose the password and save i need some action scrit that can skeep that process next time the user open this swf.

please some body out there i need source code that can help me with that ....i`m new in flash programming...

thank you
infos@philaugmedia.com

User Registration Form Creation Problem
hi all,

I have to create a user registration form with username and password.
and login screen when user login i have to check his password , if correct acceptconnection is called else reject connection is called.

My problem is how to store username and password on server side and
how to check pwd on server side.

i have stored user details in a shared object as follows:


Code:

playersInfo_so.data[pname_txt.text] = new Object();
playersInfo_so.data[pname_txt.text].pwd = pwd_txt.text;
playersInfo_so.data[pname_txt.text].firstName = fName_txt.text;
How to check pwd value on server side.
on server side function i tried in this way it is not working:


playersInfo_so.data[pname_txt.text].pwd ==pword


,since on serverside we have to read and write data to shared object using setproperty and getproperty.

please tell me whether my approach is right or wrong,
give me some suggestions in solving this.

thanks in advance

regards
advika

Supply Info For A Web Based Registration Form
I Need Scripts/information On An Easy Software To Design A Web Based Registration Form(database Driven)

Flash Registration Point
This sounds really stupid but somehow my flash is screwed up and it is registering the far left of the movie clip in the creating mode and then in view mode it will register where the registry point is, how do i fix this?

Flash Registration With Automailer
I have a Flash mailer that works just fine. it uses php to send me and the client an email confirming dates. Right now it asks for thier intitals in a text field and sends that info along with the registration name phone etc. in an e-mail to me. Others in my work area don't like it. They want a check box to select one of four dates. ( more professional and easy for the client.) I don't know how to get checkbox info into the PHP mailer, text information is no prob. Can someone help? Thanks

Flash Registration/Upload
Hey everyone! trying to a file up loader in flash for my site.

Im very new to flash so its kinda hard for me lol .

But i found tutorials for Both of my registration and upload. I just have one quick question. I wanna make it so when they upload it makes a folder called /uploads/username if you understand. So it uploads to a folder with the user name their logged into.

But my problem is both register and upload flash tutorial use php also. The Upload just post to a php file and creates a directory to /files/ and the registration tutorial just check it against the mysql db.

Any help here?

Login And Registration Using Flash And PHP
I'm trying to make a flash movie that allows a user to create a new username/password, or login with an existing one.
I'm using Flash, PHP, and a txt file to store the usernames and passwords.
I'll post the script, which I got from another thread.

Registration.php

PHP Code:



<?php 
$PSWDFIL = '.AllowAccess.txt'; 
$User = $_POST['Username']; 
$Pass = $_POST['Password']; 
$Pass = crypt($Pass); 
if(!file_exists($PSWDFIL)){ 
//the file doesn't exist, create it then store the info 
    $CreateFile = fopen($PSWDFIL, 'w+'); 
    fwrite($CreateFile, "$User:$Pass
"); 
    fclose($CreateFile); 
} else { 
//the file exists, just add more info 
    $AddUser = fopen($PSWDFIL, 'a'); 
    fwrite($AddUser, "$User:$Pass
"); 
    fclose($AddUser); 

?>




Login.php

PHP Code:



<?php 
$PSWDFIL = '.AllowAccess.txt'; 
$Member = $_POST['Username']; 
$Pass = $_POST['Password']; 
$GetPSWD = fopen($PSWDFIL, 'r'); 
$Data = fread($GetPSWD, filesize($PSWDFIL)); 
$Profiles = explode("
", $Data); 
$Result = ""; 
for($i=0; $i<count($Profiles); $i++){ 
    $Sub = strpos($Profiles[$i], ":"); 
    $User = substr($Profiles[$i], 0, $Sub); 
    $Password = substr($Profiles[$i], $Sub+1); 
//check to see if the username the person entered exists in the
//AllowAccess text file 
    if($User == $Member){ 
//if the usernames match, then check their password by encrypting the password
//they entered, and comparing to the already encrypted password in the file 
        if(crypt($Pass, $Password) == $Password){ 
            $Result = "true"; 
        }else{ 
            if($Result == ""){ 
                $Result = "false"; 
            } 
        } 
    }else{ 
        $Result = "false"; 
    } 

echo("&Result=$Result"); 
fclose($GetPSWD); 
?>




Login actionscript

Code:
var SendLogin:LoadVars = new LoadVars();
SendLogin.Username = _root.user.text;
SendLogin.Password = _root.pass.text;
SendLogin.onLoad = function(success) {
if (success) {
if (this.Result == "true") {
_root.Security = 1;
} else {
_root.Security = 0;
_root.errorReason = "userpassinvalid"
}
}
};
SendLogin.sendAndLoad("Login.php", SendLogin, "POST");
And finally, Registration AS

Code:
var Register:LoadVars = new LoadVars();
Register.Username = _root.User.text;
Register.Password = _root.Pass.text;
Register.onLoad = function(success) {
if (success) {
_root.errormessage = "Successful Registration";
} else {
_root.errormessage = "Registraion Failed";
}
};
Register.sendAndLoad("Register.php", Register, "POST");
I don't know much of anything about php, so I can't tell if something should be changed in that script.
I can't seem to get it to work though. The registration only worked once, and the login didn't work at all.
The odd thing is that I keep getting a success message back after I test the register, but it actually doesn't work.

I posted a message in the other thread, but I don't think anyone is active in it anymore, because I haven't gotten a reply.

Let me know if you need something clarified.
Any links, or help would be greatly appreciated.

Sean

Help With AS2.0 Flash + Php Registration Page
Hi guys, i need some help with this registration page. I know how to submit plain text variables but what if its a picture? I have some JPEG pictures that a user should choose from with the registration. Each picture i want to assign an ID so as PHP can process it. Is there anyway i could do this? Like assign an ID for the image or something?

The picture is browsed with a scrolling system like left right to choose. As they have chosen the picture they want, how do i send the information to PHP to let them know this image is chosen since its not a text and cannot be sent as a variable?

Help is really appreciated, Thanks.

Flash MX Clip Registration
Is there a way to alter the registration point of a clip created on the fly using MovieClip.createEmptyMovieClip?

Rob.

(flash Mx) Change Registration Point
i'm trying to make a script that enables a box seem to change the registration point of the rotation depending where the user click the mouse on the object.

what i've done is make the box rotate around a "registration" point, in this case a red cross-hair.

the problem i'm having is that sometimes the red cross-hair is located outside the grey box.

can anyone help me with this??

change rotation

thanks

How To I Make A Registration Page In Flash?
Hello my lovelys.....

I need to add a feature to my flash site where people can regester their name, email address and mobile number. I then want to receive this info and add it to my database. Can anyone tell me how to do this.
Thank you very much my fellow flashers.

Stefan150

Email Registration Within Flash File-no Pop Ups
I can't figure out how to put a form inside my flash site but I have gotten as far as to find that my isp likes formmail to get info from users to us at the back end. Thing is I don't want to have a pop up wreck the flow of the site -I hope it's possible to have a form reside within the site itself but I can't figure out how to do it. Help!

Flash 8 Ignores Registration Point
when i apply rotation (_rotation) to a movieclip with actionscript, i find that it totally ignores the registration point, while if i do it the motion->rotation blah blah way it works ok (the rotation is relevant to the registration point)... any ideas? Its really frustrating not to be able to rotate with actionscript...

Flash 8 Registration And Rotation Point ?
Is it a bug or some changes in my settings ?

I don't know why on my Flash 8 when I put the registration point of a
MovieClip on the upper left corner, the rotation point stays in the
middle, but.... (and that's the strange ennoying part)

When I try to put the Clip on the scene at a position f.i: 100,100 it is
the *center point* and not the upper left registration point that takes
the position.

Is there a way to correct this and to return to my previous settings,
where the registration point was The REference.

Tks


Henri Schongut

MovieClipLoader +registration Point [Flash 8, AS2]
Hi,

Well heres the deal, I've got quite a few images that are being loaded into my project through the MovieClipLoader function, anyway, when they are loaded to a specific MovieClip, their registration point is set to the top left corner (0, 0).

Is there any way of adjusting the registration point for this MovieClip? Or would I have to something like the following:


ActionScript Code:
var pL:MovieClipLoader   = new MovieClipLoader(); // loadervar baseClip:MovieClip    = _root.createEmptyMovieClip("holder", 1); // this is the clip used to change the registration pointvar pictureClip:MovieClip = baseclip.createEmptyMovieClip("picture", 1);// The clip actually holding the picturepL.loadClip("picturename", pictureClip);// Load the image to the MovieClippictureClip._x = -pictureClip._width / 2;pictureClip._y = -pictureClip._height / 2;// Set the X and Y of the picture to the middle of baseClip  


I don't know if the above is even possible, but thats what I'd guess, if there is no way of setting the registration point in a easier way. I feel that the above is such a waste.

Thanks for reading, and thanks for any replies.

My Flash MX Cannot Display Registration Mark
help! not sure what happen to my flash MX , it cannot display the TM and Registration Mark .....now all my old document with TM and ® now become "?"

Email Registration Page Problem In Flash Site
Hi,
I have a simple query. I have been trying to teach myself Flash / Actionscript and need some help.

I am trying to add a mailing-list registration page to a flash site. I'm using a service called 'Constant Contact' and in order to register an email address the URL submitted needs to pick up the input text and tag it on the end.

The steps i have taken are:

1. Made an input text box in my Flash movie with the instance name 'email'.
2. Added the below actionscript to the submit button:

The URL variables work to access the 'Constant Contact' registration page, but it will not tag on the input text at the end.

The submitted URL should be:
http://ui.constantcontact.com/d.jsp?name=ccoptin&m=MYNUMBER&p=oi&ea=INPUT TEXT

If I add an email address to the actual URL in the code, it works just fine. I just need to pick up the text in the registration box.
Have i made a simple mistake in my code or design?

Cheers









Attach Code

on(release){
emailName = email.text
url="http://ui.constantcontact.com/d.jsp?name=ccoptin&m=MYNUMBER&p=oi&ea="+emailName;
getURL(url,"_blank","POST");
}

Flash-PHP-mySQL Registration/login Application Added To Flashmatics Library
Hi guys,

Just to let you know I've added a new application to my Flashmatics Library :
Flash-PHP-mySQL registration/login application

Enjoy!!!

Flash Form+php(kirupa Tutorial)/messages Sent By Form Show Strange Characters
Flash form+php(kirupa tutorial)/messages sent by form show strange characters - uncorrect stressing for latin languages

I tested flash + php form (http://www.kirupa.com/developer/act...h_php_email.htm) , and noticed message field does not send messages correctly when words stressing is needed ( , , , , 鉶 ) ;
I received strange characters when typed stressed words :

谩 茅 i 贸 u 茫o p茫o c茫o 谩rvore ;

what has to be changed on the code to allow stressing ??

cheers

Flash Form Question : Sending HTML Form Values...
I'm trying to create a flash form version of an HTML form. It's basically just a voting drop down menu - user chooses "Yes", "no","maybe" from teh drop down and hits a submit buttons which would send the results to a CGI script though POST. I understand the submission aspect, but am not sure how to assign values to the drop down in the same way HTML does:

<option value="yes">
<option value="no>
...

Do I just set the combo box Data array to [yes,no,maybe]? If so, how is it to be sent?

thanks

Pass Variable Form HTML Form To Flash
Hi,

I'm trying to figure out how to send what the user selects from a HTML drop-down menu to the Flash movie.

In this scenario, the user picks an email address from a drop-down list and this is sent to flash as a variable called 'eaddress' which is eventually used in the flash movie to send a message to this address.

Any help is much appreciated!

Glenn

Converting This Basic Login Form To A Flash Form
Last edited by VexxMedia : 2008-02-22 at 10:09.
























posted in wrong forum

Help: Form Mail (CGI-style Email Form) In Flash
Anyone have a nice .FLA file to share so I can get in and play with the AS?

I need to setup a CGI-style email submission (request info, etc) completely within the MX2004 pro environment--for a client.

I'm not completely fluent in AS2.0, but I can run with changing the fields and calls so long as the sample is not too complex.

Much appreciated.

How Do I Set Up Hidden Form Variables For A Flash Form.
Guys, I'm using the flashkit tutorial on "send e-mail in flash the easy way", or something like that. Problem is that I need to set variables for hidden input, but don't know where and how to pass them along to the script?

Thanks

Convert HTML Form Into FLASH Form
http://www.bennyvo.com/test/

can someone look at this site and help me converting html form into flash form? is it possible?

thanks alots.

[F8] Flash Form Pops Up With The Php Url When Submitting Form
Hey guys,

I have a very minor issue here. I've created a contact form that uses a loadVars function to send the information to a php script and then on to my email. I've got everything working perfect except for the fact that when the user clicks submit it pops up a page with the address of my php script in order to run it. This is a bit annoying, so i was wondering if there was anyway to stop this from happening (but still run the script).

At the moment my code is:


PHP Code:



details_lv = new LoadVars ();
details_lv.userName = text2_mc.name_txt.text;
details_lv.userEmail = text2_mc.email_txt.text;
details_lv.userSubject = text2_mc.subject_txt.text;
details_lv.userMessage = text2_mc.message_txt.text;
details_lv.send("contact.php", "POST");





Any help would be appreciated,
Thx

Flash Form Vs HTML Form
Hello Peoples,

The following HTML code produces a button that when clicked sends the user to my online credit card processor's site where the user can proceed with a transaction.

----------HTML CODE----------
<form action='https://www.casher.com/buyer/purchase' method='post'>
<input type='hidden' name='dis' value='435532' >
<input type='hidden' name='quantity' value='1' >
<input type='hidden' name='product_id' value='1' >
<input name="submit" type='submit' value='Click to pay thru casher.com' >
</form>
----------HTML CODE----------

So my question is: If I want to use a button in a flash piece to do the same thing as the above HTML button, what code do I apply to the button in flash ?

Thanks,
Reflex.

HTML FORM To Flash FORM
I'm tryin to convert an HTML password page into FLASH and haven't a clue where to start. The site is www.modernvisionphotography.com and the code for HTML is
<form name="pix" method="post" action="http://www.724pix.com/album.asp" onsubmit="return 724check();">
<input type="hidden" name="init" value="init">
<input type="hidden" name="code" value="458">
<input type="text" name="password" size="16" maxlength="30"><br>
<input type="submit" name="submit" value="submit">

The user types in their password via an input text field but i haven't an idea what to put in the submission button in flash.

Any leads? or ideas would be helpful! Thanks for your time.

Flash/CGI E-mail Form -- Form Sends Info To E-mail? HELP Please (AIM/ICQ)
I am trying to make a flash file where you enter in information and then you click send and it sends the data in the form to my e-mail address. I tried customizing all of the cgi ones from the movies section of flashkit, and modifyied the cgi script accordingly. No matter what I've tried, I won't receive the information in my e-mail. For me, this matter is too hard to resolve over e-mail or a forum, so if you would like to, please help me out over instant messenger. I will be online under AIM name: blizzardmedia and ICQ number 64322480

Thanks for your help.

Registration Of MCs
Is it possible to change a MCs registration without using "Convert into Symbol" again and so resetting possible actionscript and other things in it?

MC `s Registration
Can anyone tell me how to change the mc`s Registration in actionScript3.0?
thanks for your reply.

Registration...
hey there guys ! you know that registration thing when you convert an object into a movie clip? those little boxes.. heh.. well.. i just wanna know.. what do they stand for?

Registration
I was wondering if there was a way to make a flash thing 4 people 2 register to my site.

Form In Flash, Tab Goes Off Form
Sorry - I really feel at a loss here as there is nowhere I can find to set up a control for the order in which you can move from one field to another. But as I test my form, and tab from one field to the next - the cursor goes from first to second field, then off the form to the menu bar, tab again and you end up in the third field of the form, tab again and you go off form to the next option on the menu bar, tab again and you go back to the last two fields in the form. What can I do to keep the cursor in the form going from one field to the next? PLEASE!?

PHP Form To Flash Form
Hello everyone, I have a form php that I want to convert to flash, but do not know how to do it, this it is the code.


Code:
<form action="www.ejemplo.com/algo" method="post" name="comment" enctype="multipart/form-data">
<p>Comentario</p>
<textarea id="cftext" name="text" rows="8" cols="50" class="formfield">Escribe tu comentario</textarea>
<input name="rate" id="cfrate" value="0" type="hidden">
<input name="system_content" value="function" type="hidden">
<input name="system_lib" value="algo" type="hidden">
<input name="system_name" value="algo" type="hidden">
<input name="system_type" value="algo" type="hidden">
<input name="system_cid" value="algo" type="hidden">
<input name="system_tpl_success" value="algo" type="hidden">
<input name="system_tpl_error" value="algo" type="hidden">
<br>
<p align="center"><input name="submit" value="POST COMMENT" type="submit"></p>
</form>
PLEASE, HELP ME!!!

Registration Point
Does anyone know what a registration point is in relation to a movie clip in Flash???
Thanks in advance,
Damien

Registration Points
Does anyone know if you can dynamically change the registration point of a movie clip at runtime.

My problem is this. I have a dummy MC which I use to load different photos into at runtime. The problem is I have to place the dummy clip at the top left at the moment. But, I don't know the exact size or orientation of the picture I'm loading so I would prefer it to be centred, therefore whatever the shape of the photo it would still be in the centre of the display area.

Can anyone help or come up with an ingenious fiddle?

Registration Point Help
I'm using loadMovie to load a jpeg into a movieclip. When I resize/rotate the movieclip with the jpeg in it, it resizes/rotates only from the upperleft corner. I know that loadMovie always loads movieclips with the registration point on the upperleft corner, but what if I want to resize the from the bottomright corner or the center. Is there a way around this? Any help would be appreciated because I'm really stumped on this one.

Domain Registration
Who does the domain registration? I believe it is still 35 american dollars a year. I am looking for the actual company who houses all the names.

Registration On Symbols
i dont understand what the registration is for on symbols......can any explain it to me.....

Registration Points
is there an way of changing the registration of a symbol from centre to centre-left?

There must be a way but i can't find it, it just means that all my bitmaps will have to be converted all over again.

cheers!

tabrez...

Registration Point
I just changed to Flash 7 and I am going crazy. I need to change the registration point of a movie clip. ( I remember in Flash 5 you could move the registration point of an instance for example to change rotation pivot points.) I am creating a scroolling paneI,but my content starts at the middle inside the scrolling panel, because the registration point is at the middle of the content. I CANNOT move my content around it's registration point because it's a LONG list and if I move it to have the registration point at its upper left, half of it falls off the working area, and thus disappears when I scroll to that point (which falls off the working area.). Please, can anyone tell me how to:
1-Move the registration point ?
or
2-make the work area larger?
Thanks!!!
P.S I am unable to turn the actions window into "non expert mode" Anyone knows how?

Registration Point Changes
MX2004Pro

I've got a masked image in a movie clip that I am zooming using a direct call to transitions using a variation on the code from http://www.kirupa.com/developer/mx2...ansitions2.htm.

Works very well with the zoom point anchored at the registration point of the movie clip.

If I create the movie clip with the registration point where I want it, all works as expected.

If I move the registration point of the movie clip after creating it (transform and move small white circle), the transition zoom takes no notice and still zooms about the original reg point.

I can do it the hard way, but would prefer to find something simpler and more elegant than brute force to anchor the zoom where I want it.

Is there another way to change reg point or some other simple workaround?

Registration Point
does anyone know how to change the registration point (the center) of an MC without doing it frame-by-frame?

Copyright 2005-08 www.BigResource.com, All rights reserved