ActionScript 1/2 :: Dynamic Form (going Back And Forth Without Losing Data)?

Oct 22, 2009

Here's what I'm trying to do: http:[url].....It's basically a form with 6 pages that you can scroll through back and forth, in case you missed some information and want to go back to review.I think the concept is good, but I'm unsure how to actually make it work.Here's a screenshot of the timeline so you get a feel of how I made it (but you probably already know...): http:[url]....

What I did was create a mask and the form scrolls through.... it goes forward until frame 45, then it goes backwards.For example, if we are on the page 2 of 6 and hit back, it plays the "backwards" animation and jumps back to frame 1 (of course not playing backwards, but with a "gotoAndStop(1);" command).The problem is that if I fill up, let's say all the info in the page 1 of 6, and then scroll through.. when I come back to that page, the info is lost.Here's what the form looks like: http:[url].....

I have named every input text and checkbock accordingly but am unsure how to make the input data actually stick to each field so that the "going back and forth" actually works.... how to get this done? The next step is to actually send out the form to a php script.. but first things first .My *guess* is that a script has to be added when I hit the "next" button - so that it sticks the field values (what the user typed) into each field, and stays there. This would also help gather info from each page for when it's ready to be sent.

View 38 Replies


Similar Posts:


ActionScript 3.0 :: Sending Flash Form Data To PHP And Reading Back XML?

Sep 24, 2009

sent form data in Flash to a PHP script before and then read in a variable (say a user id) that gets passed back by the PHP. simple enough.but if the script passes back XML, how do i read that in?elow is the code i've used to send PHP a name and an email address and get back a userid, but i'm not sure how to go about writing the code if the script is passing flash a chunk of XML instead?

ActionScript Code:
var userRequest:URLRequest = new URLRequest("saveUser.php");
var userLoader:URLLoader = new URLLoader();

[code].......

View 1 Replies

Simple Flash Form Variable - Collect Data From A Form, Then Pass That Data To An Asp File?

Oct 19, 2009

I am trying to create a simple form using Actionscript 3 that will collect data from a form, then pass that data to an asp file. I have attached the following code to the submit button,but this is not working.I'm not sure if I have to add anything else and I don't understand why this is not working. I'm trying to load all the variable info into one variable called email form.

