Re: [flexcoders] BUMP: Re: Help with adding datagrid to non-visible Sprite

2006-08-30 Thread Tom Chiverton
On Tuesday 29 August 2006 19:54, wayneposner wrote: Since I'm using an AS class extending Sprite, there is no option for the callLater() method. I don't understand. You draw your stuff, making the place you are drawing it to visible. Then you callLater another method to do the printing and

Re: [flexcoders] BUMP: Re: Help with adding datagrid to non-visible Sprite

2006-08-29 Thread Tom Chiverton
On Tuesday 29 August 2006 00:56, wayneposner wrote: my datagrid to appear as part of my printed output when using the PrintJob class with a non-visible sprite? As I said, you can't. You must make the sprite visible, and maybe do the actual printing via callLater. Did you try that ? -- Tom

[flexcoders] BUMP: Re: Help with adding datagrid to non-visible Sprite

2006-08-29 Thread wayneposner
Since I'm using an AS class extending Sprite, there is no option for the callLater() method. Is there any component that I can use to render printed text output that does not need to be displayed Additionally, why does it work that I can print images using this class but not text?

[flexcoders] BUMP: Re: Help with adding datagrid to non-visible Sprite

2006-08-28 Thread wayneposner
I really need some detailed help here. I tried adding my datagrid to a UIComponent and then adding the UIComponent to a Sprite. This causes a blue rectangle to appear when I try to print. While this is better than a blank page, it's still quite not what I need. Can someone please tell me