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




Populate Combo Box Values Using Another Combo Box Instance



Hi,I have two combo boxes. The first combo box's data is added through an XMLConnector object, the second combo box, I would like to populate through an on (change) event in the first combo box. The items in the second combo box would relate to the selection made in the first combo box.I have attempted the following within the Actions for the first combo box:on(change) { switch(this.value) { case "value1": comboBox2.addItem({Label:"Label",Data:"Data"}); break; } // end switch} // end eventwhich is not working. should an event be dispatched by comboBox1 and a listener be attached to comboBox2? I can't find any examples of this on the internet.. but i might be using the wrong search terms. any help with this would be greatly appreciated. Seriously, i'll buy beers.-Thanks



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 12-21-2005, 02:30 PM


View Complete Forum Thread with Replies

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

Populate Combo Box With XML
If i have this XML..

<?xml version="1.0"?>
<creature>
<category id="mammal" has="hairy_skin,mouth,warm_blood">
<species id="cat" has="fur,tail,whiskers">
<breed id="tiger" has="stripey_fur"/>
<breed id="lion" has="brown_fur,mane"/>
<breed id="panther" has="black_fur"/>
</species>
<species id="dog" has="hair,tail,wet_nose">
<breed id="labrador" has="soft_hair"/>
</species>
<species id="pig" has="snout,trotters"/>
<species id="cow" has="nose,hooves"/>
</category>
<category id="reptile" has="scaly_skin,mouth,cold_blood">
<species id="lizard" has="tail,legs">
<breed id="iguana" has=""/>
</species>
<species id="snake" has="tail,no_legs,forked_tongue">
<breed id="cobra" has="hooded_head">
<subbreed id="greatcobra" has="big_hood"/>
</breed>
</species>
</category>
<category id="bird" has="feathers,beak,wings,warm_blood" />
<category id="fish" has="scales,mouth,cold_blood">
<species id="mullet" has="thick_lips"/>
<species id="pike" has="sharp_teeth"/>
</category>
</creature>

would there be a way to get all the breed and subbreeds to fill up a combo box?

Does any one have any actionscript examples?
many thanks

Populate Combo Box Via XML
I have a combo box that I would like to populate with the data in the first node (node name is Honor) of my xml file using actionscript. I'm using Flash 8. How do I do that?

I have this to make the combo box which is fine...
var testBox:ComboBox = attachMovie("ComboBox", "test_cb", this.getNextHighestDepth());
testBox._x = 300;
testBox._y = 100;

I have this as well...
var xmlQuery = new XML();
xmlQuery.ignoreWhite = true;

Populate Combo Box
Hi
I have a combox in my mxml application with id "ncmb3".It should have
values "AM/PM","AM","PM".
I need to acces these values from an xml file.The xml file is uploaded
But iam not able to access the values.
My mxml code is as follows:

[Bindable]
public var externalXML:XML;
public function initDemoApp():void
{
var loader:URLLoader = new URLLoader();
var request:URLRequest = new URLRequest("ScheduledConf.xml");
loader.load(request);
loader.addEventListener(Event.COMPLETE, onComplete);
}


public function onComplete(event:Event):void
{
var loader:URLLoader = event.target as URLLoader;
if (loader != null)
{
externalXML = new XML(loader.data);
trace(externalXML.toXMLString());
loadProperties(externalXML);
populatecombo(externalXML);
}
else {
trace("loader is not a URLLoader!");
}
}


private function populatecombo(externalXML:XML):void
{
var comboArray:ArrayCollection = new ArrayCollection();
for (var i:int=0;i<externalXML.list.length();i++)
{
ncmb3.text=externalXML.list.rampm[i];
comboArray.addItem({label:ncmb3.text});
}

}


<mx:ComboBox id="ncmb3" width="76" styleName="datePage" height="22"
fontSize="9" textAlign="left"/>

The XML file is as follows:


<properties>
<list>
<rampm label ="AM/PM"></rampm>
<rampm label ="AM"> </rampm>
<rampm label ="PM"> </rampm>
</list>
<properties>
Can anyone tell where am i going wrong?


