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








Input Form


Hi everyone,

I have tried to make a form in my flash program to get the input and send it to my email account.
I am open to any idea.

Thank you in advance.




FlashKit > Flash Help > Flash ActionScript
Posted on: 05-16-2003, 06:29 PM


View Complete Forum Thread with Replies

Sponsored Links:

Help With Email Form - Input Text Boxes Not Allowing Input
i placed an email form into a movie clip in this site...and the input text boxes are no longer allowing me to type into them.

the email form (which i got from flashkit), as it's own file, works fine, so i know it's possible...but for some reason when i take the movie clip from one file and drag it into the one i'm working on...it loses that input text funcionality. All the actionscript is the same...everything is identical...i don't get it.

i even tried to place it on top of a movie clip within the main content clip thinking maybe because it was an mc within an mc within an mc that had something to do with it...but not the case.

any help you can provide is appreciated.
(attached file was saved as MX..orig is in MX 2004 Pro)

thanks.

oh, also....how would i load movie clips to different layers?...if i understand some things i've read here, that will help me speed up the site overall...as it is VERY slow in browser. but...maybe i'm wrong.

View Replies !    View Related
Email Form In Flash Using PHP - Input Fields Won't Allow Input?
I've used this tutorial http://www.kirupa.com/developer/actionscript/flash_php_email.htm

to create an email form. When I test in Flash, the input fields work fine. However when I publish it to the server I'm using, it won't allow the fields to be clicked on! You can see it here...www.tagdenim.com

(click on the Email List button at the bottom right.)

Any one else have this problem? I'm pretty sure I got all the code right, and I know for a fact that my server supports PHP. I'm using godaddy's server, btw. Maybe I have to turn the PHP on or something??? not sure. I'm a newbie to using PHP and Flash together. Any help would be appreciated!

Thanks!

View Replies !    View Related
Email Form In Flash Using PHP - Input Fields Won't Allow Input?
I've used this tutorial http://www.kirupa.com/developer/actionscript/flash_php_email.htm

to create an email form. When I test in Flash, the input fields work fine. However when I publish it to the server I'm using, it won't allow the fields to be clicked on! You can see it here...www.tagdenim.com

(click on the Email List button at the bottom right.)

Any one else have this problem? I'm pretty sure I got all the code right, and I know for a fact that my server supports PHP. I'm using godaddy's server, btw. Maybe I have to turn the PHP on or something??? not sure. I'm a newbie to using PHP and Flash together. Any help would be appreciated!

Thanks!

View Replies !    View Related
How To Make A Search Form That Opens A .swf File Form A Text Input ?
I'm working on a CD catalog, that has hundreds of pictures, and i need to create a search form that would open a file by typing its name

please help

View Replies !    View Related
Form With One Input
I need to make a flash form with one input. The input is for a promotional code. The input needs to be able to have its code input in it then search a DB to see if the code has been used or not. If so it goes to a sorry page, if not it goes to a thank you page. It also needs to write to a file telling me what codes have been used. I have been searching everywhere for help on this and cant find anything.

View Replies !    View Related
Input Form Problem
Hi there, I have an input form I just made for people to email me their email address and any feedback comments.

Here is my code for the submit button:

on (release) {
subject = "email post";
recipient = "kjohnn@hotmail.com";
loadVariablesNum ("http://www.crossfire.f2s.com/cgi-bin/formmail.pl", 0, "GET");
gotoAndPlay ("thankyou");
}

My server does support cgi and I have a formmail.pl located there from someone who was a webmaster before me, but I am not familiar with how it works... I think it's all set up fine?

But for some reason this isn't working. I get the thank you page but I have checked my mail and none of my tests have gone through to my address.

can anyone help?

Katie

[Edited by kjohn on 07-02-2001 at 03:59 PM]

View Replies !    View Related
If/Then Using Variable From Form Input
Is there a way to set up something to come out:

If MyVariable is equal to YES
Set Variable Server to Yes.com

In other words, I want the user to input a name into a variable input text field, and use that variable input to specify a different variable, so the second variable is always set by the input of the first. It would be easier if they could just type in the server name but they don't know it, they only know name. I am trying to emulate a database function because I won't have a database available, and with generator I dont know how to do it.

Any ideas how to accomplish my goal would be great.
Thanks!

TheTableist

View Replies !    View Related
Need Input Text Form Example
Would someone mind emailing me the .fla file that has a form to input simple text? I have never done it before in flash but know how in HTML. I am using Flash MX and would appreciate the help.

View Replies !    View Related
Data Input Form
Hi. I want to create a form on my flash page where the user inputs data into several input txt boxes ands when the submit button is pressed the data from each txt box is written to a file. I then want to read this file back into a dynamic txt box in a certain way...eg name, age etc


I've tried using the guestbook.php tutorial to do this but i havnt had any luck yet, this is what my page looks like http://207.44.132.4/higain.com/

and the button is "Place Ad"

currently all that happens when you press the submit button is that it writes a load of crap to the classified.txt file.

Any suggestions?

View Replies !    View Related
Email Input Form
does anyone know how to create an email input form in flash. (inputing name, email to a list?)

also- how do you create hidden form fields in flash?

View Replies !    View Related
Email Input Form
does anyone know how to create an email input form in flash. (inputing name, email to a list?)

also- how do you create hidden form fields in flash?

View Replies !    View Related
Email Input Form
Hi all,

I used this tutorial to create a simple PHP Email Input Form and I was wondering how I could do the same in Flash?

I've tried searching in the tutorials on here (Flashkit), but the searches come up blank.

Thanks.

View Replies !    View Related
Using Input Form In Flash
Greetings.
I purchased a web template with a flash element.

There is space for an input field, but I don't know how to add/change the programming, so that I can tell the input field what the action/value is, etc.

I have Flash8 - can someone help me to figure out how I can manually change that input field ?

Thanks,
MK

View Replies !    View Related
Input Form Mailfunctions
I've got the following code on an input text field and button. It checks through a php regex if a emailadres is valid. And indeed it works. It traces nicely "valid" and failed", but it ignores the gotoandstop("valid") and gotoandstop ("failed"). It keeps going to the gotoandstop("valid") frame, even if the email result traces "failed"? What wrong?


Code:
stop();
knopje.onRelease = function() {
mySendVars = new LoadVars();
myLoadVars = new LoadVars();
mySendVars.email = invoer.text;
mySendVars.sendAndLoad("http://www.test_email.nl/testmail.php", myLoadVars);
myLoadVars.onLoad = function(success) {
if (success) {
if (myLoadVars.ontvangen) {
trace(myLoadVars.ontvangen);
gotoAndStop("valid");
} else {
trace(myLoadVars.ontvangen);
gotoAndStop("failed");
}
} else {
gotoAndStop(3);
}
};
};

View Replies !    View Related
[CS3] Flash Input Form
Hey I was hoping someone could explain to me how php interacts with flash when I am trying to get an input form to work? Do I need php to get my form to work and if yes, why do I need it? I have a brinkster account, do I need to write the php code myself? If someone could help me that would be great. Also if there is a way where I can do all the form work in actionscript without worrying about writing php that would be even better.

Thanks

View Replies !    View Related
Form / Input Array?
Hello,

I may just be mising something super simple, but is there a way to get all of the elements, in this case all INPUTS, and put them into an array so that I can loop through them? In particular I'd like to do somenthing like:

<< see attached code snippet below >>

this would allow me to get all of the input names (ultimately for a custom level of pre submission form validation)

Thanks for any help!!

Rich









Attach Code

//NON FUNCTIONAL CODE SNIPPET
for(i=0; i<this.form.elements.length; i++) {
trace(this.form.element[i].name);
}

View Replies !    View Related
Form Input Validation
I made a contact form in Flash 8 Pro and I'm trying to validate the input before sending. All i want to do is verify that the user has entered something in each field. I'm using an if/else, but I can't get it to work properly. It seems that no matter what condition i use, it always returns the same value whether the fields are completed or not.

I made three fields called inputName, inputEmail, and inputComments. Here is the AS:

submitBtn.onRelease = function() {
if (inputName.length && inputEmail.length && inputComments.length) {
feedbackText.text = "Sending";
_parent.gotoAndStop(2);
} else {
feedbackText.text = "Please fill out all fields.";
}
}

I also tried this for the condition:
if (inputName.length > 0 && inputEmail.length > 0 && inputComments.length > 0)

I've also tried to reverse it so it will check it the fields are NOT filled in, like this:
if (inputName.text = "" || inputEmail.text = "" || inputComments.text = "")

and like this:
if (!inputName.length || !inputEmail.length || !inputComments.length)

Nothing is working. Can anybody tell me the correct way to validate text input?

