Re: [Flashcoders] Printing table receipt with Flex

2009-02-28 Thread Omar Fouad
To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, February 27, 2009 5:54 AM Subject: Re: [Flashcoders] Printing table receipt with Flex Thanks everybody for the replies... I've been thinking about rendering an HTML table into a TextField inside a sprite... But as far as I

Re: [Flashcoders] Printing table receipt with Flex

2009-02-27 Thread Glen Pike
Skin a data grid? Omar Fouad wrote: Thanks everybody for the replies... I've been thinking about rendering an HTML table into a TextField inside a sprite... But as far as I know, TextFields in flash does not support HTML tables. What else is recomended? On Thu, Feb 26, 2009 at 7:52 PM,

RE: [Flashcoders] Printing table receipt with Flex

2009-02-27 Thread Cor
Coders List Subject: Re: [Flashcoders] Printing table receipt with Flex Skin a data grid? Omar Fouad wrote: Thanks everybody for the replies... I've been thinking about rendering an HTML table into a TextField inside a sprite... But as far as I know, TextFields in flash does not support HTML

Re: [Flashcoders] Printing table receipt with Flex

2009-02-27 Thread Muzak
Dump them in a datagrid, print the datagrid.. - Original Message - From: Omar Fouad omarfouad@gmail.com To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, February 27, 2009 5:54 AM Subject: Re: [Flashcoders] Printing table receipt with Flex Thanks everybody

Re: [Flashcoders] Printing table receipt with Flex

2009-02-27 Thread Anthony Pace
List flashcoders@chattyfig.figleaf.com Sent: Friday, February 27, 2009 5:54 AM Subject: Re: [Flashcoders] Printing table receipt with Flex Thanks everybody for the replies... I've been thinking about rendering an HTML table into a TextField inside a sprite... But as far as I know, TextFields

[Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Omar Fouad
Hi all,I am working on a POS application in AIR and SQLite, and I am stuck with this little problem. I need to send to a printer, some data from an array and create a table.. in other words, I need to print a receipt. Is there any way to create dinamically a table and fill it with strings and

Re: [Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Eric E. Dolecki
Could you use some temporary HTML to do that and write the HTML internally? On Thu, Feb 26, 2009 at 8:50 AM, Omar Fouad omarfouad@gmail.com wrote: Hi all,I am working on a POS application in AIR and SQLite, and I am stuck with this little problem. I need to send to a printer, some data

Re: [Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Glen Pike
Omar Fouad wrote: Hi all,I am working on a POS application in AIR and SQLite, and I am stuck with this little problem. I need to send to a printer, some data from an array and create a table.. in other words, I need to print a receipt. Is there any way to create dinamically a table and fill it

Re: [Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Anthony Pace
You beat me to it. I was going to say that he could lat it out someway like outputing it all as html inside an mc like eric said, convert the mc to a bitmap like you suggested, and then use printJob(); Here is a decent tutorial...

Re: [Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Omar Fouad
Thanks everybody for the replies... I've been thinking about rendering an HTML table into a TextField inside a sprite... But as far as I know, TextFields in flash does not support HTML tables. What else is recomended? On Thu, Feb 26, 2009 at 7:52 PM, Anthony Pace anthony.p...@utoronto.cawrote: