Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
bossche001 #1
flash - php - combobox
Hi
I want to fill my combobox component with data that I get from a php script.
This is how I get data from php
&city1=ABBENBROEK&&city2=AFFERDEN&&city3=ALBERGEN& &city4=ALKMAAR&.......
How can I populate my combox?
I want to use loadvars.....
Tx
Tom
bossche001 Guest
-
ComboBox bound to a ComboBox: doesn't work until .changeevent
Hi, i have two ComboBoxes getting DataProvider from an XMl doc. The XML nodes look like this: <activity label="aerobics"> <level label="low... -
ComboBox Selected Flash Form
Greetings~ I wasn't sure where to post this question, so let me know if it needs to go elsewhere. I have a flash form that I am using remoting... -
Loading a Flash ComboBox from a CF WebService
I have a table in my database that stores Institution Types. The records are basically made up of two columns; a unique ID and a Name, which I want... -
flash 2004 pro combobox (navigate to through forms)
I am designing a flash 2004 pro form application. the structure is built as follow: _Level0 nested => Base nested => resume (form where a... -
Combobox Question (Flash MX)
what's your AS look like... are you targeting the correct frame name? jaybie "news.freeler.nl" <jtdes@freeler.nl> wrote in message... -
bossche001 #2
Re: flash - php - combobox
Ok, already found it....
For those who are also searhing for ans answer...
var city_lv:LoadVars;
city_lv = new LoadVars();
city_lv.onLoad = function(success:Boolean) {
if (success) {
trace("succes");
iList = new Array();
for (i=1; i<285; i++) {
myItem = new Object();
myItem.data = i;
myItem.label = this["city"+i];
iList.push(myItem);
trace(myItem.label);
}
stad_cb.setDataProvider(iList);
} else {
trace("NOsucces");
}
};
bossche001 Guest



Reply With Quote

