Re: [flexcoders] Re: Printing in Flex...

2010-02-27 Thread Alex Harui
It goes to whatever printer the user chooses in the print dialog that you can’t prevent from coming up. Big changes to printing due in a year or two. On 2/27/10 12:10 PM, Laurence lmacne...@comcast.net wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ,

Re: [flexcoders] Re: Printing PDF417 barcodes in Flex...

2009-05-20 Thread Laurence MacNeill
Thanks! That's perfect! Laurence MacNeill Mableton, Georgia, USA At 05:30 AM 5/20/2009, you wrote: Here you have it http://bumpslide.com/blog/tag/flex/http://bumpslide.com/blog/tag/flex/ --- In mailto:flexcoders%40yahoogroups.comflexcoders@yahoogroups.com, Laurence MacNeill lmacne...@...

Re: [flexcoders] Re: Printing full page w/ no margins

2008-06-23 Thread Josh Millstein
I have tried changing margins, even changed printers and I can still not print anything in the bottom 10th or right 10th of the page. I¹ve changed scale-modes and width, heights, percent donkeys Everything I can think of. If I print an image out that is too big for one page and do scaleMode

Re: [flexcoders] Re: Printing full page w/ no margins

2008-06-16 Thread Josh Millstein
Thanks for the advice, I¹ll check out what my margins are set on in the driver although I still think it would be weird that my margins are 0,0 for top and left, and 100 px 100 px for right and bottom especially because anything else I print off (from another program) has evenly spaced margins.

Re: [flexcoders] Re: Printing very long textarea

2008-01-08 Thread Frederico Garcia
Otto escreveu: --- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: I'm making a PrintTextArea component wich is basically a TextArea with simillar behaviour to PrintDatagrid. Still has some bugs, so I'll repost has soon has I corrected

RE: [flexcoders] RE: Printing without the Print Dailog

2007-10-19 Thread Alex Harui
Not possible afaik From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carl Vorster Sent: Friday, October 19, 2007 8:47 AM To: [EMAIL PROTECTED]; flexcoders@yahoogroups.com Subject: [flexcoders] RE: Printing without the Print Dailog Hi

Re: [flexcoders] Re: printing/zooming bugs

2006-07-27 Thread Samuel Reuben
, just call hideBuiltInItems() on the existing one: function init:void() { contextMenu.hideBuiltInItems(); } From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pan TroglodytesSent: 18 July 2006 00:14To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re

RE: [flexcoders] Re: printing/zooming bugs

2006-07-25 Thread Daniel Tuppeny
TroglodytesSent: 18 July 2006 00:14To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: printing/zooming bugs I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var

RE: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Daniel Tuppeny
pplication), unable to get back. I'm definately using the release player :-( From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Samuel ReubenSent: 19 July 2006 05:52To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: printing/zooming bugs The zoom in, zoom o

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Samuel Reuben
] On Behalf Of Samuel ReubenSent: 19 July 2006 05:52 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: printing/zooming bugs The zoom in, zoom out problem was noticed and was fixed. I'll look into it. As far as I can see it works fine on the release player. -sam On 7/18/06, Daniel Tuppeny

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
Since seeing is believing, have a video:http://rapidshare.de/files/26310210/zoombug.wmv.htmlOn 7/19/06, Peter Blazejewicz [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com , Samuel Reuben [EMAIL PROTECTED] wrote: If you go to

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Uday M. Shankar
I too have noticed this... but, i simply assumed that someone is alerady working on it :-) -uday Peter Blazejewicz wrote: --- In [EMAIL PROTECTED]ups.com, "Samuel Reuben" [EMAIL PROTECTED] wrote: If you go to http://www.adobe.com/shockwave/welcome/ in the flash player "about"

Re: [flexcoders] Re: printing/zooming bugs

2006-07-19 Thread Pan Troglodytes
So was I.That was in beta.Seriously, this is pretty major. Zooming MUST be very important to Flash/Flex if it takes up the first three right-click menu options by default. And yet, they break it and seem to just blow it off. FYI, I entered a bug report on the official web page about it.On

RE: [flexcoders] Re: printing/zooming bugs

2006-07-18 Thread Daniel Tuppeny
Cool, thanks! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pan TroglodytesSent: 18 July 2006 00:14To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: printing/zooming bugs I know this was asked a long time ago, but somehow I must have missed

Re: [flexcoders] Re: printing/zooming bugs

2006-07-18 Thread Samuel Reuben
Of Pan TroglodytesSent: 18 July 2006 00:14To: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: printing/zooming bugs I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var

Re: [flexcoders] Re: printing/zooming bugs

2006-07-17 Thread Pan Troglodytes
I know this was asked a long time ago, but somehow I must have missed it. Either that or I learned how to do it later. In any case, do this: import flash.ui.ContextMenu; var menu:ContextMenu = new ContextMenu(); menu.hideBuiltInItems(); contextMenu = menu;On 6/30/06, Daniel Tuppeny [EMAIL

Re: [flexcoders] Re: printing/zooming bugs

2006-06-15 Thread Abdul Qabiz
I suggest, you to use Flex PrintJob class instead of Player's PrintJob. Flex 2 PrintJob gives you more control.mx.printing.FlexPrintJob ?If you still see the same problem...let us know... I know the person, who can answer this best :) -abdulOn 6/15/06, Peter Blazejewicz [EMAIL PROTECTED] wrote:

RE: [flexcoders] Re: printing/zooming bugs

2006-06-15 Thread Daniel Tuppeny
I've not tried printing, but the Zoom In/Zoom Out is definitely broken on all our versions of the Flash Player 9 beta here - does exactly as you described! -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Sent: 14 June 2006 22:16 To:

Re: [flexcoders] Re: Printing whole lotta pages?

2005-07-06 Thread Manish Jethani
On 7/6/05, svktiilikainen [EMAIL PROTECTED] wrote: Nihit, your code example works - it really is possible to print two pages even if they are not on screen. Great, thanks! But how does the code work, could you explain the logic a little? Where are the resizeMask() etc methods coming from?

RE: [flexcoders] Re: Printing

2005-02-24 Thread Tracy Spratt
Robert, I just tried that example and it does not work either way for me. The data and paging is correct, but only the screen/visible area prints. Did you discover anything? Tracy -Original Message- From: rbrueckmann78 [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 23, 2005 7:06