Need help printing in classic to hp laserjet 3050

when I try to print a classic document it can't find my printer. I look in chooser and it's not there. I have both the mac os X 10.3.9 and the mac 9.1. No problems with os X

Welcome To Discussions sweethart!
If this HP LaserJet 3050 All-in-One is the model, I don't see a driver available for OS 9 on that site.
Without a driver installed in OS 9, you can't print from Classic.
Maybe greg sahli, the printer guru, can offer an alternate means.
ali b

Similar Messages

  • Need help printing in Classic to HP 1510

    I'm helping a person with an early 2001 iMac (500 MHz, 384 MB RAM) who's running 10.2.8 and 9.2.2. She got an HP 1510 all-in-one printer/scanner, and I'm trying to get it set up. I installed the printer software for OS X and for 9.2.2 (while running under 9.2.2) I can print from a 9.2.2 application (like Word for Office 2001) while running under 9.2.2, and I can print from an OS X application, but I can't print from a Classic application under OS X!
    When she tries to print from Office 2001 under Classic, the HP 1510 printer is found under "Page Setup" and "Print" in the Office 2001 application, the print job spools, but the Print Manager under Classic claims no printer is installed, and the Chooser under Classic can't find a USB-based printer under "HP Inkjet v6.6.1". This is where I found the USB-based printer when she was running 9.2.2. She has tried running the Desktop Printer Setup utility under Classic, but it doesn't see the USB-based HP 1510.
    What do I need to do to enable printing under Classic?

    gave up.

  • I need help printing with HP laserjet 2200 and OS 10.6

    I need help setting up my HP laserjet 2200 and OS 10.6 -- I've downloaded and installed all the software and still can't print.

    Hey jeo1951,
    If you haven't already, try running through the recommended steps in the following article:
    Mac 101: Printing (Mac OS X v10.6)
    http://support.apple.com/kb/HT3771
    It should help you set up your printer.
    Welcome to Apple Support Communities!
    All the best,
    Delgadoh

  • Need helping printing to networked printers.

    I need help setting up network printers that have a code on them for each individual. There is no place to put a code so the printer will know who is printing what. I have installed 3 printers and they will not print, they just go to a paused mode and when you hit resume in reverts back to pause because it is looking for a code. I have tried it another way but it asks for a user name and password and all we have are codes. The workplace is using a windows based server and the copiers are listed as followed.
    Konica biz hub c450
    Sharp ar m700n
    sharp mx700n
    I need help to be able to print from my mac. I also have parallels running with xp installed and all the printers are installed on that side and printing fine. Hopefully someone can help me out.
    Thanks in advance

    Hello and welcome to Apple Discussions.
    In order to provide the user with the ability to input a user code, the respective printer driver would have to provide the facility. If this feature did exist on a previous version of OS X, then you may have to check the vendors web site to see if there is a driver for 10.6.
    If you are not sure if the function was supported previously, then go through all the user menus for the driver. The function may be present but located in an unusual location. Or it could require an additional file (aka plugin) that could be missing from the driver installation or not compatible with 10.6.
    The other thing to note is that if you have the Mac's printing via a Windows queue, you will have to provide user credentials for SMB print queues. This is typically a Windows user account - not the Mac's account details. If you don't want to create accounts for the Mac users on the Windows server, then you can use LPD rather than SMB to connect to the Windows queues. This does require UNIX Printing Services to be enabled on the server.
    Pahu

  • Need Help Printing Text Messages From E71

    I need to print some saved text messages that are on my e71 but cannot ge **bleep** to hook up to my bluetooth printer it just never finds it. Is there another way to print these messages fromt he phone i really need them

    connect to pc and use ovi suite
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Need help printing tiff files

    I have written some code that prints any file that can be opened using JAI and the ImageIO Tools. The code works good for me but I have some special cases where I am having some difficulty. Some files I need to print are TIFF files with many pages. Some are compressed using Fax Group 4 encoding and others are compressed using OLD jpeg-in-tiff. I can read and print the files just fine, but it takes about 2 seconds to print each page. Also the spooling data for 88 pages is 900 MB in size. Printing the same files using IrfanView takes <1 seconds and the spool file is much smaller (equivalent to the size of the uncompressed tiff) The speed and size issues are problems for me because I am working on a print web service. My code to render each page is below. So far I have tried rendering hints and such to increase speed, but I think the problem is that when I read the image it takes up a lot of space in memory.
    Here is the overall requirements for what I am doing: A use will request that the server print a set of files (mixed image formats, restricted to TIFF, JPEG, and GIF) be printed to specific printer as a single print job. They can specify copies and collation only. The service will open each file in order and send its data to the printer. I have created a custom class that implements the Printable interface to handle the multiple files. The class below is created for each file and handles the printing of the image file.
    I am using JDK 1.4.2 and WebSphere. I am stuck with these options b/c I have to use some IBM API's (IBM Content Manager 8.3) that are not compatible with 1.5 or higher.
    Is there any way to speed up my code. Possibly load the image differently?
    import java.awt.Graphics2D;
    import java.awt.RenderingHints;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import java.awt.print.PrinterException;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.FileImageInputStream;
    import javax.imageio.stream.ImageInputStream;
    public class ImagePrinter2 implements Printable
       public static final int PAPER_SIZE_LETTER = 0;
       public static final int PAPER_SIZE_LEGAL = 1;
       private final ImageReader reader;
       private final int _pageCount;
       private final File imageFile;
       private int _pageOffset;
       public ImagePrinter2(File imageFile) throws IOException
          this.imageFile = imageFile;
          ImageInputStream fis = new FileImageInputStream(this.imageFile);
          reader = (ImageReader) ImageIO.getImageReaders(fis).next();
          reader.setInput(fis);
          _pageCount = reader.getNumImages(true);
       public int print(java.awt.Graphics g, java.awt.print.PageFormat pf, int pageIndex)
          throws java.awt.print.PrinterException
          BufferedImage image = null;
          int currentPage = pageIndex - getPageOffset();  //pageIndex is for the overall job, I need the page in this file
          int imgWidth = 0, imgHeight = 0;
          int drawX = 0, drawY = 0;
          double scaleRatio = 1;
          try
             image = reader.read(currentPage);
             imgWidth = image.getWidth();
             imgHeight = image.getHeight();
          catch (IndexOutOfBoundsException e)
             return NO_SUCH_PAGE;
          catch (IOException e)
             throw new PrinterException(e.getLocalizedMessage());
          if (imgWidth > imgHeight)
             pf.setOrientation(PageFormat.LANDSCAPE);
          else
             pf.setOrientation(PageFormat.PORTRAIT);
          Graphics2D g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED);
          g2.translate(pf.getImageableX(), pf.getImageableY());
          g2.setClip(0, 0, (int) pf.getImageableWidth(), (int) pf.getImageableHeight());
          scaleRatio =
             (double) ((imgWidth > imgHeight)
                ? (pf.getImageableWidth() / imgWidth)
                : (pf.getImageableHeight() / imgHeight));
          //check the scale ratio to make sure that we will not write something off the page
          if ((imgWidth * scaleRatio) > pf.getImageableWidth())
             scaleRatio = (pf.getImageableWidth() / imgWidth);
          else if ((imgHeight * scaleRatio) > pf.getImageableHeight())
             scaleRatio = (pf.getImageableHeight() / imgHeight);
          //center image
          if (scaleRatio < 1)
             drawX = (int) ((pf.getImageableWidth() - (imgWidth * scaleRatio)) / 2);
             drawY = (int) ((pf.getImageableHeight() - (imgHeight * scaleRatio)) / 2);
          else
             drawX = (int) (pf.getImageableWidth() - imgWidth) / 2;
             drawY = (int) (pf.getImageableHeight() - imgHeight) / 2;
          AffineTransform at = AffineTransform.getTranslateInstance(drawX, drawY);
          if (scaleRatio < 1)
             at.scale(scaleRatio, scaleRatio);
          g2.drawRenderedImage(image, at);
          g2.dispose();
          image = null;
          return PAGE_EXISTS;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @return
       public int getPageCount()
          return _pageCount;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @return
       public int getPageOffset()
          return _pageOffset;
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
        * @param i
       protected void setPageOffset(int i)
          _pageOffset = i;
          * Release the reader resources
          * <br><br>
          * Created By: TSO1207 - John Loyd
          * @since version XXX
       public void destroy()
              try
                   ((ImageInputStream) reader.getInput()).close();
              catch (Exception e)
              reader.reset();
          reader.dispose();
        * Helps release memory used when printing (seems to be a 1.4.2 thing)
        * <br><br>
        * Created By: TSO1207 - John Loyd
        * @since version XXX
       public void reset() throws FileNotFoundException, IOException
          try
             ((ImageInputStream) reader.getInput()).close();
          catch (Exception e)
          reader.reset();
          ImageInputStream fis = new FileImageInputStream(imageFile);
          reader.setInput(fis);
    }

    I found a couple of issues. One was related to code the other to IBM. AS for the code I found an article about drawing scaled images here: http://today.java.net/pub/a/today/2007/04/03/perils-of-image-getscaledinstance.html which was quite useful. My updated code is below. The second issues is that the JRE I am using is the IBM Websphere 5.1 JRE which pretty much sicks. I tested using a Sun statndard 1.4.2 JRE and the print was 5 times faster. Now I am looking to find a way around that issue, but it is not a questions for this form.
    public int print(java.awt.Graphics g, java.awt.print.PageFormat pf, int pageIndex)
          throws java.awt.print.PrinterException
          BufferedImage image = null;
          int currentPage = pageIndex - getPageOffset();  //pageIndex is for the overall job, I need the page in this file
          int imgWidth = 0, imgHeight = 0;
          int drawX = 0, drawY = 0;
          double scaleRatio = 1;
          try
             image = reader.read(currentPage);
             imgWidth = image.getWidth();
             imgHeight = image.getHeight();
          catch (IndexOutOfBoundsException e)
             return NO_SUCH_PAGE;
          catch (IOException e)
             throw new PrinterException(e.getLocalizedMessage());
          if (imgWidth > imgHeight)
             pf.setOrientation(PageFormat.LANDSCAPE);
          else
             pf.setOrientation(PageFormat.PORTRAIT);
          Graphics2D g2 = (Graphics2D) g;
          g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED);
          g2.translate(pf.getImageableX(), pf.getImageableY());
          g2.setClip(0, 0, (int) pf.getImageableWidth(), (int) pf.getImageableHeight());
          scaleRatio =
             (double) ((imgWidth > imgHeight)
                ? (pf.getImageableWidth() / imgWidth)
                : (pf.getImageableHeight() / imgHeight));
          //check the scale ratio to make sure that we will not write something off the page
          if ((imgWidth * scaleRatio) > pf.getImageableWidth())
             scaleRatio = (pf.getImageableWidth() / imgWidth);
          else if ((imgHeight * scaleRatio) > pf.getImageableHeight())
             scaleRatio = (pf.getImageableHeight() / imgHeight);
          //find the scaled width and height
          int scaledWidth = imgWidth, scaledHeight=imgHeight;
          //center image
          if (scaleRatio < 1)
             drawX = (int) ((pf.getImageableWidth() - (imgWidth * scaleRatio)) / 2);
             drawY = (int) ((pf.getImageableHeight() - (imgHeight * scaleRatio)) / 2);
             //new code to set the scale
             scaledWidth = (int)(scaledWidth * scaleRatio);
             scaledHeight = (int)(scaledHeight * scaleRatio);
          else
             drawX = (int) (pf.getImageableWidth() - imgWidth) / 2;
             drawY = (int) (pf.getImageableHeight() - imgHeight) / 2;
    /*don't need transform
          /*AffineTransform at = AffineTransform.getTranslateInstance(drawX, drawY);
          if (scaleRatio < 1)
             at.scale(scaleRatio, scaleRatio);
          g2.drawRenderedImage(image, at);*/
          //use scale instance of draw image
          g2.drawImage(image, drawX, drawY, scaleWidth, scaleHeight, null);     
          g2.dispose();
          image = null;
          return PAGE_EXISTS;
       }Edited by: jloyd01 on Mar 7, 2008 1:35 PM

  • Need Help With Installling Classic on OS X Panther??

    Hi: When I installed OS X Panther, I wasn't aware that in order to run Classic 9, I needed 9.2. Well, I purchased 9.2 but everytime I install it it's giving me an error message. I've checked the disk as well as my HD and everything seems to be fine. I've turned off screensaver, unplugged my printer and disconnected the cable to the internet. What's up? It still won't install. It keeps saying there were errors in installing. Can anyone help me out here. I'd sure appreciate it.
    G4 AGP Sawtooth   Mac OS X (10.3.9)  

    Hi flyingcat,
    reinstalling OS 9 is not always an easy task. See if any of these article s can help:
    Using Apple Software Restore to install or reinstall parts without erasing (Mac OS X 10.1.5 or earlier)
    Using Restore Discs with Mac OS X 10.2 through 10.3.3
    Mac OS X 10.4: Restoring applications from a Mac OS X 10.2 Software Restore disc
    Using Restore discs with computers that ship with Mac OS X 10.3.4 through 10.3.7
    Using Restore discs with computers that ship with Mac OS X 10.3.7 or later
    Mac OS X: Reinstalling Mac OS 9 or recovering from a software restore
    Mac OS X 10.2, 10.3: How to perform Mac OS 9 clean installation with Restore CDs
    If this answered your question please consider granting some stars: Why reward points?

  • Need help - Print Menue in Acrobat Pro and Standard

    Hello,
    at first, i have to apologize for my bad englisch because I'm german.
    I downloaded a Trial of Acrobat pro and there I hava an extended Print menue where I can choose individual Color Profiles.
    There is an image attached.
    But I don't really need the Acobat pro Features, because I need Acrobat only for Color Printing on my Printer. And it ist expensive.
    So my Question to you is: Is this extended Print menue also in Acobat 9 Standard?
    There is no Trial, so that I hope, that someone can help me.
    Can I also set this settings in Acrobat 9 Standard?
    Thank you very much for helping me with my buying decision.
    Greetings from Munich
    Sebastian

    The Advanced Print menu in 9 Standard does not have all of the options that are in your screen shot.
    Checked with a coworker who has 9 Standard, and the options are much more limited. (I have 8 Pro).
    Bad news is you would need 9 Pro.
    Saw this the other day; sorry for the slow answer, good luck.

  • Need help Printing Address labels from Address Book

    I have a new iMac using OS X.4 1. I want to print address labels for Christmas cards. 2. I want to print several address labels of the same information for return address labels. I can't seem to figure it out. I've read the Help. I don't see where to put the # of labels per page. I created a Directory with only one name it it (so it would print several times on one page.) I selected Avery Standard - label 5162. Under label I selected Distribution List. I seem to be missing something.
    Thanks for any help you can give me.

    I wanted to do the same thing. The only way I was able to do this was to create a new group, then enter my name and address 30 times (the number of labels per sheet on Avery 8160). Then I was able to print as many sheets as I wanted. The bad news is you have to enter 30 times, the good news is once you done it you can print as many labels as you need. good luck

  • I need help printing from my original IPad..I have an Epson printer NX420 "

    Can anyone help me figure this out?  I want to be able to print from my email and am unable to at this time.

    You will need to get an application like Printopia, Print Central, Airport Activator and use it since your printer is not Airprint compatible.

  • Still Need Help: printing audio BUT not video to panasonic DVX 100A

    i've never had this problem before, never.
    i haven't printed to video that many times on this
    camera, but i have done it a few times, with the same
    computer set up.
    i've re-booted, un-attatched cables, re-attatched them,
    but still not showing video on the monitor window on the DVX.
    can some one help??
    and besides the audio getting to the camcorder,
    the screen does go black (instead of blue), just
    no video image.
    i've followed the same procedure for the last 5 years using Final Cut Pro:
    - selecting the sequence on the Browser
    - selecting mini dvd firewire (instead of 'none')
    on the drop down for Audio/Video quick setup.
    - and i've selected using same destination for 'print to video' as the source of video
    - under View, external video shows 'all frames'selected.
    - the pref's shows i'm using the DVX instead of another camera.
    thanks,
    kyle

    I'll back up Studio with my usual list:
    #8 External Monitor Viewing.
    Shane's Stock Answer #8:
    A simple path is mac > firewire > camera or deck > rca cables > tv
    Then start up your camera and tv, then open fcp.
    Then go View > External video > all frames
    Video playback should be Apple firewire NTSC (If you are using an NTSC set)
    Audio playback should be Audio follows Video
    Techinially, this should send synched video to your TV
    If for some reason you can't view your timeline on your external monitor, there are a few things to try:
    1) Make sure that the camera/deck is connected and powered on BEFORE you open FCP.
    2) In the Final Cut Pro menu select AUDIO/VIDEO Preferences and make sure your signal is being sent out thru Firewire DV.
    3) Go to the menu and select VIEW>EXTERNAL>ALL FRAMES.
    4) Click in the % box above the image and select FIT TO WINDOW.
    5) Go to VIEW->refresh A/V devices
    6) Make sure the Log & Capture window is closed
    If you want it to play in both the canvas and the external monitor you need to go to the FINAL CUT PRO menu and select AUDIO/VIDIO settings and make sure MIRROR ON DESKTOP is selected under the PLAYBACK OUTPUT section
    Shane

  • Need help printing to a Windows 7 networked printer

    Hi,
    I have a new MacBook Air and I am trying to get it to print wirelessly to a network printer that is connected to a Windows 7 computer.  I am at the point where the printer (an HP laserjet) shows up as the default printer, as it should, but when I try to print I get a "hold for authorization" message.
    I have found several explanations online for sharing a windows 7 printer and have activated the LPD Print Service on the Windows 7 computer, but the advice then says to go to the Mac and open the Print & Fax system preference.  There is no such thing on the Mountain Lion operating system, and the Print & Scan preference dows not have the features that allow me to get to the advanced button and select LDB/LPR Host or Printer as the type.
    Does anyone know how to share a Windows 7 printer on MacBook Air Mountain Lion?  Or is there someone who can tell me how to get to the toolbar described in the old Print & Fax system preference?

    With Print &amp; Scan open, click the plus button under the Printers column to see the Add window. This window has the Default, IP and Windows icons. Click the IP icon, enter the IP address of the Win7 box, change the protocol to LPD and enter the shared name for the printer in the Queue field. Then select the driver and click Add to complete.

  • Need help setting up Classic on eMAC USB2

    My problem is that I cannot seem to get Classic (OS9.2.2) to load on this eMAC (1 GHz, USB2). Since it is a model that will not boot OS9 directly, I have tried a number of different alternatives.
    My latest try was to just copy the system folder from my OS9 CD, bless it, and then try starting Classic. It doesn't work! I get a message that says: "The system software on the startup disk only functions on the original media, not if copied to another drive."
    So I read the eMAC User Guide that Apple published for this system. It says that I need to use the Apple Hardware Test CD that came with this system to set up the Classic environment. Since I don't have the original disks that "came with this system", I tried visiting Apple Support pages.
    I actually found a link to Apple Hardware Test disk images: <http://www.info.apple.com/support/aht.html>
    So, I tried downloading the disk image for eMAC, I burned it to a CD, and tried booting it. I get a message on screen that says this machine is not supported by this version of AHT.
    So, I am again back to square one. I'd really like to set up classic on this computer (for a couple of legacy programs that I'd still like to use. Any ideas, anyone?
    Joe G.

    Hey Joe-eMac and Welcome to Apple Discussions,
    My problem is that I cannot seem to get Classic (OS9.2.2) to load on this eMAC (1 GHz, USB2).
    Well according to LEM:
    http://www.lowendmac.com/imacs/emac-2004-1.25-ghz.html
    The eMac 1/1.25 GHz (2004) requires Mac OS X 10.3.3 or later. So the machine won't boot directly into OS 9.2.2. The USB 1.1 1GHz would.
    You should be able to install OS 10.3.2-9 and boot into classic mode that way.
    Richard

  • Need help with (Runescape Classic Graphiced) online game

    I am wondering if someone could link the program Jagex used to make Runescape Classic. Or if you have to, a land generator and character, graphics, object program. If you could also explain how to work it into HTML. That would be good too. I want to put this game (will be massively Multiplayer) on my website. Please help soon.
    P.S. Explain how to make it multiplayer.

    I am wondering if someone could link the program Jagex used to make Runescape Classic.Jagex tends to use proprietary in-house tools, so the odds are that the modeller used to make RS Classic isn't available on the web. To be honest, it wouldn't surprise me to learn that the Gowers hand-coded the early models in a hex editor.
    If you're looking for 3D modelling tools which are used by games developers, you could do worse than Blender or Milkshape3D. However, given that you don't seem to know what an applet is or how to do networking, I think you're biting off more than you can fit in your mouth, let alone chew. Start with learning the basics and think about doing a MMORPG in a year or two.

  • NEED HELP PRINTING LABELS ON MY MACBOOK PRO. PLEASE!!

    HELP!  I HAVE A 6 MONTH OLD MACBOOK PRO AND AM USING THE NEWEST VERSION OF PAGES.
        I DOWNLOAD MAILING ADDRESSES FROM THE TAX OFFICE FORMATTED FOR AVERY 5160 LABELS.
        THE DOWNLOAD COMES IN AS A .RTF  (WORD RICH TEXT FORMAT).  I CAN'T OPEN THE DOWNLOAD WITH
        PAGES.  THIS REALLY *****. 
       I WILL BUY NEW SOFTWARE IF NEEDED.
        ANY SUGGESTIONS ?

    Pages 5 no longer opens .rtf. Just one of over 100 features Apple removed.
    You can open it in TextEdit and resave it as .txt or .docx
    If you can however you will be better off using Pages '09 which should be in your Applications/iWork folder.
    Peter

