I am using adobe dashboard application (pod based)
It is working fine on sdk 3.3
But when I changes sdk 4.1 from 3.3 it starts giving compilation
error in
RollOverBoxItemRenderer.as
for the method apply() [which is in the mx.graphics.SolidColorStroke
package]
In sdk 3.3 -
public function apply(graphics:Graphics):void
{
graphics.lineStyle(weight, color, alpha, pixelHinting,
scaleMode, caps, joints, miterLimit);
}
in sdk 4.1
/* even it is not using second and third argument. so I am passing
null while calling which must not effect on any functionality*/
public function apply(graphics:Graphics, targetBounds:Rectangle,
targetOrigin:Point):void
{
graphics.lineStyle(weight, color, alpha, pixelHinting,
scaleMode, caps, joints, miterLimit);
}
I am calling this apply method from flex
in sdk 3.3
apply(g) // g is a object of graphics class
in sdk 4.1
apply(g,null,null) // g is a object of graphics class
functionality of dashboard application is not fine even they are not
using the second and third arguments in the function.
can someone have any reason or a soluction ?
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.