View Replies !    View Related
Form Input Text
hello.

working with input text in flash. i'm declaring what should be in the input box when the movie loads (name, email, friend's email) so that the user knows where to enter what.

my problem is that you have to highlight the the text in order to type something new in. is there a way in flash to make the text automatically dissapear when you click in there.

i imagine it's an onEnterFrame, onMouseMove, updateAfterEvent sort of thing but I'm not sure of the syntax.

any ideas?

thanks,

-mikey

View Replies !    View Related
Form Input Text
Im making an email form with flash, but instead of having label I wanna take up a level. I've noticed some website where inside the Input text you had the description of the field and as soon as you clicked on it, the description will clear and you'll have the cursor. Anyone has an idea on how to do that.
thank you.

View Replies !    View Related
Input Form Madness
Hay all
This problem has been bothering me for sum time now, and the code was taken from Jace, it worked in his .fla so me thinkin flash and swish and pretty much da same except swish less flexible, but i wanted to design a site in swish,,. quick and painless... ! i wish

Da problem ( my input form )
the submit button needs to be double clicked in order for the messagebox to appear(which validates the inputfields). when all fields are filled in and the submit button released then the messagebox is supposed to say "message sent" but that dont happen.

The code:
on (release) {
if (inputname.text eq "" || inputname.text eq null) {
messagebox.message.text = "Please input your name";
messagebox.gotoAndPlay(2);
} else if (inputtel.text eq "" || inputtel.text eq null) {
messagebox.message.text = "Please input Telephone No";
messagebox.gotoAndPlay(2);
} else if (inputfax.text eq "" || inputfax.text eq null) {
messagebox.message.text = "Please include your Fax No";
messagebox.gotoAndPlay(2);
} else if (inputemail.text eq "" || inputemail.text eq null) {
messagebox.message.text = "Please include your email";
messagebox.gotoAndPlay(2);
} else if (inputmessage.text eq "" || inputmessage.text eq null) {
messagebox.message.text = "Please enter your quiry";
messagebox.gotoAndPlay(2);
}
if ((inputname.text ne null || inputname.text ne "") and (inputemail.text ne null || inputemail.text ne "") and (inputtel.text ne null || inputtel.text ne "") and (inputfax.text ne null || inputfax.text ne "") and (inputmessage.text ne null || inputmessage ne "")) {
loadVariablesNum("sendmail.php",0,'POST');
messagebox.message.text = "Message Sent";
messagebox.gotoAndPlay(2);
_parent.interface.gotoAndPlay(2);
}
}undefined
Please if any1 knows were im going wrong pls pls help would be forever thankful

View Replies !    View Related
Very Stubborn Input Form, Cgi/php Not Working
Okay, I know there have been a million posts like this, and YES I have read MANY of them, and tried many things. I've been at this for about 2 weeks straight now, so any help is GREATLY appreciated....


I am on the f2s server, free website server that supports php and cgi scripts located in any directory of the site. I want to make a very simple input form that will email the results to me. I have tried several different scripts, and nothing happens. I dont get any email from these.

