I have been fighting with flex for a good number of hours and still cannot seem to figure it out.
I wrote some tree visualization in an as3 class and imported into my flex main.mxml file instantiating a new visualization. The thing is I am incapable of changing the size of this visualization instance. It does not respond to anything except for the scaling. I can 'trick' my display to show a scaled down visualization with large objects, but I feel as though this is not my best course of action (might have to be if I can't figure anything out). I have already attempted to mask the object, but to no avail, I get scroll bars and still no response to size modifications.
When I attempt to change the visualization size within the class, the visualization disappears.
The biggest irony is that the visualization bounds are enforced.
I am new to flex/flare and would appreciate any advice.
Here is a snippet of my code from the mxml file:
public var TreeDisplay:Sprite = new VizDataArrangements.TreeDisplay();
vis.visualization.addChild(TreeDisplay);
<mx:Canvas id="visContainer" backgroundColor="#000000">
<mx:Canvas width="100%" height="100%" backgroundColor="#ffffff" id="canMask1"/>
<flex:FlareVis id="vis" x="0" y="0" backgroundAlpha="1" mask="{canMask1}" width="300" height="300">
</flex:FlareVis>
</mx:Canvas>
Thanks,
Dan