views:

27

answers:

1

Hi guys... I am trying to change my radiobutton size and label size in pure as3...

searchRB = new RadioButton();
    searchRB.name = "search";
    searchRB.group = rbg;
    searchRB.label="Search";
    searchRB.labelPlacement=ButtonLabelPlacement.BOTTOM;
    searchRB.selected = true;
    searchRB.move(0, (searchInput.y + searchInput.height/3) );
    searchRB.se

//Anyone knows how to do it? Thanks...
+1  A: 

IS there any reason why this wouldn't work?

searchRB.width = someNewInteger;
searchRB.height = someNewInteger;
www.Flextras.com
it was not working for soem reason...I decide not to use it....thanks ..
Jerry
Something somewhere in your code could have been changing the height and width again.
www.Flextras.com