I don't know what is going wrong because I don't have perl (I think that's what you need to see the errors?)

According to f2s, I shouldn't have to set permissions manually...

And my scripting is as follows:

on (release) {
subject = "email post";
recipient = "kjohnn@hotmail.com";
loadVariablesNum ("http://www.crossfire.f2s.com/formmail.pl", 0, "GET");
gotoAndPlay ("thankyou");
}

I have tried Post as well...

any ideas???

Katie

View Replies !    View Related
Tabbing In Form Input Boxes
I have a table containing input boxes and menu buttons in a top bar. I'd like to allow the user to tab along to each input box in order, but at the moment the tabbing order is random and also allows the user to flip up to the menu buttons. Is there any way I can control this? Cheers...

View Replies !    View Related
Sending Form-input To An E-mailaddress
I made a simple form with three textboxes (named: e-mail, name, number). What do I have to do, to have the typed-in text to be sent directly to an e-mailaddress, without opening Outlook, when a user presses the submit button?
Is this a big scripting problem or is there a simple solution?

View Replies !    View Related
Can Flash Input Form Outside The .fla File?
If I open a web page with a flash MC, and I want it to link when clikced. How do I input the URL from the HTML source where I embed the the .swf. So if I wanted to change the URL later, I woudn't have to go back change the .fla file, just the URL in the HTML editor.

View Replies !    View Related
Why I Can't Write In Input Text Of Form?
See:

I have a swf (index.swf) and into a movie (called mc) I have other swf (called cl.swf) with a form to send data to a php page.

The cl.swf works normaly if lonely, but when loaded into index.swf it stay without possibility of write the input text.

the php code id:
PHP Code:




<?
echo "txtf=$email";
?>







and email is the var of input text that's the addres in index is _root.mc.mc.email

when I send the variables in the final project, I'm using:
Code:
loadVariables ("http://www.raioxnet.com.br/helpsite/co.php", "_root.mc.mc", "POST");


somebody help-me!!

View Replies !    View Related
Problem With E-mail Input Form
Hello
i have e-mail form and whem user wants to enter @ character it just makes paste in that field. How to correct this
Thanks

View Replies !    View Related
Generate A Number Form A Input
hi i want to generate passwords to my game and i want to generate the passwords by using the name and the level the player are in

the user enter theyr name in a input the name will be transformed to numbers
"a" = 2;
"b" = 34;
"c" = 594;
"d" = 29;
"e" = 483;
"f" = 59;
"g" = 45;
"h" = 54;
"i" = 877;
"j" = 5;
"k" = 51;
"l" = 24;
"m" = 45;
"n" = 248;
"o" = 55;
........
....

then the name in numbers will be multiply with the level number (138455*4545435)
and the result number will be the password

can someone help me creating this
if u have any idea pleease post a reply

View Replies !    View Related
Controlling Input Of Email Form
Hi,

I am using Kirupa's email tutorial:

http://www.kirupa.com/developer/acti..._php_email.htm

Now I was wondering how do I make it check for a valid email address before sending? As it is now you can send it with no info and it will go through.

View Replies !    View Related
Can't Input Text Into Form In Loaded Swf
Does this sound like a familiar problem to anyone? I have input text in a swf that is loaded into a shell movie. Playing the swf alone I can get my cursor in the field and input text, but when it's loaded into the shell I can't get my cursor in.

Help me.

View Replies !    View Related
[F8]-Flash Input Text And Form Help
I currently have a form that uses a php script to send email to a client. I have the form setup where it is input text. When I receive it comes in this format:

Senders Name: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">chauntika</FONT></P></TEXTFORMAT>

Email: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">xxxx@xxxx.com</FONT></P></TEXTFORMAT>

Question: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">test</FONT></P></TEXTFORMAT>

How can I get it to just have the necessary elements (Senders Name, Email, and Question) and not all of the html within the email itself.

View Replies !    View Related
[CS3] Check Input In Form Fields Available?
hello there,

i have made some contact form in flash with php, i want to check the input in the fileds are correct,

somebody have a check guide that check this forms

phone: if only num' are inserted.
mail: if the input contein @ and .
name: if the name contined only letters

if that very complicated I would like some guide that explain about the z-index with flash,
I would like to build a contact form, in html and the flash will be the background.


thanks alot

avi

View Replies !    View Related
Sending Form Input To My Autoresponder...
Hello.

I'm new to this, so hello to everyone!

My problem is, I'm creating a form using flash 8 and want to connect it to my autoresponder, which is a cgi. file located on my hosting server.

I used the action script, "getURL" along with the URL where the autoresponder is hosted and "post".

The button works but it takes me to the control panel of my autoresponder. If anyone can help me figure this out, that would be awesome.

Thanks for your help in advance.

Dave

View Replies !    View Related
Input Data To Xml From Flash Form
trying to get data from form in flash to xml file, the element and node ref's are correct and the send() has the correct parameters. I don't know ,aybe the xml file is incorrect..have been staring at it for too long!..any ideas?

actionscript below:

var myArray:Array= new Array;

var XMLPath:String= "input.xml"
var my_xml:XML = new XML();
my_xml.ignoreWhite = true;
my_xml.contentType = "text/xml";

my_xml.onLoad=function(success){

if (success) {
my_xml.firstChild.childNodes[0].childNodes[0].childNodes[0].nodeValue=mId_txt.text;
my_xml.firstChild.childNodes[0].childNodes[1].childNodes[0].nodeValue=fn_txt.text;
my_xml.firstChild.childNodes[0].childNodes[2].childNodes[0].nodeValue=ln_txt.text;
my_xml.firstChild.childNodes[0].childNodes[3].childNodes[0].nodeValue=hc_txt.text;
}

}

btn.onPress=function(){
my_xml.send(XMLPath,"_blank");
}


xml below:

<?xml version='1.0'?>
<members>
<member>

<id> </id>
<fn> </fn>
<ln> </ln>
<hc> </hc>

</member>
</members>

View Replies !    View Related
Backspace Form Input Without Keyboard?
I need to allow backspace functionality in a form that's run on a kiosk so there's no keyboard - inputs are entered via touchscreen. Adding characters and clearing the field alltogether is already there, but I can't figure out how to backspace to remove one character at a time

here's a snipet of what's going on:
BUTTON "M":
on(release) {
inputone = inputone + "M" ;
timer.gotoAndPlay(1);
}

CLEAR:
on(release) {
inputone = "" ;
timer.gotoAndPlay(1);
}

inputone is the variable that is sent to the database

Any advice would be greatly appreciated.

View Replies !    View Related
Masking A Form - Can't See Input Text
Has anyone tried to mask a flash form before?

I created form and put mask over it. When I test the form I can't see the text that I enter in the input fields. It's really weird...when I take away the mask it works fine so the mask is obviously messing it up for some reason. The problem is I really need the mask because the form has to scroll within a certain area.

Any ideas?

Thanks!
-FCP

View Replies !    View Related
TabIndex And Input Field In A Form
Hi,

I'm hoping someone can help with this. I've made a form that includes 12 input text fields (3 fields across, 4 rows down) that I'm able to type in when I do the Test Movie feature, but when I "tab" to get to the next field, it skips around in a weird order. I figure it has something to do with TabIndex, but I'm unclear where this goes in the .fla file.

When I click on one of the input fields (in the .fla file) it tells me that "current selections cannot have actions applied to them."

What am I overlooking? I apologize if this question has been asked before. I searched the forums but didn't exactly find the problem I'm having.

I'm somewhat new at the ActionScripting so I'm hoping I post this in the correct forum.

Thanks in advance for any help you can provide.

Alice

View Replies !    View Related
Input Form Issues With Flash Mx
Hi I'm building a site and I have 2 input forms, a contact and mailing list form.
The issue I'm having is when someone uses the form and sends it off, the details they have put in remain there when they return the form.

check it at

http://www.the-undersided.com/main.html

if you can help me I would be most greatful.

thanks

View Replies !    View Related
Problems With [] Brackets In Input Form
Hello all,
I'm trying to create an input form which will take a user's email address, name, and last name and submit this info into a third-party email application. The problem is that the application requires a variable be sent which includes brackets [] and flash gives me errors as soon as I add them.


Here is an actual working html form. Notice the hidden value FormValue_MailListIDs[]. How can I convert this to a flash form? Thank you


Code:
<form action="subscribe.php" method="post" name="SubscriptionForm" id="SubscriptionForm">
<input type="hidden" name="FormValue_MailListIDs[]" value="75">
<br>
Email address<br>
<input type="text" name="FormValue_Email" value=""><br>
first<br>
<input type="text" name="FormValue_CustomField150" value=""><br>
last<br>
<input type="text" name="FormValue_CustomField151" value=""><br>
<input type="submit" name="Subscribe" value="Submit">
</form>

View Replies !    View Related
Flash-php Form & Input Text
I've a little problem with my mail form (similar to the one here at kirupa).
the text in the message is not correctly displayed in the email, namely new lines are not shown...

If I write something like:

Hello
world

in the body of the email I get:

Helloworld


Any advice will be helpful,
thanks

View Replies !    View Related
Form Input Fields And SetFocus
Hi guys, Im makeing a form right now, and Im using setFocus to clear the input fields on selection(ie: each field name is by default inside the field, and selecting a field clears its text ready for user to update)...The bit im stuck on is getting the input fields to reset to the name, if and ONLY if nothing is added by the user. hope this makes sence..

I am using a function to do this on all fields, rather than individual set/kill focus calls for each field(there are over 20 field possibilities) ...don't really want to do individual onKillFocus, but if i have to i have to.. any ideas?

View Replies !    View Related
Input Form Issues With Flash Mx
Hi I'm building a site and I have 2 input forms, a contact and mailing list form.
The issue I'm having is when someone uses the form and sends it off, the details they have put in remain there when they return the form.

check it at

http://www.the-undersided.com/main.html

if you can help me I would be most greatful.

thanks

View Replies !    View Related
Form W/checkboxes & Input Text
Hi everyone,

I've trying to do a contact form for my client, but, I'm really getting no where.

The form has checkboxes and input text. I would like to send the info to an email address. I know that I need an ASP file. I have one-but, I'm not sure if it's correct or not. (This is my first time working with ASP).

I'm also not sure if the Action Script I'm using for the form is correct. Nothing I do seems to work, here is the web address to the site: www.redkoh.com.

I was wondering if I pasted the AS code and the ASP file here - if someone could let me know what I'm doing wrong?

Pleeeeaaaaasssseee!!

Thanks for any help - I'm losing my mind!!

View Replies !    View Related
Filtering Out Bad Characters From Input Form
I've got an input text box that i want the user to only enter the digits 0-9. If they do enter ANY other digit i want an error to display and the movie to wait until they have entered a valid number.

here's the current version of the code i've made:


ActionScript Code:
badCharacterARRAY = new Array("a","b", "c", "d", "e", "f", "&", ".", "@", "[", "Q", "w" etc etc...) 
   
    for(var i = 0; i<badCharacterARRAY.length; i++){
       
        if((salaryINDEX.indexOf(badCharacterARRAY[i])>(-1))){
       
        trace("error");
        salaryV = "error";
        _global.ERRORv = true;
        break
       
    }
    }



is there a simple way of doing this???

View Replies !    View Related
Input Form Then To A Letter Format
I need to made an interface were user can input there details and then the details can be added into parts of a letter. Then the user can copy and past the letter?

example

input information

name : mr john smith
job : teacher
school : new college

output

Dear mr john smith,
congratulations on your new job as a teacher in the new college.

this is the sort of idea of what i need. can any one give me an idea of how to do it. I would be greatfull if anyone has a tutorial or fla of something similar.

thanks gerard

View Replies !    View Related
NEEDED: F2s User Who Has A Working Input Form
Hello, I need some help from someone who specifically uses freedom2surf web server for their homepage because I have tried to get my mailing script to work, and it is working on other people's servers, except my own. It would be so great if someone who has done this on f2s could walk me through the process. Thanks so much,

Katie

View Replies !    View Related
FORM Input Field To Enter Site ?
I have a flash site with an intro, what I want to do is within flash, have a text input field and when the user types enter and hits submit the flash intro goes to the homepage an html page. Would this be an actionscript project? Could someone point me in the right direction.. thanks!!!

Bill

View Replies !    View Related
Input Type File In Flash Form
Hi you all,

i'm making an form in flash, now i want to put a button into it like "input type file" in html.......so i can send a file with this form...

View Replies !    View Related
Flash 5 Form Input Character Limit
Im working on a flash quick search module and was wondering what the best way to limit the number of characters that can be inputed into a text field/box.

ie, ive a dynamic text box and want to limit input characters to a maximum of 2. Any boday have examples and solutions? This has to be coded in flash 5,

cheers.

View Replies !    View Related
Input Variables From Form Mail Straight Into An FLA?
(FlashMX) I have a situation that I'm wondering if it's possible to automate. If variables are sent to me from a server in a Form Mail script (cgi, or perl), how can I automatically input those variables into a FLA at authoring time - not an swf at runtime? I don't want to use a text file to load from, because the end result will be a CD rom that I only wish to include the EXE projector file. Retyping or copy/paste would be fine for a couple of variables, but to pass 50+ variables for each project I'm searching for an automated solution. Any suggestions?

View Replies !    View Related
Input Text To Form Within Same Flash Document
Can anyone tell me how to recieve input text from a user and submit it to another frame/location/text box etc in the same Flash document?

View Replies !    View Related
Strange Form Text Input Behavior
I have a flash mx form with input and checkboxes. I am able to pass all this variables to the database with formData.sendAndLoad through an asp page with no problem, except for the last text input box. the only difference from the other input boxes is the sequence. Its the last input box on the form and it follows my checkbox and radio buttons.

I have tried everything to get the input box to pass the data to the database via the asp page. all with no luck. my asp page returns a error. once i remove the last input box it works.

Now I don't know if this is an flash behavior or a ASP error. But all the other input boxes work. Does any body have an idea why this behavior happens? Can somebody point me in a direction to solve this. It has become obsessive to figure this out and I am beginning to feel the effects, yet I need to solve this.

I hope I made some sense.

I can attach my fla and asp files if someone is willing to take a look.

thanks

Howard

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved