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




Input Text Submit



Hi,

So this is what I am trying to do. See the HTML for the correct version. I want the flash file to do the same. I can only get it to go to the url but not submit.

Can anyone help?

thanks so much



FlashKit > Flash Help > Flash ActionScript
Posted on: 04-25-2004, 10:09 PM


View Complete Forum Thread with Replies

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

Submit Input Text
how do I send the value (the content) of "input text" to asp server? or, what kind of script should be written on the submit button?
thanks
polus

How Do I Submit Input Text?
Hello,

I am currently making a flash myspace. I almost have everything done except the comment box.

For all you people who have made a comment box on myspace you know that you have to add quite a lot of HTML variables and such to the code.

But I am stuck with making it in flash.

This is my regular code for the comment box.


Code:
<form method="post" action="http://collect.myspace.com/index.cfm?fuseaction=user.confirmComment">
<input type="hidden" name="friendID" value="84759643">
<textarea name="f_comments" wrap="VIRTUAL"></textarea>


Now how do I do that in flash? I have my input text made with a variable called "comment" and a button made. All I need help with is the actionscript itself.

Thank you,
Artem

How Do I Submit Input Text?
I am currently making a flash myspace. I almost have everything done except the comment box.

For all you people who have made a comment box on myspace you know that you have to add quite a lot of HTML variables and such to the code.

But I am stuck with making it in flash.

This is my regular code for the comment box.


Code:
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment">
<input type="hidden" name="friendID" value="57844960">
<textarea name="f_comments"></textarea>
</form>


Now how do I do that in flash? I have my input text made with a variable called "comment" and a button made. All I need help with is the actionscript itself.

Thank you,
Easah

How Do I Submit Input Text?
I am currently making a flash myspace. I almost have everything done except the comment box.

For all you people who have made a comment box on myspace you know that you have to add quite a lot of HTML variables and such to the code.

But I am stuck with making it in flash.

This is my regular code for the comment box.

<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment">
<input type="hidden" name="friendID" value="57844960">
<textarea name="f_comments"></textarea>
<input type="submit">
</form>

Now how do I do that in flash? I have my input text made with a variable called "comment" and a button made. All I need help with is the actionscript itself.

Thank you,
Easah

Input Submit To Dynamic Text
I want to have a user type something into an input box...
press enter...
and print what they just wrote on the input box in a dynamic text box. I also want to have the input box cleared out when enter is pressed... I have a submit button with the following on it


ActionScript Code:
on (release, keyPress "<Enter>") {
    command += newline;
    command += input;
    input = "";
}