Thanx in advance
Sheetal

Populate Combo Box With XML
if i have this XML..

<?xml version="1.0"?>
<creature>
<category id="mammal" has="hairy_skin,mouth,warm_blood">
<species id="cat" has="fur,tail,whiskers">
<breed id="tiger" has="stripey_fur"/>
<breed id="lion" has="brown_fur,mane"/>
<breed id="panther" has="black_fur"/>
</species>
<species id="dog" has="hair,tail,wet_nose">
<breed id="labrador" has="soft_hair"/>
</species>
<species id="pig" has="snout,trotters"/>
<species id="cow" has="nose,hooves"/>
</category>
<category id="reptile" has="scaly_skin,mouth,cold_blood">
<species id="lizard" has="tail,legs">
<breed id="iguana" has=""/>
</species>
<species id="snake" has="tail,no_legs,forked_tongue">
<breed id="cobra" has="hooded_head">
<subbreed id="greatcobra" has="big_hood"/>
</breed>
</species>
</category>
<category id="bird" has="feathers,beak,wings,warm_blood" />
<category id="fish" has="scales,mouth,cold_blood">
<species id="mullet" has="thick_lips"/>
<species id="pike" has="sharp_teeth"/>
</category>
</creature>

is there any standard code that i could use to fill up a combo/pull down menu with this information?

many thanks

Combo Box Populate With PHP Question.
I have a PHP page which gives me this information.
pics=6&pic1=image/seaside1.jpg&pic2=image/seaside2.jpg&pic3=image/seaside3.jpg&pic4=image/seaside4.jpg&pic5=image/seaside5.jpg&pic6=image/stjoseph1.jpg&var=pics=6&pic1=image/seaside1.jpg&pic2=image/seaside2.jpg&pic3=image/seaside3.jpg&pic4=image/seaside4.jpg&pic5=image/seaside5.jpg&pic6=image/stjoseph1.jpg

I would like a combo box to show me a list of the items and then upload the image in flash. I placed a combo box on the stage and called it combo. I somehow need it to list "seaside1.jpg", "seaside2.jpg" . . . . and so on. Then upload that image. Here is all that I have so far. Whats next?

combo.addItem("-- select image --");
loadVariablesNum("image/jpeegs.php", 0, "POST");

Populate Combo Box Using LoadVars();
Hi, i was wonderng how you populate a combo box using loadVars();

any ideas??

here is the code so far:

CODEmyLv = new LoadVars();
myLv.onLoad = function(success) {
    i = 1;
    if (success) {
        trace("amount of users: "+myLv.amnt);
        while (i<=myLv.amnt) {
            _root.usrs.addItem(myLv.user);
            i++;
        }
    }
};
myLv.load("http://localhost/loadusernames.php");

Populate Combo With Years From 1900 To 2007
I need to populate a combobox with the years from 1900 to 2006 and when the year(s) change it goes to 2007-2008-2009, and it also brings in a label for that year.

So that it will be a scrolling dropdown menu with 107 labels in it. The first item must have a label "I don't know". Because user will be asked to select what year house was built and they might not know so need to be able to select 'I don't know' which needs to be at the top of the list where they see it.

So need the combobox like this;

I don't know
1900
1901
1902
1903
1904
etc
etc
2006

Combo Box Values
I am trying to send three combo box values to a form, but can't seem to compile the data corretly in AS. Any help is appreciated - thanks in advance
----------------------
var gatherForm = new LoadVars();

function sendForm() {
gatherForm.month = checkdate.month.selectedItem.data;
gatherForm.day = checkdate.day.selectedItem.data;
gatherForm.year = checkdate.year.selectedItem.data;
gatherForm.send("http://www.gigbuilder.com/cal/ca/craycraft.nsf/checkdates", "_blank", "POST");
}

checkdate.submitBtn.onRelease = function() {
sendForm();
-----------------------

[F8] Combo Box Values
hi

I've created a combo box with about 31 labels in it. i am currently stuck on the code. I want to be able to Click a label in the combo box and this should load a list into a text box.

is it possible to load an external txt file into the text box once a label in the combo box is clicked?

e.g

combo box - Value1
Value2
Value3

//user clicks "value2" which prompts txt file to load

text2.txt containing a list loads into textbox

or

//if user clicks "value3"

text3.txt containing a list loads into textbox

ne ideas....

Passing Combo Box Values To Php
I'm a PHP coder working with a Flash coder to set up a mailing form. Everything is working with the exception of the combo boxes which are not passing their values to PHP. Can anyone tell me how/where to set a variable value on a combo box like I do with text boxes?

Thanks,
Ba66e77

Combo Box Values Not Being Displayed In New MC
okay so i have a combo box which has 4 values and/or selection. The combo box movie works fine, but when the movie is loaded into my main timeline, the first selection (set in AS) shows up, but none of the others.

Can anyone explain. here is the code that sets the combo box and the code that loads the movie


ActionScript Code:
// assigns valuefunction initCombo(){        drop.addItem("Funky 80'ss Music", 0);    drop.addItem("Your Body is a wonderland", 1);    drop.addItem("FireStarter", 2);    drop.addItem("Stop the Music", "Stop");    trace("stop it stop it");    drop.setChangeHandler("comboHandler");        clearInterval(doable);}// loads moviefunction getMP3Playa() {    createEmptyMovieClip("playaContent", 49);    loadMovie("smallMC_music.swf", "playaContent");        playaContent._x = 98;    playaContent._y = 750;}

Combo Box Component--loading In The Values?
I have several Combo Boxes to make for a search engine and a registration form, and each has a lot, in 2 cases 96, possibilities, and the possibilities are going to be constantly changing.

Can I load the values in to an MX Combo Box Component from say a text file or some other back-end service?

Worst case scenario, I've already entered the initial values into my Access database, so is there a way I can copy and paste that info somehow into the Combo Box? Can't seem to for trying...

They're all single values, like building addresses, and type of business, i.e., single, simple fields...just lotsa 'dem

A very simple tutorial on this might help me out a lot...

Thanks as always.

Shawn

Assigning Array Values To A Combo Box
hi guys wondered f anyone could help me with this, I have an array which I want the values within to appear in a combo box called compare 1. Not sure how to do this the code is below the last line shows how i tried to do it but to no joy. Much apprechiated if any1 could help



function parseXML(createXML) {
parseArray = new Array();
for (i = 0; i < createXML.childNodes.length; i++)
{

//creates a object with the same name as the node in the xml
this[createXML.childNodes[i].nodeName] = new Object();
//next three lines pass values in XML node attributes to variables in the object
this[createXML.childNodes[i].nodeName].name = createXML.childNodes[i].nodeName;
this[createXML.childNodes[i].nodeName].isa = createXML.childNodes[i].attributes.isa;
//this next line is interesting in that it uses split, which it self creates an array, so it seem you end up passing an array to a variable in the object. However, you then pass the object later to an array.
this[createXML.childNodes[i].nodeName].has = createXML.childNodes[i].attributes.has.split(",");
//appends the newly created object to the array you created earlier, so you end up with an array of objects
parseArray.push(this[createXML.childNodes[i].nodeName]);
} // end of for
//this would set the root level variable creaturesArray to the array of object created in the previous function
_global.entityArray = parseArray;
} // End of the function



//takes the value of creature name
function getParents(entityName)
{
//set variable to a blank value
currentISA = "";
//creates new array
parentArray = new Array();
//adds value of creature name to array.
parentArray.push(entityName);
for (entityIndex = getIndex(entityName); currentISA != null; entityIndex = getIndex(currentISA))
{
//takes value from object and pusshes it to the new array
currentISA = _global.entityArray[entityIndex].isa;
parentArray.push(currentISA);
} // end of for
//removes the last element from the array and returns the value
parentArray.pop();
//returns the array
return (parentArray);
compare1.dataprovider = parentArray:
} // End of the function


sorry about the indentation

Thanks

Make Sure Combo Box Values Are Unique
I have four combo boxes on a form, each with values from 1 to 4. How do I make sure, when the form is submitted, that the user has selected a unique value for each combo box (i.e. none of the values match)?

Thanks.

Maintaining Values In Combo Boxes
Is there a way to maintain the selected value in the combo box over multiple frames? e.g. a user selected a option then moved to next frame but then wanted to move back to check their selection?

MX Combo Box Populated With Text File Values
What are the basic ActionScripting/UI Parameters required to simply populate a Combo Box in a movie with values from a text file?

Nothing fancy, just the basics...i.e., Choice 1, Choice 2, Choice 3, as loaded from the text file?

shawn

Problem Loading External Swf's Via Combo Box Values
I'm trying to load some external swf's based upon a combo box selection and it's not working.

Here is what I have setup so far:

2 layers. 1 frame.

1st layer is for my main script:
function loadMovieClip () {
if (_root.color_combo.getValue() == Purple) {
_root.blank.loadMovie("earrings/earring_00001.swf", 1);
} else if (_root.color_combo.getValue() == Green) {
_root.blank.loadMovie("earrings/earring_00002.swf", 1);
}
}

2nd layer has two things:
1. blank movieclip with the instance name of "blank"
2. combo box with the following values: (Blue,Yellow,Green,Red,Purple) and instance name of "color_combo". Also the combo box has the following script:

on (release) {
_root.color_combo.setChangeHandler("loadMovieClip" );
}

This project is one directory up from the directory where the files I am trying to load are located. (../ProjectDirectory/earrings/..) So I think I have that setup right.

When I test the movie there are no errors but selecting either "Green" or "Purple" has no effect. Nothing happens. I am wondering why.....

Any help would be appreciated.
Thanks.

Cant Pass Combo Box Values In Flash Remoting?
Hi guys,

I am using flash with cfmx........

I am populating four combo boxes in Flash from Cold Fusion queries.....

Now I need to use the first value from each of those combo boxes to populate another text field.

the problem is that when I try passing the values from the combo boxes it does not work.....eg:

If I call the function like this and just pass actual values it works fine:

getService.Calculate({var1:1,var2:1,var3:1,var4:1});

However, if I pass the combo box values, it never works.....(The combo boxes all populate correctly, and i can output their values elsewhere in the flash app....I just cant seem to pass them)

getService.Calculate({var1:var1_cb.getSelectedItem().data,var2:var2_cb.getSele ctedItem().data,var3:var3_cb.getSelectedItem().data});

any help is greatly appreciated.

Pull Down Menu To Populate Values
I'm stumped, i need to create a dropdown or pulldown box that populates values in a dynamic/input text field.. make sense?? for example...

Dropdown box has the Labels/values of "Fruit", "Salad", "Sweets"

Ok, if the user selects "fruit" then a dynamic text box underneith says "apple" and another box may say "bannana".

If the user selects "salad" then a dynamic text box underneith may say "lettuce" and the other may say "cucumber"

Does that make sense... I know this is possible in Excel - but i dont know where to start with Flash

Thanks so much n advance!!

Grab Values Out Of Swf & Populate Into Textfield On Php
My project is a create your own application... Basically you have a bunch of choices to select from, like a hamburger, hot dog, etc... and then you can customize your toppings and stuff like that. That works fine, but I need to get those values into a separate php page that has a form for registration so we can store those values in our database. Doing the form in Flash is not an option.

How do I grab the values coming out of my swf and place them into the textfields on the php page?

How Do I Populate Scrolling Text Field With Multidimension Array Values?
In my Flash quiz, I have a detailed results page to which I want to post all the questions, answers, and whether the user answered correctly or incorrectly. All this information is stored in a multidimensional array and its successfully showing the results via the trace method.

My question is, what is the syntax for populating a dynamic text field with these results? Do I just write out one long line of AS with the newline command to separate the data? How would I go about applying bold to certain parts of the stored data that I will be showing?

Here is current code for my detailed results page:


function showResults(){
trace("Now showing results");
for(var i:Number = 0; i < NumberOfChallenges; i++){ //This calls the length of the original array (not the spliced copy)
//trace(NumberOfChallenges);
//Make sure that the correct answers are marked in the aShuffledChallenges array
trace("POPULATING TEXT FIELD WITH A RESULT NOW.");
trace("QUESTION:" + aShuffledChallenges[i][0] + newline); //write out the question
trace("ANSWER:" + aShuffledChallenges[i][3] + newline); //write out the answer
trace("Your answer to this question was:" + aShuffledChallenges[i][2] + newline);
}
}

showResults();

Combo Box...Please Help
Hello...

I have a combo box(vtgCombo) with values that, when selected, should jump to a certain scene. I have the following code written on the first frame of the timeline which the component lies on:

indexData = new Array();
indexData[0] = {label:"Select...", data:""};
indexData[1] = {label:"The Resort", data:"Resort"};
indexData[2] = {label:"Guest Rooms", data:"Intro"};
indexData[3] = {label:"Leisure", data:"Leisure"};
indexData[4] = {label:"Restaurants", data:"Restaurants"};
indexData[5] = {label:"Meetings", data:"Meetings"};
indexData[6] = {label:"Gallery Index", data:"Index"};

// Combo box attributes
vtgCombo.setDataProvider(indexData);
vtgCombo.setChangeHandler("sceneSelector");

// Playing the scene selected
function sceneSelector(){
gotoAndPlay(vtgCombo.getSelectedItem().data);


Would this conflict in any way what parameters are set on the box? I just can't get this to work. Any help is much appreciated.

Thanks!

COMBO BOX
Can anyone point me in the right direction on how to use a combo box to load MC's or to "goto" a particualr scene within a swf? or even call an outside swf to load? I would like to have the combo box as a "quick link" feature, but keep getting stumped with the action scripting...

http://www.redjetdesign.com/highwoods/

that's where is file is that I am working on, nevermind the homepage (I only use it really to test files) I haven't even considered building my own, I work for a commerical real estate brokereage that bombards me with flash projects like this one at the URL above, 2 - 3x or more a week. Any input. Thanks!

Please Help With Combo Box
I am try to use a combo box for the first time and do not know what to do. Lets keep it simple I have a combo box with labels (1,2,3,4,5) I want when the number is selected to display that number in a text box with variable (number).
The combo box instance name is (combo1). Could someone show me what what the action script function would be also show me what to put in the change handler(I think it would just be the function call but I am unsure). Thanks in advance. This is crucial for what I want to do so I hope someone can help.

Combo Box
Hi all,

I want to use the combo box component, the thing is I want it to jump to a label withing the same timeline, is this possible or do I have to go to a http//:www..etc

Many Thanks!

XML Fed Combo Box
Just been running through the macromedia xml gallery tutorial, now want to have a combo box to select each gallery via xml. How do i set the combo box to retrieve and display xml values?

I'm new to xml in flash - go easy on me!

Thanks

Combo Box
Hey there all you flashmasters outthere,

I got a problem with a combo box. It's located in an external *.swf which is being loaded into a dynamically created holder MC [loader.loadMovie("MC_containing_Combo_box.swf")]

It's working pretty fine. There's a big problem though, since the combo box loses the labels. You can still click it (i.e. the entries) and it's still working but you cant read the labels anymore !?!?!

Has anybody had this problem too? Does anybody know how to "cure" this ?!!?

Any help will be appreciated

Natsurfer

Combo Box Help
Dear all,

Could someone please explain to me in simple terms what code i put in the main timeline to make the main movie jump to a different frame when someone selects a choice in the combo box components list.

I have set up the combo box with all the choices but i dont know how to set up the change handler.

I want it so that when someone clicks on the first choice, the movie jumps to frame 12. when they select the second choice it jumps to frame 20, and when they select the default choice nothing happens.

Thank you very much.

Combo Box Help
Can someone please help me with this pain in the arse mx component problem.

I have placed a combo box component on the stage and filled in the labels.

There are 3 labels, the first says please select a language, the second choice says german language, and the third choice says english language.

Everything is ok so far, but what i need is the actionscript that i put in the main timeline to - do nothing if the user clicks on SELECT A LANGUAGE, send the main timeline to frame 10 if the person clicks on GERMAN LANGUAGE, or sends them to frame 20 if they click on ENGLISH LANGUAGE.

I have looked everywhere for the bloody answer and all i keep finding is useless examples using the trace command.

PLEASE PLEASE try to help me.

Thank you very much.

Combo Box
hi all

ive got a bit of a problem i'm trying to imbed the font for a flash mx combo box dose anyone know how to do it??

More Combo Box ?'s
I have a combo box that is getting its information from an array, is what i need to do is have combo box 1 populate another combo box with an array based on what was clicked on.

Hopefully this makes sense.

Thanks in advance for the help

MX Combo Box
How to create combo box like macromedia.com home page. Example: go to macromedia.com, please click any one of the shortcuts in the top flash part. there u can see the combo box...Can anyone help me?

Combo Box
I want to create a combo box with a list of approx. 10 labels. I want to be able to select a label from the combo box which opens up the relevant url for my label.
e.g. - I choose "dogs" from the combo box
- "dogs.html" opens.

I can't work out how to add the url elements, hopefully someone out there can help.


Thanks,
Darren

Combo Box
Hi all,

Is there any chance to select an item from a combo box via a button?
Sounds odd I guess. What I have is some sort of a quiz where people have to chosse answers from combo boxes.
Now I want to include a hint button to reveal the answer. That's why I need to kinda select the combo box item with a button.

Any ideas?
Natsurfer

Combo Box's
How do I assign a variable to a combo box so that when the user selects and option from the combo box, it can be sent to a cgi script.

I can set a input box with a variable, but how do i do the same thing for a combo box?

Combo Box
I am using the combo box component. When a user clicks on one of the drop down buttons I want that choice to come up later in a dynamic text box. This seems like it would be easy, but I can't find an example of it. Any ideas?

gamist

Combo Box
I am trying to use a combobox as a drop-down menu I have 5 basic subjects. What I am trying to do is simply advance t a frame in the movie related to the choice made in the box....Not only can I not get this to work, when I go to test the movie no words apear in the box until I click the drop-down arrow....... Please help....

Thank you
Anthony

XML Combo Box
I'm trying to build a dropdown menu which pulls the information from an XML Document.

What I need is for the Drop Down Menus to say it's "name", but display it's "value" as a variable on another frame.

ie: dropdown consists of 3 choices:

Name: Value:
Red red.com
Blue blue.com
Green green.com

If choice Blue is chosen, on the next frame, I would need it say blue.com


Any ideas or suggestions on how to write up the xml and fla code would be very helpful.

Thanks

Combo Box/asp
I have form that uses a combobox/dropdown and i am trying to submit the value of the combobox to and asp page ; but low and behold it is not working.

code on button..

on (release) {
models.getValue();
getURL("form_test.asp", "_blank", "POST");
}

code for ASP Page

myBody = myBody & "Info Requested: "& request.form("models") & vbcrlf

any thoughts as to what i am doing wrong??

much appreciated

Best Way To Use Combo Box
Hello,

NEVER used a Combo Box before but considering using one for choosing to display one member out of a list of members as part of a truck owners site.

I have not formatted the individual member sections because what I can or cannot do with the combo box will determine how I design the sections.

My question is can you use a Combo Box to go to specific frames in the timeline, and or load movie clips and swf files.

Depending on what the responses are, I may have some more questions but this is a good place to start.

Thanks!

Help I Almost Got It (combo Box)
I am new at flash but have been a developer for about 10 years now. I have went through all of the tutorials and everything else. I have been working on getting information from an external file into a flash movie that will update a dynamic drop down box. I will try my best to explain what I have going on below.

test.txt file
contents: intCount=8&txtVar1=10&txtVar2=20&txtVar3=30&txtVar 4=40&txtVar5=50&txtVar6=60&txtVar7=70&txtVar8=80&d one=okay&

If flash I have LoadVariables layer which has a movie clip on it.
The movie clip is setup like this:
frame 1:
_parent.stop();
done = "";
loadVariables("test.txt", this, "POST");

frame 2:
if (done == "okay") {
// all variables are loaded
gotoAndStop(4);
}

frame 3:
// loop back to text if all variables are loaded yet
gotoAndPlay(2);

frame 4:
trace("==================================");
_root.section = section;
intCounter = Number(intCount);
intCounter = intCounter+1;
trace(intCounter);
for (i=1; i<intCounter; i++) {
array[i] = this["txtVar"+i];
trace(array[i]);
}
_root.Combo1Array = array;
trace("==================================");

Now on the main movie I have another layer called LoadCombo and my script here is:
trace(_root.Combo1Array[1]);

and that is it.

When I test the movie the tracing on the movie clip shows my data from the external file and I can access it in the move clip. What i read was that "_root" would put it into the main movie that is the reason why I am saying in the last frame "_root.Combo1Array = array". However the "trace(_root.Combo1Array[1])" return undefined and I am at a lot at what to do now.

I was thinking I would be able to just do a databind on Combo1 and add the Combo1Array and the drop down would be filled in.

I forgot to mention that on the layer Load Combo I have a drop down box called Combo1.

Please help!!!!!!

thanks

Combo Box & PHP
I need help with a combo box...not sure how to actually get varibles from it. I want to do a simple mail form, using PHP and Flash, however, instead of the recipient being hardcoded....I would like the end user to select a recipient from a drop down list in a combo box
I'm doing this for a company, they want end users to be able to email different departments.

How do I pass variables from a drop down box in Flash to PHP? for a typical Mail Form?

Any help is greatly appreciated!

Thanks!

How To Add A Url To Combo Box
How do you add a url to a combo box is it

on [release]
geturl...........................?

How Do I Do This Combo?
I would like to show a series of names of people, and when a user moves their mouse over a person, I would like more information about that person to appear to the right or somewhere beside the name.

I will be updating this flash movie constantly, so I would think it would be easier to load all the text data from an external .txt file. Please help me and/or include a .fla file for reference. Thanks.

Combo Box
I'm having trouble figuring out how to put script in an combo box. What I want to do is have the user be able to select what song they want playing in the background. I know how to make the labels but is there a way to write code for each label individualy so that I can for say have them select on mozart and it will play mozart.

Combo Box
hello,
i have a small question regarding combo box! By default, a combo box's selected element in the unfolding list is highlighted by a deep grey. i've just modified the attributs of a combo box so that the default grey is lighter and more related to the colors of my site. The problem is that not only does the default settings highlight the selected choice in a deep grey, it also puts the text in white ( thus making it unreadable on a lighter grey as i've selected.

Where can i tell the combo box to not put the text in white when "over" element. I've tried editing the combo but the text inside the combo is a dynamic text set to black which exposes the variable in black. but probably theirs a script somewhere telling "on over choice highlight in grey and change text color to white"

thanks in advance
priff

Combo Box
Please tell me is there a way to force Combo Box to display list of options above it, instead of below it how its usually shown.

Thanks.

Combo Box
I have a form that my customers can edit and update. The form contains a combo box with about 5 options. The form posts to an asp.net page. I have everything working as far as updating the database from the form and repopulating the input boxes with their previous settings. The problem is how to repopulate the combo box with the choice they had previously made. Getting the variable value into the form is no problem I just need a small sample of code that tells the combo box to show their previous value not the default value. Thanks in advance.

Combo Box, And URL
Funny enough I never used the combo box.
Well, today I have to
When I click the drop down box and click a selection I want it to goto a web site. How can I accomplish this with the combo box?

I put info in the data field but it didnt work. How am I missing this? Makes me feel like a NEWB again.

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