Hi all
Can anybody help me on how make such a page, I have a members page with 17 Dynamic text box’s for the members infomation to be shown in, i also have a list component which will display the members name’s.
When you click on a members name it will load the members infomation into the appropirate dynamic text box’s.
here is the page [url=http://www.theoaps.co.uk/Support%20Files/Members.swf[HERE]
var mList:XML = new XML();
mList.ignoreWhite = true;
var members:Array = new Array
mList.onLoad = function(){
members = this.firstChild.childNodes;
for (i=0;i<members.length;i++){
ML.addItem(members*.attributes.member,members*.attributes.CMPN);
//mList.onLoad = function(){
//var members:Array = this.firstChild.childNodes;
//for(i=0;i<members.length;i++){
//ML.addItem(members*.attributes.member,members*.attributes.CMPN);
}
}
var MemberListLObject = new Object();
MemberList.change = function(){
CMPN.text = members[CL.selectedIndex].attributes.CMPN;
}
mList.load("members2.xml");
Any ideas guys as this is driving me to drink :hangover:
Cheers
Dunkyb123