Hello,
I don't really know where to post this, so I am posting it here. I am using Apache Flex 4.11.0 and Viewer 3.6, and when I set my widget's "resizable" property to false, it comes up with a null reference on the following line (resizeButton is null):
In context of WidgetTemplate.as:
Just thought I would put it out there, and see if it was just a problem in my codebase or not (although I didn't touch WidgetTemplate).
I don't really know where to post this, so I am posting it here. I am using Apache Flex 4.11.0 and Viewer 3.6, and when I set my widget's "resizable" property to false, it comes up with a null reference on the following line (resizeButton is null):
Code:
resizeButton.visible = _resizable;
Code:
public function set resizable(value:Boolean):void
{
_resizable = value;
resizeButton.visible = _resizable;
}