import fl.data.DataProvider;
import fl.controls.List;
var urlLoc:String = new String();
var dp:DataProvider = new DataProvider();
for (var i:uint = 1; i<=5; i++){
    dp.addItem( { label:"Channel" +i ,ben : "musicList"+i+".xml"}  );
}

var list:List = new List();
list.dataProvider = dp;
addChild(list);
list.setSize(140,60);
list.addEventListener(MouseEvent.CLICK, action);
function action(e:MouseEvent):void{
    urlLoc = e.target.data.ben;
    trace(urlLoc);
}

Its working fine and when I am click the down and up button its brings me an error.

"ReferenceError: Error #1069: Property data not found on fl.controls.BaseButton and there is no default value. at Untitled_fla::MainTimeline/action() "

How could I solve this problem?

link|improve this question

I used EVENT.CHANGE instead of MouseEvent.CLICK. Its working well now. Thanks for your answers. – Antony Jul 19 '11 at 13:24
feedback

3 Answers

up vote 1 down vote accepted

U made a problem with listener Object. Change the event Handler Event.CHANGE instead of "MouseEvent.CLICK".

list.addEventListener(Event.CHANGE, action);
link|improve this answer
feedback

I don't think List has a property data. I guess you want to get the selected item. please try:

urlLoc = e.target.selectedItem.ben;
link|improve this answer
no. i didn't get............. – Antony Jul 19 '11 at 10:27
I used EVENT.CHANGE instead of MouseEvent.CLICK. Its working well now. Thanks for your answers. – Antony Jul 19 '11 at 13:25
feedback

It seems like the button event is bubbling though the List. Do you want the event listener to fire on the up and down buttons or just on the list itself?

You could try:

function action(e:MouseEvent):void{
    if(evt.target is List) {
        urlLoc = e.target.data.ben;
        trace(urlLoc);
    }
}
link|improve this answer
I didn't meet the error. but I can't able to trace the list values. – Antony Jul 19 '11 at 10:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.