Maybe you are looking for

  • Macbook pro via HDMI to panasonic ae2000 projector not working.

    Hi Last night I tried to connect my mid 2009 macbook pro to my panasonic ae2000 projector. I have a mini dvi to hdmi adapter lead. The macbook pro display would flicker when hdmi plugged in but the projector would not come up as a display device. (in

  • BADI   ME_GUI_PO_CUST  Data Updation Query

    Hi I am adding Subscreen in PO at item level by using BADI ME_GUI_PO_CUST , subscreen is successfully implemented and visible at item level and the table which i have made for collecting the customer data but Z table is not populated. I have made cha

  • Can we condense the two ODBC forums

    Under Technologies | Windows, there are two different forums for discussing ODBC and nothing, apparently, to differentiate the two forums. Under the old structure, this at least accomplished the objective of having ODBC discussions with two different

  • Need help with student verification

    My daughter bought Adobe Acrobat XI Pro on Amazon new and then we followed the directions on Adobe to verify she is a student in high school.  It has been 3 days and we still have not recieved the activation code to use our product?  The Adobe suppor

  • 6700 - any idea how to get battery out?

    Stupid question I know but I've bought a 6700 (off Ebay) and it's arrived with the battery in. I need to release it so I can fit my Sim into it. Any clues? It's driving me mad!