DEVPPL
http://www.devppl.com/forum/

XML Combobox
http://www.devppl.com/forum/viewtopic.php?f=45&t=13705
Page 1 of 1

Author:  rachjm [ Thu Jun 18, 2009 5:53 am ]
Post subject:  XML Combobox

I'm trying to use AS3 to populate a combobox using external XML.
I know it can be done, but my web searches turn up mostly questions, rather than answers.

My XML (companies.xml) looks like this:

Code:
<?xml version="1.0"?>

<companies>

   <company name="Company1"></company>
   <company name="Company2"></company>
   <company name="Company3"></company>
   
</companies>

It really is that simple, but I need to do it externally because it will be regularly updated by someone who doesn't have flash installed.

All I have for ActionScript so far is:

Code:
import fl.controls.ComboBox;
import fl.data.DataProvider;

var combo_IMs:ComboBox = new ComboBox();
combo_IMs.setSize(150, 22);
combo_IMs.move(20, 20);
addChild(combo_IMs);

I have been trying all day with no success - what you see above is the only part that works. It can't be that hard! Please help me! :cry:

Failing that, could someone just point me in the direction of a good tutorial with sample files?

Page 1 of 1 All times are UTC + 1 hour
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/