T2300ps HPGL2 printing only half

Hey all,.

I installed a HPGL2 T2300ps on a computer running Windows 7 64 bit.
When I try to print a 22 x 36, the actual print size is reduced by half on a large full sheet - only a quarter of the page gets a reduced image. The image in the preview window displays the image in actual size 22 x 36 on a sheet of 22 x 36. Other computers at the office (with the same parameters, as far as I can tell) fine - print ideas?

Thank you!

This sounds like the size in the driver settings can be different on this workstation, such as 'fit to page', 'full size' etc.

Tags: HP Printers

Similar Questions

  • My printer prints only half of the document, even when I try to print a Test Page. Said troubleshooting that have no problem

    Original title: device: printer

    Dear Sir/Madam,

                        
    I am a user of windows from win98, and I never had a problem with the printer that I couldn't solve. But now, my printer prints only half of the document, and troubleshooting said: there is no problem, I printed the rpinter windows test page, but I only got half! in view of this, I wonder if you would be so kind as to send me the solution to my problem, my resources and understanding have exhausted. Thank you in anticipation of your kind cooperation.

    Hi Sergio,

    We would like to ask after the details with you to help you to come.

    (1) what is the brand and model of your computer?

    (2) don't you make changes to the printer settings prior to this problem?

    (3) is the issue limited to any particular document?

    (4) do you get an error when the printer is unable to print?

    You might face this question when the printer drivers are corrupt or if the Windows service does not work properly. Follow the troubleshooting methods listed below.

     

    Solve printer problems

    http://Windows.Microsoft.com/en-in/Windows/printer-problems-in-Windows-help#fix-printer-problems=Windows-7&V1H=win8tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    You can check the link below.

    Why can I not print?

    http://Windows.Microsoft.com/en-in/Windows7/why-cant-i-print

    Check the question and write us with the State of the question. We will help you if you need assistance.

  • PrintDataGrid of printing only half of the page

    Hello

    I have a print of my report with PrintDataGrid problem. I just copied and paste the sample code from this site form, but she seems to have a problem. Printing in the book is only half and jump to another page. rank 1-6 is on the first page and the rest is on the next page that was supposed to be on a single page. I am asking your help to find ways to print correctly.

    Here, I have the code:

    FormSalesTransaction.mxml

    <fx:Script>
              <![CDATA[
                   import mx.core.*
                        
                        // Declare and initialize the variables used in the component.
                        // The application sets the actual prodTotal value.
                   [Bindable]
                   public var pageNumber:Number = 1;
                   [Bindable]
                   public var prodTotal:Number = 0;
                   
                   // Control the page contents by selectively hiding the header and
                   // footer based on the page type.
                   public function showPage(pageType:String):void 
                   {
                        if(pageType == "first" || pageType == "middle") 
                        {
                             // Hide the footer.
                             footer.includeInLayout=false;
                             footer.visible = false;
                        }
                        if(pageType == "middle" || pageType == "last") 
                        {
                             // The header won't be used again; hide it.
                             header.includeInLayout=false;
                             header.visible = false;
                        }
                        if(pageType == "last") 
                        {
                             // Show the footer.
                             footer.includeInLayout=true;
                             footer.visible = true;
                        }
                        //Update the DataGrid layout to reflect the results.
                        validateNow();
                   }
              ]]>
         </fx:Script>
         
         <!-- The template for the printed page, 
         with the contents for all pages. -->
         <mx:VBox width="90%" horizontalAlign="left">
              <mx:Label text="Page {pageNumber}"/>
         </mx:VBox>
         <MyComp:FormPrintHeader id="header"/>
         
         <mx:PrintDataGrid id="myDataGrid" 
                               height="100%"
                               width="100%"
                               fontSize="7" 
                               wordWrap="true" 
                               variableRowHeight="true" 
                               fontFamily="Lucida Console" >
              <!-- Specify the columns to ensure that their order is correct. -->
              <mx:columns>
                   <mx:DataGridColumn headerText="Invoice" dataField="InvoiceNo" width="65"/>
                   <mx:DataGridColumn headerText="Customer" dataField="CustomerName" width="100"/>
                   <mx:DataGridColumn headerText="Model" dataField="ModelNo" width="70"/>
                   <mx:DataGridColumn headerText="Category" dataField="CategoryCode" width="70"/>          
                   <mx:DataGridColumn headerText="Price" dataField="Price" width="80"/>
                   <mx:DataGridColumn headerText="Qty" dataField="Quantity" width="35"/>                    
                   <mx:DataGridColumn headerText="Cash" dataField="Cash" width="80"/>
                   <mx:DataGridColumn headerText="Dollar" dataField="Dollar" width="80"/>
                   <mx:DataGridColumn headerText="Cr Card" dataField="CreditCard" width="80"/>
                   <mx:DataGridColumn headerText="B Share" dataField="Bankshare" width="80"/>
                   <mx:DataGridColumn headerText="W Tax" dataField="WTax" width="80"/>
                   <mx:DataGridColumn headerText="Lay Dep" dataField="LayawayDP" width="80"/>
                   <mx:DataGridColumn headerText="Lay Bal" dataField="LayawayBal" width="80"/>
                   <mx:DataGridColumn headerText="Check" dataField="Check" width="80"/>
                   <mx:DataGridColumn headerText="Misc" dataField="Misc" width="80"/>
                   <mx:DataGridColumn headerText="Remarks" dataField="Remarks"/>
                   <mx:DataGridColumn headerText="Lay Pay" dataField="LayawayPayment" width="80"/>
              </mx:columns>
         </mx:PrintDataGrid>
    

    and the way that I call Report.mxml:

    var printJob:FlexPrintJob = new FlexPrintJob();
                        
    if (printJob.start()) {
            var thePrintView:FormSalesTransaction = new FormSalesTransaction();
         addElement(thePrintView);
                             
         thePrintView.width=printJob.pageWidth;
         thePrintView.height=printJob.pageHeight;
                                                 
         thePrintView.prodTotal = prodTotal;
                             
         thePrintView.myDataGrid.dataProvider = salesTransaction;
                             
         thePrintView.validateNow();
                             
         if(!thePrintView.myDataGrid.validNextPage)
         {
              thePrintView.showPage("single");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
         }
         else
         {
              thePrintView.showPage("first");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
              thePrintView.pageNumber++;
                                  
              while(true)
              {
                   thePrintView.myDataGrid.nextPage();
                                       
                   thePrintView.showPage("last");  
                                       
                   if(!thePrintView.myDataGrid.validNextPage) 
                   {
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        break;
                   }
                   else
                   {
                        thePrintView.showPage("middle");
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        thePrintView.pageNumber++;
                   }
              }
         }
         removeElement(thePrintView);
    }          
    printJob.printAsBitmap = false;                    
    printJob.send();
    

    Here is the result when I print the report:

    printout.jpg

    I hope you have some time to help me.

    Thankz a lot.

    Can you check and see if the fact no difference if variableRowHeight attribute set to false?

    It looks like a problem of container.

  • Firefox 27.0.1 w/Mac OS 10.9.2 prints only half left of the Web page (any page).

    I used to be able to print correctly. Computer did some updates yesterday and now I have problems printing. Only the left part of the page prints.
    -J' checked the settings
    -J' I reset the print_ in all: config
    -J' changed the default font
    -Margins are normal

    If Firefox does not use the entire page, it usually indicates a problem with getting the correct paper of the system size.

    When you reset the print settings in topic: config, reset it those related to the size of the paper?

    I do not know how you check the paper size to the printer by default on Mac, but that would be worth a glance.

  • printing only half of the text

    I don't see the bottom half of the text when I print my document. How can I solve this problem?

    Hi Casshirtz76,

    Open the drive, go to menu help & repair the installation.

    Otherwise try to print as image PDF print as image. Adobe Acrobat, Reader.

    Check if it solves your problem.

    Kind regards
    Nicos

  • Print module, LR4, Custom package (2) 8 x 12 on Super B paper, PRINTING ONLY HALF OF THE SECOND PHOTO

    What is the problem here? With the help of Epson 1430.

    _M2A2884.jpg

    It looks like a bad printer cable.

  • Deskjetf2480 only half a page of printing / takes a long time to do anything

    Ive got, this printer for a while now and to be honest not happy with it. Everything has started using it again and replaced the old ink cartridges. The problem is printing only half a page at a time, then pausing for centuries, then spit it out again with only half of a printed page. Its driving me crazy! Ive went through 4 hours of my life yesterday to make it work, that is to say

    (1) reset... did not work

    (2) hard reset... .didnt work

    (3) re install the drivers did not work (4 times)

    (4) cleaned the cartridges and the contacts did not always work!

    Ive followed every bit of advice I could find and now 93 pieces of paper, half of my NEW missing ink, a job end im still no closer to a solution.

    I'm sitting here with a piece of paper, sitting at halfway in my printer waiting a response please help me until the printer is found embedded in my wall. Thank you

    It's definitely a hardware problem then.  Looks like you have tried most of the hardware standard troubleshooting steps.  Take a look at the document below, the link just to see if there is anything in it you have not yet tried.  Other than that, I have a reset, I want you to try, but I can not post the stages publicly.  I sent you a few steps via private Message.  Here is a link that will show you how to use this forum feature if you're not familiar with it.

    Troubleshooting print quality problems

     
  • Dell 926 AIO printer only prints half the work or stops printing

    Original title - printing problem

    My Dell 926 AIO printer displays only half the work, if that, then stops.  The printer says 'printing' and computer screen says "suppression" of information with the printer.  If I turn off the computer and the printer and start again sometimes I will get any impression over, sometimes just the part not printed in the first task, and sometimes the same - print a page or two and stop.  Is this a problem of printer or a computer problem?

    Hi Dennis,

    1. What operating system is installed on the computer?
    2. Since when are you facing this problem?

    Method 1: Try to run the printer troubleshooter.

    Open the printer Troubleshooter

    http://Windows.Microsoft.com/en-us/Windows7/open-the-printer-Troubleshooter

    Method 2:

    Uninstall and reinstall the printer.

    http://Windows.Microsoft.com/en-us/Windows7/install-a-printer

    For reference, please visit:

    http://Windows.Microsoft.com/en-us/Windows/help/printer-problems-in-Windows

    You can also consult the "troubleshooting information" section.

    Please post back with the State of the question.

  • Only half a page to print on Avery 5160 labels.

    Original title: labels Avery 5160

    Why am I getting only half a page of my Avery 5160 labels printed?  When I use the regular computer paper, the entire page is printed.

    Hello

    1. what operating system is installed on your computer?

    2. What is the brand and model of the printer?

    If you use the HP LaserJet printer then you can have a look at this article:
    http://h20000.www2.HP.com/bizsupport/TechSupport/document.jsp?lang=en&cc=us&TaskID=110&prodSeriesId=412144&prodTypeId=18972&ObjectID=c00557679

    Check out these links:
    http://www.Avery.com/Avery/en_US/Help-Center/formatting-and-printing-tips/?NS=rank

    http://www.Avery.com/Avery/en_US/Help-Center/product-FAQs/?NS=rank

    Thank you

  • Pro 9500 nozzle check print only the lower half of the motif on the colors red, green and cyan.

    Pro 9500 impressions of low nozzle printer test only half of the colors red, green and cyan.  The bottom half is normal (no scratches & etc.).  Upper half is completely empty.  Problem started with a single color and progressed to three.  Since the three colors are adjacent tanks, at the far right of the Assembly to the tank, is there possibly something something in common to all three?  What is a control problem?  Cleaning (both normal & deep) and the replacement of the tanks have had negative results.  Head alignment will not work.  "Can't do the printhead alignment."


  • HP Deskjet 1000 printer - just changed the black cartridge for the first time and now it will only print first half of the page. Can anyone help

    HP Deskjet 1000 printer - just changed the black cartridge for the first time and now it will only print first half of the page.  Can anyone help

    Hello Gloria,.

    I ask you to execute methods in the following link and check if the problem is resolved.

    Solve printer problems

    You can also contact the manufacturer to find out how to clean the print head.

    http://h10025.www1.HP.com/ewfrf/wc/siteHome?cc=us&LC=en

    Please get back to us with the State of the question.

  • HP Officejet Pro 8620 copier copies only half of the document

    During the adjustment of the glass my copier copies only half of the page. When cope since the charger it leaves one side of my page off the coast. I've only had it a few weeks and do not know what to do. Thanks in advance for any help I can get.

    Hello @mburrand welcome to the Forums of HP, I hope you enjoy your experience!

    I see that you are having problems to copy output.  I'd love to try to help you, but I need some information first. I'm a link a few HP Support documents below that will show you how to find what operating system you are using. In addition, if you are using Windows, please indicate if your operating system is 32-bit or 64-bit.

    Mac OS X: how to find which Mac OS X Version is on my computer?
    Operating system Windows am I running?
    Is the Version of Windows on my computer 32-bit or 64-bit?

    In the meantime, I recommend that you perform a power reset.  Unplug the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug back in the printer. Make sure that you connect the printer directly to a wall outlet. Make sure to bypass any surge protector or power bar.

    Good luck and please let me know the results of your troubleshooting operations. Thanks for posting on the HP Forums!

  • HP Deskjet 2540: How to print only the Page showing

    How to fix my printer to print just what is on the screen?

    For example, I am trying to print the list of the NBA team, which shows on the screen, but when I hit print, it prints five pages and the list is divided between the last two pages.

    I used to have a nice little program, years, called "Print Screen", which I was allowed to do, but it became obsolete.  My HP 2540 is new and I have the CD with any software.  Is there something out there that will help you?  TIA

    D-S-N

    Thank you banhien, but as I mentioned in the post, the list was divided between two pages when it print so choose page I was only half of the team.  However, I found a solution, provided by HP and ready to install.  I remembered a window asking if I wanted to install "HP Smart Print" shortly after I installed my new printer to appear.  I didn't know what it was, I went on it.  I shouldn't, because it's actually the version of HP of the old program 'Print Screen'.

    It allows you to choose from, with the mouse, the entire page or a part of the page, preview and enlarge (up to 200%) or to reduce and print any number of pages you want.  Really great!  I found it waiting to be installed in 'Tools' on the menu of Office Windows 8.1 under "HP Smart Print 2.1".»  As soon as it is installed and I went to the for use, he informed me that there is a 'Smart Print 2.7' update available, I did, it only took about 30 seconds and he was.  It works perfectly.

    A second solution is to go out tomorrow and buy another victory. 8.0 HP keyboard, to replace my five-year-old wireless keyboard HP Deluxe Desktop which is supported only through Win XP and who does not the "Prnt scrn" button  I guess it is old 32-bit and 64 - bit.  Hitting "ALT - Prnt scrn" used to work with XP and earlier operating systems.

    Dennis

  • HP OJ 6500 E 710 print only about 2/3 of the sheets 4 X 6 "

    All of a sudden my HP OJ 6500 E 710 print only about 2/3 of the text on 4 X 6 "index cards.  The left side of the map is perfect, but about an inch and a half is missing on the right side, just empty.  I am at a loss it was working perfectly, the last time I printed cards.  Full 8-1/2 X 11 "pages print correctly.  Help!

    Hi BulaBamboo,

    I'd like to see what I can do to help, but have a few questions:

    1. what operating system you have on your computer?

    2. what type of program you are using to print the cards?

    3 have you tried another program?

  • How can I print only 1 page web/29 FF? With 29, you can change only the first field (1 of 5, 2 of 5, 3, 5, etc.) This means I can print only 5 pages,

    So I can not print just 1 of 5 pages. The default, 1-5, will display all 5 pages. The 2nd field cannot be changed, possible in previous versions of FF, 1 of 1. Therefore, I can print only all 5 pages, 2-5, 3-5, etc. WTF - I keep losing the print paper. I had printing edit add-on, but that doesn't seem to help. I've been through several versions of FF and do not like the format of 29.

    In fact, with the addon print change, if I click on the arrow down I get old print format options and can do.

Maybe you are looking for

  • AirPort Express is no show in the utility AP

    Airport Express 1264 does not appear in the chart of AirPort Utility. I had my time airport Capsule (3rd generation) running for years. Buy a model 1264 1st Gen Airport Express to extend the system. CAT6 used to connect Express to Time Capsule but Ex

  • How to merge 2 albums of photos software? Thank you.

    Hello With the software how to merge 2 pictures? Thank you.

  • HP DV6 3050TX (damaged HDD, not pre-installed OS Backup)

    Hi, 640 GB Hard Disk to my HP DV6 3050TX got corrupted and had to buy a new one. I have no back up earlier. So, where can I get the Genuine Windows 7 Home Premium 64 bit that comes pre-installed with the laptop and where to find all the drivers? Why

  • C7280 printer does not print

    I receive a message to replace the black and yellow ink cartridge when I try to print anything, even from desktop computer.  All ink cartridges are full.  I checked in the HP Solution Center and cleaned the heads of copper on the cartridges - get the

  • Earphone Jack blackBerry Z30

    Just got my Z30.  Jack worked earpiece yesterday.  Today he will neither go all the way, if the device does not recognize it. A hammer is appropriate? I see now that in radio mode, seems to be loose and I don't get any volume of the headphone or spea