Any ideas why this doesn't work....
Just for any help this may bring (to show it's not the button or whatever)

the following script does work (well not the input part) but does print out an unchanging sting on a newline


ActionScript Code:
on (release, keyPress "<Enter>") {
    command += newline;
    command += "some random junk"
    input = "";
}

Help... if you can thanks

Clearing Input Text Field Upon Submit
Hello:

I have a button that submits input text field data to a text file. Once that button is pressed, how do I clear the data from the text field?

Thanks!

[F8] Input Text Field To 'submit' On 2nd Return?
Hello there.
I've looked and looked for a solution to this and ALMOST got it working, but it's not behaving reliably enough.
I've got an input text field that I want to limit to 2 lines. I've set Selection.focus to the text field so you can just start typing when the field appears. If you press enter, you jump down to the second line (in the same field). If you press enter again, you 'submit' your text. This all works as intended - unless you click on the text field before typing. If you do that, when you hit enter the FIRST time it submits the text.
Currently I'm counting the occurences of '
' using indexof and submitting the text if the count is 2 or greater. Why it submits after 1 return, I do not know.
Is there a more elegant way to just 'get' the number of lines (rows) in an input text field (in AS2)?
If so, cheers in advance.

Submit Form Including Ui Component And Input Text
aaaargh!

I've been working with the example from macromedia (the one called order_form.fla) on UI components in a form and am completely frustrated. I have altered their example to submit to my existing cgi script and can get the UI combobox component to work but cannot get a simple Input Text field to pass the data to the cgi!

My action script is included below. I'm sure that it is a simple oversight on my part but I'm at a loss as to what's wrong. I've simplified the example to see if I can get it working. I have only two fields that I'm working with right now - "State" and "firstname". "State" is a combobox and only includes a few numbers right now for demo purposes - it submits data fine. "firstname" is a simple "input Text" box with an instance name of "firstnameIn" and a variable name of "firstname" - it does not transmit the input value to the cgi. I don't need replyData to do anything other than show that the form data has been received by the server - no need for feedback.

I just can't see where I've screwed up! Can you help?

Action Script:

//
// Change the value of sumbitURL to the URL
// of the CF or ASP file on your server.
//
submitURL = "http://216.130.169.5/cgi-bin/autodebt.cgi";
function onReset() {
StateIn.setSelectedIndex(0);
message_txt.text = "";
submit_btn.enabled = true;
}
function onSubmit() {
// Create a new LoadVars instance for the form data
formData = new LoadVars();
// Initialize formData variables:
formData.firstname = "";
formData.State = "";
// Gather the order information into a LoadVars instance.
formData.State = StateIn.getValue();
// Create another LoadVars instance to receive the server's reply
replyData = new LoadVars();
// Initialize reply variable.
replyData.State = "";

// Specify a function to call when this new instance receives the reply.
replyData.onLoad = handleReply;
// Submit the order data
formData.sendAndLoad(submitURL, replyData, "post");
// Tell the user what's happening.
message_txt.text = "Submitting request, please wait...";
}
function handleReply(success) {
if (success) {
message_txt.text = "Your request was received:
";
} else {
message_txt.text = "There was a problem submitting your order. The server may be down or not responding.";
}
}

How Can I Have Input Text Fields Submit To Email On A Button?
im self tought amature flash designer and the last piece to my website is having all designated input text fields go to my email on the one touch click of a designated "send" button.

i cant figure it out. basically what i have is multiple input text fields all in one keyframe that i want from the click of my send button go to my email within flash. any help would be greatly appreciated.

if you want to see what im talking about goto www.parkagencywest.com and see the "financing" section. as of now the send button doesnt do anything

Compound Conditional Input-text With Submit Button Problem
I'm sure I have this almost right but it won't work - I have searched but can't quite find the solution. I'm sure it is really simple so any help is greatly appreciated.

It is for an educational interactivity derived from these rules:


Quote:




Quantity Ordered/Discount Applied
300 – 350 = 7%
200 – 299 = 5%
100 – 199 = 3%
Less than 100 = No discount




In the animation there are 4 text input boxes (input_'x') each with their own submit button (submit_'x'_btn) beside them. The pupil will enter a 'quantity' number into each box, hit the submit button and a movieclip will play to represent the '% discount' resulting (say, five_mc).

So here is my pidgin code so far, it should make sense as to what I want to happen.


Code:
submit_1_btn.on (release) {
if (input_1<=350 && input_1>=300) {
_root.seven_mc.play();
} else if (input_1<=299 && input_1>=200) {
_root.five_mc.play();
} else if (input_1<=199 && input_1>=100) {
_root.three_mc.play();
} else if (input_1<100) {
_root.nodisc_mc.play();
}
If someone can sort that into woarkable code I would be very thankful, and for bonus points an 'Invalid Entry' rule would be amazing.

Thanks in advance
Scott@AOKLearning

edit: nearly forgot,
Flash8 Pro
Win XP
must be published in Player 7

Use Buttons To Submit Text To Input Text Help Please
i am want to make a movie for an interactive whiteboard where using a keyboard can be a pain, so i want to use a button to place a letter and then press enter on the stage.

but i am struggling to get going

i figure it has to be something like this

a_btn.onRelease = function () {
a = input_txt;
}
var a:String = "a";
but something is wrong and how do i do an enter btn
thank
i have so much to learn

Input To Output On Submit...
layout.swf
main.swf

layout.swf contains an input box on scene 3 with the variable name "msg_input" with a submit button.

main.swf contains an output box ("msg") which i would like to display the text submitted from the input box in layout.swf scene 3.

how do i go about setting up my submit button so it targets these swf files? ive used instances as placeholders for the loadmovie function.

example of submit button... i know its way wrong.

on(release){
_root.main.message.msg = msg_input??
}

How To Submit Input Field With Pressing Enter?
Hi,
I have MC with input field and I want to post variable to php script from it just pressing Enter eg. email address press Enter to add it to db.
I have:

on(keyPress "<Enter>"){
user = "rw/subs.php?email=" add _root.cemail;
_root.loadVariables(user,this,"POST");
}

All work fine but keyPress "<Enter>" - when I use it the input field change into object with hand cursor instead of normal vertical line cursor, and I can't write anything.
I think that it is problem with keyPress "<Enter>", but how can I in other way use key Enter to submit variable?

Regards
Lee

How To Submit Input Field With Pressing Enter?
Hi,
I have MC with input field and I want to post variable to php script from it just pressing Enter eg. email address press Enter to add it to db.
I have:

on(keyPress "<Enter>"){
user = "rw/subs.php?email=" add _root.cemail;
_root.loadVariables(user,this,"POST");
}

All work fine but keyPress "<Enter>" - when I use it the input field change into object with hand cursor instead of normal vertical line cursor, and I can't write anything.
I think that it is problem with keyPress "<Enter>", but how can I in other way use key Enter to submit variable?

Regards
Lee

Input Fields - Pressing Enter To Submit
I'm creating a calculator and I already have a calculate button that performs the calculation of my variables and advances the movie to the next frame. I would like a user to be able to hit enter while in the text field to also calculate and advance the frame.

code:
this.onEnterFrame = function(){
if (Key.getCode() == Key.ENTER) {
potentialSavings = (Number(currentRate_txt.text) - Number(newRate_txt.text));
gotoAndStop(2);
}
}


On the second frame I have a recalculate button that simply sends the movie back to frame one so you can re-enter values. When the movie is started, it functions correctly - when the enter or calculation button is pressed they perform the same function. But when you hit the recalculate button on page 2, the movie appears to jump to frame 1 and go right to frame two. Seemingly flash is still detecting that the Enter key was the last key pressed and is performing the function. Does anyone know a way around this!

Thanks in advance!

Submit Form When Pressing Enter In Input Field
hi guys i have an input field and an enter button.

i've been requested to make it so if you press enter when you are in the field it will act as if you click the submit button. can anyone give me a simple solution to completing this as i have tried various methods and cannot get any to work...

cheers dave

Send User Input Vai Mail Just Like Using Submit Form In HTML
i need to know that how can i send a user input on a mail address using a Flash form just like we use HTML form to sent the user input on a mail addresss not to a backend database?

INPUT TEXT - How To Restrict Number Of Lines Of Text A User Can Input Into Textbox
In a flash form I've created I have a input textbox. I don't want the user to be able to input more than 7 lines of text. Is this possible to do? I know that I can set a value for 'max char', but this is not useful for me -- it's essential that the user cannot input more than 7 lines of text.

How can I limit the number of lines a user can input into a textbox?


Thanks!
Glenn

Text Submit With PHP
ok the problem I'm having is I'm loading an exturnal swf into a movie and I'm trying to submit its info from it... I have it loading in level2 but for some reason the componant function wont call it. the code I'm calling is the
"// Button actions for "Submit" " where it says _level2.id.name_txt

anyone have any other solutions?
if needed I can attach the FLA

thanks,

Aaron

// Set tab order
message_txt.tabIndex = 1;
// Button actions for "View Entries"
function view() {
gotoAndPlay("loading");
}
// Button actions for "Clear"
function clear() {
message_txt.text = "";
}
// Button actions for "Submit"
function submit() {
name = _level2.id.name_txt.text;
message = message_txt.text;
message_txt.text = "";
gotoAndPlay("sending");
}
// Stop the movie
stop();

Validate Text And Submit The Text On To A New Field
Hi am having problem wiht my validation
im tryin to validate a text, which does the action below:

function validateMessage () {
var arr = []; // create an empty array
var msg = msg.text; // set var to the current text field

arr = msg.split(" "); // split each word into our array

if (arr.length > 10) { // if the array is longer than 10
// return a value of false to var istrue
} else { // if the array is less 10
// return a value of true to var istrue
}

but if i try to use the on realse method which send the text on to new screen and i use GotoAndStop (frame) to send it to the next frame.

I tried this bu t im getting problem, i can't seem to make the validation work correctly, it should only allow you to go through if you enter less then 10 words, if not it would send out and error message which is

error_msg.text = "You've exceeded 10 words, Please Try Again"; // do something

Submit Text Field
I'm making a tutorial video and on the end I would like a page that says "Any Quetions?" with a text field where the user can type their question, and a field to enter their own email so we can reply. When the submit button is pressed the text needs to be sent to someone at my company via email or something like that. How can this be done? I can't find a starting point for this in tutorials. Please Help! Thanks in advance.

Submit Text For Ticker
I recently saw a website that had a very nice ticker, you could write something in an INPUT TEXT FIELD, Submit it, and then it would be displayed for about 5 secons in a near window. Does anybody knows how to do this?

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.

Using Enter Key To Submit Text Answer?
I have an activity in which the user submits an anser into a text field - my question is: Is is possible to use the enter key to submit the answer?
Thanks in advance
Ol

Email Submit Via Imput Text
i'm trying to set up a system where the user inputs his email into a input box and clicks a button to send their email to a predeterminded adress so they can be contacted later.

[f8] Submit Data To Text File
Hey!

I was wondering if anyone could give me a hand.
I want to be able to have people submit their name and e-mail address on my site, then have the information stored in a simple text file on my server, so that i can retrieve the data and use it to for various promotions, i know this will involve using php, but i wondered if anyone could just give me a little pointer on where i could find more out : )

Thanks in advance,

Regards,


Curt.

Remove Input Text On Input Text Box Select?
Right now I've got an input text box with an instance name of EMail and Var of EMail. Then in my AS I've got:

code: var EMail:String = "Enter Your Email Address";

which puts "Enter Your Email Address" in the text box when it displays. What I'd like to do is when a user clicks inside the box to enter their email address is for that string to disappear.

Input Text To Show Up In Input Text Box In Later Frame
Hi, I am making a game where the player enters his or her name into and input text box at the beginning and then prints out a certificate at the end with his or her name on it. This is the actionscript I am using, however, this only allows me to have the box where the player enters his or her name to be on the same frame as where the text appears.

input_txt.onKillFocus = function () {
user_name = input_txt.text;
input_txt2.text = user_name;
}
_global.style.setStyle("fontSize",30);

I was wondering if there was anyway to modify this script to make it so that the name appears in the input_txt2 box in a later frame.

Thanks,

Lindsay

Can A Submit Button Submit 2 Different Forms?
Can a sumbit button submint 2 emils with different info on one click?

say one set of information to the user 1 containing data A

and one set of information to user 2 containing data B

Thanks -
ZG

What Are The Best Ways To Capture Input From An Input Text Field?
Hi,
I don't know ASP, CGI, PHP etc. I do, however, have a flash form with two input text fields named “E-mail” and “Name”, and a submit button.

How can I set this up so a user can input the info in these two fields and click the submit button to some how send me the data - Via Email? txt on the server? Anything...

Also, if this is not possible, what is the simplest way to learn PHP or whatever is most appropriate to get these goals accomplished.

Thanks,
Stephen

Text Fields - Pressing <enter> To Submit And...
Hello,

Regarding text fields, such as a login screen like at hotmail.com... is there any way to get flash to load the text field --ready to be typed in-- with the cursor flashing in the "user name" field? Also, once the password has been entered, is it possible to add a script that will allow you to merely press <enter> to submit the login info withOut having to add a submit button in order to use an "on (key<enter>) {"?

thanks for your input!

Submit Form Vars That Need To Be Sent To A Text File
I have a submit form with 3 variables (name,profession and email address).
I wonder if it is possible to save them in a text file in the server (each time a client suscribes) using only Action Script.
Or maybe send an email with that info ( so I can later put it in a file).
Is this possible?since I don´t know anything about PHP.

Hope you can help me.
Thanks in advance for your time and help.

Submit Submit Damn It Submit Already
I need to submit a bunch of text answers to a secure webpage,,, anyone have any ideas?

Converting Input Text To Non-input With Actionscript
Is it possible to set a text field whose property is Input to Static Text with Actionscript?

How To Make A Simple Text Box For Visitors To Submit Their Mail Addy With?
basically i just want a simple little box where visitors to my site can type their email address, hit submit, and it will email their addy to me

im using flash mx 2004

thank you so much for your help

Auto Submit From Flash Form Cfinput Text Field
I have a Flash Form in ColdFusion 8 that consist of a CFInput Text field, and a CFGrid. When the user scans a barcode, I want the form to validate that there is a value, then submit the form (without using a submit button).

Since I'm still a newbie at ActionScript 3.0, I was hoping someone could shed some insite. Should I use the onBlur action in the cfinput tag? What actionscript commands do I need to force a submit?

Text Field For Entering Emaill Address And Submit Button
Can anyone tell me a straight forward way to create a text field (where a user can enter an email address). Then, to the right of the text field would be a button that says "Sign me up!" . Then the user hits this button and an email is sent.

Input Text Field Won't Allow Input
We are having a really strange and stupid sounding problem with a text input box. It appears but won't allow any input. Before you shout 'stupid newbie' yes the properties are correctly defined as input text etc.

The input field is in a movie clip i.e. _root.myClip but we have never had this problem before. It is probably something obvious to to prevent us pulling out all of our hair has anyone got any idea why this is happening. We have tried forcing the text box focus etc but to no avail.

Help us!!!!!!!

How To Input Text Without Input Textfield
hi,

does anyone know, how i can display user input text without a textinput field ?

what i'm trying to achive is a message that is displayed on screen like in multiplayer games:

you press "t" for talk, and you see what you write in a kind of console but without changing to a text field

thanks

Trasfering Text From One Dynamic Text Box To A Input Text Box On A Differnt Page?
Ok so I have a text box set up which receives the date on a callendar which you click on. On another page (a seperate html file) I have an input text box for receiveing this text.

I've been trying to do this using various methods using getURL, but, I can't get it to work. This is becoming tedious especially as I'm not able to test it without having to reupload the files.

If someone could please inform me on how I should do this I'd be vary greatful.

If you need any further information I'll reply as soon as possible.

Input Boxes - Then Printing A Frame With Dynamic Boxes With The Input Text In Them...
I have created a flash document with input text... I put the input text with a a variable for each.. I need to print the variables on a seperate page. I used a bounding box inside a movie clip and the printing is working correctly... However it is not reading my input boxes into the dynamic text boxes..

What I did is I have the input boxes on the root timeline........ You input it and go through a few frames and you get the option to print from a button (which is printing 2nd frame of a movie symbol) NOTE: the printing is working correctly using #b.... This is what I have on the 2nd frame of the movie clip for the dynamic text boxes to read the input boxes and place those variables inside of those dynamic text boxes so it will print them as they inputted them...

Here is what I have for my button:

on (press) {
print(_root.Printing, "bmovie")
}


Here is what my variables are on the input boxes which are sitting on the root timeline, each word is a variable:

curious
passionate
accountable
resourceful
commited
teamwork
open
engerizing

External_focus
Clear_thinker
Imagination_courage
Inclusive_leader
Expertise


INSIDE THE PRINTING MOVIE I HAVE A FRAME WITH THIS ACTION ON IT FOR THE DYNAMIC TEXT BOXES TO READ THE INPUT TEXT BOXES:

External_focus1 = _parent.External_focus;
Clear_thinker1 = _parent.Clear_thinker;
Imagination_courage1 = _parent.Imagination_courage;
Inclusive_leader1 = _parent.Inclusive_leader;
Expertise1 = _parent.Expertise;
curious1 = _parent.curious;
passionate1 = _parent.passionate;
accountable1 = _parent.accountable;
resourceful1 = _parent.resourceful;
commited1 = _parent.commited;
teamwork1 = _parent.teamwork;
open1 = _parent.open;
engerizing1 = _parent.engerizing;


FOR SOME REASON IT IS NOT PRINTING MY INPUT BOX INFORMATION IN THE DYNAMIC TEXT BOXES.... DOES ANYONE KNOW WHY?

Parse "submit" Text On Contact Page?
I have a contact page on my flash site (www.amberbutler.com) that sends me an email generated via PHP. I do not have access to the code as it is provided by my host (godaddy). All the flash side does is name the variables and send them to the form. Then, I get emails like this:


Quote:




ad: <TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="futura" SIZE="12" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">genes</FONT></P></TEXTFORMAT>
email: <TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="futura" SIZE="12" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">erasedforprivacy@yahoo.com</FONT></P></TEXTFORMAT>
message: <TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="futura" SIZE="12" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="futura" SIZE="12" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">CUTE. I am proud of you amber!! i love you.</FONT></P></TEXTFORMAT>
name: <TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="futura" SIZE="12" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Kelsy</FONT></P></TEXTFORMAT>




As you can see, it's rather difficult to read but I don't have a clue where to begin fixing it. If it was just a few of the same character, sure, but I don't know how to parse out all of that. Any suggestions?

Thanks,
sogj

How To "clear" Text Fields On Clicking Submit?
so i have a login and password area.

when the user clicks login or submit.... I need to know how I can get the fields to clear.

here is my AS **NOTE: I have given my text boxes variables called "one" and "two"

Code:

stop();
this.clientEnterBtn.onRelease = function() {
   if (clientId.text == "" || clientPass.text =="") {
      gotoAndStop (31);
   } else {
      getURL("https://mylinkforthedatabasegoeshere.asp", "_blank", "POST");
   }
}



Thanks for the help!
ZG

Long Text Doesn't Fit Inside Single-line Input Text Field
Hi, I've been browsing these forums for a long time but this is my first post.

I'm creating an interface by which a user can design and order their own customized decal. Please see my example (I've added my script at the bottom of this post):
http://www3.sympatico.ca/sin.young/decaldesigner.html

My issues are:

1. I've set the character limit to 21, but if you were to type in 21 "W"s into the input field for whatever reason, or choose a wider font, the text shifts to the left and some of the characters become hidden as they don't all fit. I'd like to make the width of the text to always fit inside of the width of the white area. I can't figure out how to make this work.

Here's an example that does pretty much what I'm trying to describe: www.stickerjunkie.com.


2. I have the Standard Colors combo box working perfectly but can't seem to get the Fonts combo box working.

Any hints or links to actionscript tutorials/help that might be useful to my predicament is extremely appreciated.

// display colors and formatting
decalColor = new Color(decal);
color1 = new Color(decalColor);
//
function changeColor(comp) {
decalColor.setRGB(comp.getSelectedItem().data);
}
//Standard Colors array
standardcolors = [{label:'STANDARD COLORS'},
{label:'White', data:0xffffff},
{label:'Black', data:0x000000},
{label:'Silver', data:0x9c9c9c},
{label:'Gray', data:0x636b73}];

collistStandard.setDataProvider(standardcolors);
collistStandard.setSelectedIndex(0);
collistStandard.setChangeHandler('changeColor');
//
//Fonts array
myfonts = [{label:'FONTS'},
{label:'Arial', data:'Arial'},
{label:'Serpentine', data:'Serpentine'},
{label:'Enviro', data:'Enviro'},
{label:'Forte', data:'Forte'}];

fontlist.setDataProvider(myfonts);
fontlist.setSelectedIndex(0);
fontlist.setChangeHandler('');

Passing User Input Values(text Form) Into A Text File
Hey,

I've created a form-like input to receive user input in the form of text in a frame. Now, I would like to pass that input into an external text file. I hope to get help to implement this. Let's assume that this app will be only used locally and not over the web.

Thanks

Loading Text Files Into Multiline Input Text Boxes
Can someone tell me if it is possible to load text files (.asp, .txt, .css, .js) into a multiline input text box in FlashMX?

I have a text box called "textArea" that I want to use as the text editor for any text file on the server.

myTextStream = "somefile.xxx";
textArea.text = myTextStream;

Problems With Formating Text Cursor In Input Text Field II
You have a cursor which you move with your mouse, and when you type text in form field you have another cursor which is in this FlashKit form colored black.



I want it to be white.

There isn't a tut. to do that.


__________________
Buby

Input Text Fields Colours To Fade In And Out On Entering Text?
I am uploading a file with input text field that changes colour when you click in it - this is great, but what if i wanted the following:

in the initial state, the text box is grey as you can see, but when i click inside it, it fades to pink instead of suddenly just changing to pink. And likewise, when i click outside the box it fades back to grey.

You will see what i mean if you view the file.

it's mx not mx2004

Thanks.

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