HOW TO CONVERT PANEL OR TITLEWINDOW TITLE TO A LINK
hello there,
i want have linkbutton instead of label on title of titlewindow or panel. how can convert title clickable link, ideas?
thanks
hi abaki,
in title window or panel component write below function...
override protected function createchildren():void
{
super.createchildren();
var lnkbutton:linkbutton = new linkbutton();
lnkbutton.label = "your link button";
lnkbutton.width = 100;
lnkbutton.height = 25;
this.rawchildren.addchild(lnkbutton);
}
thanks,
bhasker
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment