如何使用列表组件中的选定数据填充动态文本框?

时间:2013-04-20 18:07:51

标签: flash actionscript-2

目前我有一个列表组件,它自动填充来自mySQL数据库的数据。代码如下所示。

是否可以从列表中选择一个变量并将其存储为单独的变量?这样我就可以在需要时将它显示给用户。

var theXML:XML = new XML();
theXML.ignoreWhite = true;

theXML.onLoad = function() {
    var nodes = this.firstChild.childNodes;
    for(i=0;i<nodes.length;i++) {
        theList.addItem(nodes[i].firstChild.nodeValue,i);
    }
}

theXML.load("http://localhost/fyptest/products.php");

由于

1 个答案:

答案 0 :(得分:1)

您可以使用getItemAt(n)访问列表数据,其中n是所需行的索引。 您可以获得更多详细信息和示例here

例如,在您的情况下,var myLabel = theList.getItemAt(0)将返回第一个项目值。