5 Most Recent (5)
    Text Editor (1)
    File System (2)
    List Box (5)
    Color Palette (1)
    Combo Box (8)
    Custom (3)
    Scroll Bar (1)
    Radio (1)
    Tree (1)
    Bar Chart (2)
    Ticker (2)
    Pie Chart (1)
Publisher:  Macromedia Component Set 1
Implemented By:  flash-db http://www.flash-db.com/Components/
Combo Box with external Link/URL selection.
Use's a PHP Script that generates XML data that is read into and parsed by Flash to populate the Combo Box Component. In this case the XML data is a set of Link Names and URL's, you can use this to provide a quick navigation interface for your site.
<?php
// This array would normally be coming from a database
// We just simplified it by putting it in an Array for now.
$NameArr = array("Flash-db.com""FlashKit""PHP.net","MySQL","Flash Magazine""CNN");
$DataArr = array("http://www.flash-db.com""http://www.flashkit.com""http://www.php.net""http://www.mysql.com","http://www.flashmagazine.com""http://www.cnn.com");

$numReturn count($NameArr);
$i 0;

// Prints out the necessary XML
print "<dataSet>";
    while (
$i $numReturn) {
        print 
"<data>";
        print 
"<name>".$NameArr[$i]."</name>";
        print 
"<dataRow>".$DataArr[$i]."</dataRow>";
        print 
"</data>";
        
$i++;
    }
print 
"</dataSet>";
?>
   download component source files (zip)


Area Map: Home | About | Extend | Links | Commercial | Submit Component    
< / form > < !-- Google analitycs -->