Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
TIPLVinay #1
Printjob for TextArea
Below the code snipped :Q:
it works fine and print the textarea.
But it prints only the visible Textarea and ignores the rest of the text(that
is not visible on screen.
I hv tried a lot but failed.
Is there is any trick as we can do in DataGrid to print lots of records in
multpages.
( i hv read the FAQ in macromedia site but there is no solution or defination
for it.
if it is not possible in flex 1.5 then it is a big mistake.)
Early response appreciated.
Thanks in advance.
Code Snipped:-
function printMsg()
{
var pj : PrintJob = new PrintJob();
if(pj.start() != true)
{
delete pj;
return;
}else
{
pj.addPage(msgta); //Message TextArea
}
pj.send();
delete pj;
}
TIPLVinay Guest
-
PrintJob Problems
I am writing a class that uses the PrintJob class that print several pages to the printer. The problem I'm having is I commented out the actual... -
PrintJob() for TextArea
Below the code snipped: it works fine and print the textarea. But it prints only the visible Textarea and ignores the rest of the text(that is... -
Bug in PrintJob?
I have an application that prints dynamic content using an offstage printer object which manages layout, page breaks, headers/footers, etc. Through... -
Removing carriage returns from <textarea></textarea> input
Hiya, I have a form with a <textarea></textarea> to receive user input. This input is then stored in a database and sent by fax... I need to... -
PHP-CLI: printjob-problem
Hi, I get this error: PHP Warning: couldn't allocate the printjob in L:\php\scripts\script.php on line 37 Who can help me? BTW where can I... -
ntsiii #2
Re: Printjob for TextArea
[url]http://www.darronschall.com/weblog/archives/000193.cfm[/url]
Tracy
ntsiii Guest
-
TIPLVinay #3
Re: Printjob for TextArea
Thanks Tracy.
It is the second time u helped me. Thanks a lot!
But i want to automate the print process.
Can u please describe in details.It is the last thing remained in
my project.
Text in textarea may be vary and the users of application can't
done it manually.
also i am very much fresher to flash (6 month in flex only.)
Thanks & with regards
Vinay
TIPLVinay Guest
-
ntsiii #4
Re: Printjob for TextArea
Sorry, I have not done significant printing from Flex.
Google is your friend.
ntsiii Guest



Reply With Quote

