|
Sooooo close, I got it all to compile but
the following. I can’t figure out how to do these functions on “target”
because it’s a IFlexDisplayObject, and all those functions are from the
graphics class and take an “Object”. How can I use these functions
on the “target” if it’s not an Object? Extend it somehow or
create an object?
target.beginFill( fills[count] );
target.moveTo(rc.left,rc.top);
target.lineTo(rc.right,rc.top);
target.lineTo(rc.right,rc.bottom);
target.lineTo(rc.left,rc.bottom);
target.lineTo(rc.left,rc.top);
target.endFill();
count++; } _________________________________________ Jonathan Miranda Flexible Master of the Web "In the
game of chess, it's important to never let your opponent see your pieces." From: I'll leave making it compile as an
exercise for the reader, but something like: class CycleRenderer implements
BoxRenderer private var count:Number; function CycleRenderer() count = 0; function draw(target:UIObject, rc :
Rect) target.moveTo(rc.left,rc.top); target.endFill(); count++; function endDraw(target:UIObject) count = 0; Ely.
From: Hmm, after messing around with this I can’t
get it to cycle any type of array because it seems to only accept one
color…and I can’t figure out how the renderer can reference which
item it’s actually on. Best I’ve got so far is just changing one
color. Fill (heh, bad joke) up to mocking an example? _________________________________________ Jonathan Miranda Flexible Master of the Web "In the
game of chess, it's important to never let your opponent see your pieces." From: You could write a custom renderer for the
chart that ignores the colors passed in and just cycles through a pre-defined
array of colors. Ely. From: Also, something else I’m having trouble finding
documentation on…. _________________________________________ Jonathan Miranda Flexible Master of
the Web "In the game of
chess, it's important to never let your opponent see your pieces."
|
- RE: [flexcoders] Column Chart coloring Jonathan Miranda
- RE: [flexcoders] Column Chart coloring Ely Greenfield
- RE: [flexcoders] Column Chart coloring Jonathan Miranda
- RE: [flexcoders] Column Chart coloring Ely Greenfield
- RE: [flexcoders] Column Chart coloring Jonathan Miranda
- [flexcoders] Re: Column Chart coloring Doug Lowder