submit_btn.onRelease = function() {
var emailform:text;
emailform.email_txt = email_txt.text;[code]......

View 1 Replies

Flash :: Session Data Is Losing With It

Jul 13, 2011

I'm using Flash uploader(uploadify, swfupload) with CodeIgniter, want to get the session data. I have found out that the flash does not send the session data, so I have set $config['sess_match_useragent'] = FALSE;

Now for example i have set session value myname in session and I can get it on my backend PHP script using Internet Explorer.[code]...

View 1 Replies

ActionScript 3.0 :: Duplicate Bitmap Without Losing Data?

Nov 22, 2010

I'm creating a mosaic application from facebook images and I have all of the coding working, my problem is I'm duplicating (cloning) Bitmap's in the final mosaic because obviously there aren't enough images on everyones facebook to make up the 1000+ images in a mosaic

See in the upperleft how all the images are very well defined, but then as the grid continues to the bottom and right each image gets less and less accurate until it is just one color...The code I am using is just,

ActionScript Code:
var myClone:Bitmap = new Bitmap(arrayBMD[index]);
addChild(myClone);

where arrayBMD is an array that holds each BitmapData for each Image.

View 7 Replies

ActionScript 2.0 :: Passing Numeric Data In Via Flashvars Results In Losing Zeros?

Mar 8, 2010

I'm modifying someone's old AS 2 Flash application and I need to pass numeric data in as a string OR have a properly formatted USD currency string in the end.

Currently, I might pass something like Data1=$34,000.00&Data2=$12,344.18&etc...

in via FlashVars. Assuming I show Data1 in a dynamic input field, I'd get something like "$34,0"

I'm not too concerned whether this is a super clean, proper solution or a functional hack-like solution with this application. It's needed, but only for a short time.

View 1 Replies

Flex :: Read Dynamic Form Child Data In Flex?

Jul 20, 2010

I created a form dynamically by adding each component in action script,now i want to get back the text/data entered in to that each component dynamically?[code]...

View 2 Replies

IDE :: Convert Back To Cs3 Form Cs4?

Feb 2, 2009

I have Flash CS4 but my school has CS3, i did a project in CS4 brought it to the school and the file will not open, what sould i do about this? How do i change the file format? The error message was unable to open file format.

View 1 Replies

Data Integration :: Store The Data Text In Access Databases Using Flash Form?

May 4, 2007

How to store the data text in Access databases using flash form and to search into the database. It is possible to work without server because I don't want to put this flash file on the net. how to make databases and to connect with flash and to have possibility to search the database, but to work database in the local computer.

View 1 Replies

Professional :: Input Data From A Frontend Site Into A Backend SWF, Pull Data, Then Send Back To Front?

Aug 31, 2011

I have a site with an SWF that I can put some metrics into, such as ZIP Code, Weight, etc..    then, it takes that info and gives me shipping rates.
 
I need to build a front-end site that I can have a forms page that will push data to the backend SWF, and then return the data back from the SWF to the front end.
 
Front-end -> SWF (Zip Code, Weight, Size) -> *Calculates* -> Front-End
 
That should be the flow..     So I need to send data to the backend, GET the data that it calculated, and return the results to my front-end.

View 3 Replies

Data Integration :: Load Data Into Form - Edit Then Save

Jan 14, 2008

I have an Access Database (doesn't need to be Access, I can phpAdmin or mysql, whatever will work) that has a list of names. I want the user to open a Flash form and have the names load up into seperate input boxes for each name. The user can then change the names, move them, whatever, and then save the record. I want it to just overwrite the record. I donlt want create a new record. I cannot, for the life of me, figure this out. I have tried to find some tutorials but nothing makes sense. Is ASP a good way to go? I have been struggling with this for a week now.

View 3 Replies

Data Integration :: Load/send XML Data Via HTML Form?

Jul 26, 2006

I currently have a Flash app that gets populated by parsing data from an external XML file. However, I need to get the XML data into a (JSP) session and can't neccesarily have an external XML file--any suggestions? Can I put the XML string into a hidden input field in a form on the HTML? Can Flash communicate with that HTML? Or are one of the below methods recommended:

* FlashVars

* Flash Remoting

* Web services

* JavaScript - call JS function

* fscommand

* ExternalInterface

View 1 Replies

Data Integration :: Flash Contact Form - Emailing Data Without PHP?

Jun 12, 2009

make a Flash contact form and send the data in an email without using a PHP script? My server does not support PHP... How would I go about sending an email from flash using a different language?

View 5 Replies

Data Integration :: Flash Form Data Connection Offline?

Jul 25, 2007

I want to create a flash form and be able to collect the dataoffline. The company I work for has a e-newsletter, and we wouldlike to set a lab top up (outdoors w/ no interenet connection) atan event and have the people sign up for the newsletter on thisflash form and collect the data in some kind of database (excel orwhatever). We had used paper in the past, but taking the names andemail addresses from the paper is time consuming and sometimes very

View 1 Replies

ActionScript 2.0 :: Get The Php To Report Back To The Result_lv And Get The Confirmation Email From The Form?

Apr 29, 2008

I have this form in my flash file and I can't quite make it do what I want. I get the form to send, but I don't get a confirmation if it sent out OK, and I also can't make the auto response work in the php file. My Flash file has the following AS in it.

[Code]...

How can I get the php to report back to the result_lv and get the confirmation email from the form.

View 14 Replies

Data Integration :: Form Component Not Transferring Data To CF?

Apr 11, 2007

some feedback onthe following. I'm stuck. I have a form that I can get to workusing text input fields, but I need to get it to work using thecomponents.I have a flash form with the following:

prmZip instance: text input box
prmMilage instance: combo box
prmUnita instance: data= Mi, label= Mi

[code]......

View 3 Replies

Data Integration :: Capture Data From A Contact Form?

Jul 8, 2006

Thus far I've learned how to create a contact form withfields for name, e-mail, phone number, and comments to include abutton for send and a button for clear. My question is what do I donext to capture and send the data to me via e-mail? I'm told Icould do it with PHP in my SQL I haven't a clue as to where to

View 2 Replies

ActionScript 2.0 :: Display What My Server Side Script Sends Back After Submit Form

Jul 11, 2003

Basically I would like to display what my server side script sends back after I submit my form. The results need to be displayed in my scroller box. I started to write it out but I am stuck.

[Code]...

View 4 Replies

ActionScript 2.0 :: Made The Movie 2 Frames And Looped It Back The Form Wont Work?

Aug 27, 2003

ok, i made a form and i want to count how many characters you can type so i got this far...

[AS]
mlength = message.length;
charsleft = 466-mlength+" characters left";
[/AS]

that works except when i made the movie 2 frames and looped it back the form wont work

[Code]...

View 10 Replies

ActionScript 2.0 :: Send The Data Using SendAndLoad Method To Asp File And Get Data Back From Asp File

Feb 13, 2008

I am the fan of kirupa but this is my first thread in forum. I have some problem with sendAndLoad method with actionscript 2.0. I am developing a online game with flash mx , MS SQL 2000 and asp. The problem is I send the data using sendAndLoad method to asp file and get data back from asp file. But when the internet connection is not good there is a problem like jam or lost packets. How can I prevent the lost of packets. Some of the data are important. Is there any way to solve this?

View 1 Replies

Data Integration :: Passing Data From Flash To Php And Back Into Flash?

Aug 23, 2010

I have a swf (swf#1) with links to another swf (swf #2). I would like use GET to pass data out of swf #1 to a PHP page that will be holding swf #2. I want swf #2 to start at a specific frame based on the data passed from swf #1.

View 1 Replies

ActionScript 3.0 :: Sending The Form Data?

Mar 25, 2009

I need to make an Odometer and the user can adjust the numbers and once they select their klm reading it needs to be sent to a PHP to sent it to a database. I am having trouble finding a way to send the data. Is it possible to make a "field box" and what ever number is in the box when you push submit sends to the php?

View 1 Replies

ActionScript 2.0 :: Sending Data From A Form?

Apr 20, 2009

The problem is that I have an input form (with an instance name of 'form'). Its for a newsletter sign up to [URL] All I need is for when you click on the sign up button, it sends the data in the form to a webpage (which is [URL] <- that is actually an example, but the link is pretty much like that.

View 1 Replies

ActionScript 3.0 :: Posting Form Data Via Php Using As3?

Jan 31, 2010

I have a simple form in my flash cs4...I am unable to get it to post to the php script here is the code I have:

Code:
var req:URLRequest=new URLRequest("mailer.php");
var vars:URLVariables = new URLVariables();

[code].....

View 3 Replies

Professional :: Php Form Not Sending Any Data?

Feb 10, 2012

My contact form is not giving out any data to my e-mail.I'm using two input feilds with instance names as theEmail and theMessage on my action script from which data for the sender's email & the message will be retrieved.Here is the action action script code i'm using -

snd_btn.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
 
function fl_MouseClickHandler(event:MouseEvent):void
{[code]......

View 11 Replies

Php :: Cannot Send All Of Flash Form Data

Apr 6, 2011

I have a flash form that sends a monthly report that users fill out to a php file, which sends it to a MS SQL database. This issue I am having is that anything larger then 1300 characters entered into the flash form will not work at all. If I reduce the amount of text to 1300 characters or less, it will send it to the php and database just fine. My research shows that a flash variable should be able to handle 65,000 characters, and when I trace my output from flash to php, all of the data is being traced. however, it is not being send to php. I am using LoadVars to send the data with _GET. So is this a php issue, or a flash issue? I ran a php info page and my max_post is set to 10M that should be enough to handle this load. I am not sure why it is not working with anything larger then 1300 characters. Below is my code for my php and flash files.

The variables that are affected by this are the testEvlauation, projects, support, and programManagement variables. I need them to send at least 8000 characters a peice to the php file.

Flash Code:

on (release) {
sendData = new LoadVars();
sendData.contractor = contractor.text;
sendData.name = name.text;

[Code]....

View 1 Replies

ActionScript 3.0 :: Passing Data Out To A Web Form?

Dec 11, 2010

I'm trying to pass a string of text out to a html web form. Something I've never done before.

Tadster suggested I use something like this:

ActionScript Code:
var outDataToJavaScript:XML =
<script>
<![CDATA[

[Code].....

The movie runs fine and shows no errors, but when my browser opens forms.html the data is not there. I assume this is because I'm using navigateToURL(new URLRequest("form.html) and therefore opening a new instance of form.html rather than the one I've already loaded into flash. Am I right? and if so how do I open the pre-loaded version? Or....am I way off and have failed to understand something quite basic?

View 2 Replies

ActionScript 2.0 :: Getting Form Data From A Check Box?

Jan 24, 2011

I have form in Flash that is processed by PHP.

I get the text from the form I use:

Code:
LV_out.firstname = t1.text;
and to get the info from a combo box, I use:
Code:
LV_out.reasonsforevent = reasonsforevent.selectedItem.data;

But I don't know how to get the info from a check box. how to get the info (i.e. whether the box is selected or not) from a check box?

View 1 Replies

ActionScript 2.0 :: Send Data (not In Form) To PHP

May 1, 2006

I have a page on my website that allows users to download some files using filereference. When the user clicks on the button to start the download, I want to pass the name of the button (the name of the file they are downloading) to a php script to put in my database, so I have a record of who download what.

I have no problems passing normal form data to php using the loadvariables, but since I want to send info that is not an input text box, I have no idea how to go about doing this.

View 8 Replies

ActionScript 2.0 :: Form Only Sending Data Sometimes

May 22, 2009

I have a form that allows users to submit an event.(So the form has text fields for name, event and date of event). The form works by sending its data to a php file, and then e-mailing that data to me. It works perfectly for me and many others, although it does not work when certain users submit their event - I just get a blank email. (So the form never works for 3 out of the 15 people using it). This is the script I am using to send the form's data to the php file:
Code:
eventForm.loadVariables("email.php", "POST");
Why this would not work for certain users only???

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved