Printjob for TextArea

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: Printjob for TextArea

    [url]http://www.darronschall.com/weblog/archives/000193.cfm[/url]

    Tracy
    ntsiii Guest

  4. #3

    Default 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

  5. #4

    Default Re: Printjob for TextArea

    Sorry, I have not done significant printing from Flex.

    Google is your friend.
    ntsiii Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139