import xp.data.XMLDataSource; import xp.controls.Form; import xp.system.Brush; import xp.system.Font; import xp.system.Style; class FrmMain extends Form{ var lb var title private function containerOnLoad(){ super.containerOnLoad(); title.font=Font.createFont({font:"Tahoma",size:24,color:0x666666,bold:true}); title.text = "Joe\'s Wish List Currently Contains:"; lb.rowHeight=120; lb.rowAutosize=AUTOSIZE_VERTICAL; lb.virtualMode=false; lb.selectionMode="none"; lb.itemStyle=new Style({clazz:"DetailsPanel"}); //set the datasource and load the data lb.itemsSource = new XMLDataSource("http://xml.amazon.com/onca/xml3?t=joemarinicom-20&dev-t=XXXXXXXXXXXXX&WishlistSearch=XXXXXXXXXXXX&type=lite&f=xml","ProductInfo/Details"); } }