I created a PanelScreen from feathers.controls. However, I feel like I can only change the width of its header, How can I change the height of its header?
for example:
var layout:PanelScreen=new PanelScreen;
layout.title = 'mm';
this.addChild(layout);
layout.validate();
layout.width = 100; // it works
layout.height = 100; // it doesn't work