> Please refer to this post for more information.
>
> Flex2B3 :: Container subclass :: viewMetrics - borderMetrics
Okay, this one:
override public function get viewMetrics():EdgeMetrics
{
var v:EdgeMetrics = super.viewMetrics;
var b:EdgeMetrics = borderMetrics;
trace("viewMetrics", v.left)
trace("borderMetrics", b.left)
if (dragEnabled) {
if (direction == "horizontal") {
v.left = draggerButton.width;
} else {
v.top = draggerButton.height;
}
}
return v;
}
> There is something that is fishy. I am NOT changing border metrics but, when I go to qeury it after viewMetrics has run, it holds the actual viewMetrics values not the simple values of 1 or 2 for solid, outset etc...
Not sure why that's happening (don't have access to source at the
moment), but could you try making a *copy* of viewMetrics instead of
modifying the value returned by super.viewMetrics?
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
| Web site design development | Computer software development | Software design and development |
| Macromedia flex | Software development best practice |
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

