Fit to print

I created a destop intelligence report (XIr2), setting the "fit to print" option to fit to 1 page tall by 1 page wide. When another user picks up the report on another PC, it prints on multiple pages. Changing the page set up options do not help. Is there any solution?

Hi Cathy,
Following suggestion might help you to resolve the issue.
Open the registry editor by clicking on start->run->regedit.
Open HKEY_CURRENT_USER.
Got to the following folders and delete it.
Software->Business objects->Suite 11.5->Default->Business Objects->User Prefs.
Software->Business objects->Suite 11.5->Default->Business Objects->Application Preferences->BusinessReporter.
Delete the above mentioned folders before applying this solution please close all the BO applications and take the backup of the registries.
Regards,
Sarbhjeet Kaur

Similar Messages

  • HP all-in-one C6180 with a duplexor fitted that printed double sided under Win XP but not Win 7 32bi

    I have an HP all-in-one C6180 with a duplexor fitted.
    I could print double sided under Wimdows XP but have now upgraded to  Windows 7 32-bit.
    I have installed the latest drivers for the C6180 from the HP site.
    I cannot print double
    sided because in Printer Properties > Device Settings > Installable Options the "Duplex unit for 2-sided printing" option is not available for Install.
    Can you please provide a patch or the latest driver with the Install option enabled please.
    Regards,
    John Seager
    {Personal Information Removed}

    You may need to enable the duplexer while logged in as a user with administrative privledges.  Alternately go to the Devices and Printers folder, right clisk on the C6180, Printer Properties, Security, and click the settings to allow "Manage this printer" for the user.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Scale to fit in PRINT DIALOG

    Is there a way to scale to fit in the print dialog? Does anyone know where this is and how to save these? The settings seem to be splayed across Numbers, Layout and Paper Handling Tabs and I really wish they had put this together in a more straightforward way.
    This dialog drives me nuts when I have two printers and a jillion pieces of software that I am printing out of.
    Is there a way to scale a numbers spreadsheet to FIT onto 8 x 11 or 8 x 14 or 11 x 17 inch paper? I often need to print the SAME DOCUMENT out on different paper sizes and I can't seem to find a scale to fit in the print dialog that works.
    I am using an HP 8500 and a HP 1700.
    Thanks.

    Hello
    If you don't want to apply the trials scheme every time, you may use these scripts.
    The first one allows you to grab the exact scale value which you defined one by the trials scheme.
    --{code}
    --[SCRIPT get_Scale_value]
    Here the code is in it's extended shape to show the way I got the infos allowing me to build it
    Yvan KOENIG (VALLAURIS, France)
    2011/10/20
    property workInProgress : false
    true = activate the instructions grabbing informative infos
    false = drop the instructions grabbing informative infos
    on run
              local the_window, previewIsActive, currentValue
              tell application "Numbers" to activate
              tell application "System Events" to tell application process "Numbers"
                        set the_window to name of first window whose subrole is "AXStandardWindow"
                        tell window the_window
                                  if workInProgress then class of every UI element
    {button, button, button, splitter group, pop up button, pop up button, static text, color well, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, checkbox, menu button, button, button, menu button, pop up button, image, static text, tool bar, button, image, static text, grow area}
                                  tell first splitter group
                                            if workInProgress then class of every UI element
      --> {splitter group, splitter, splitter group}
                                            if workInProgress then class of every UI element of first splitter group
      --> {scroll area, splitter, scroll area, scroll area} not for us !
                                            if workInProgress then class of every UI element of last splitter group
      --> {splitter group, splitter, scroll area} It's ours !
                                            tell last splitter group
                                                      if workInProgress then class of every UI element
      --> {splitter group, splitter, scroll area}
                                                      tell first splitter group
                                                                if workInProgress then class of every UI element
      --> {scroll area, scroll area}
                                                                if workInProgress then class of every UI element of first scroll area
      --> {text area, scroll bar}
      class of every UI element of last scroll area
    --> {UI element, scroll bar, scroll bar, UI element, UI element, pop up button, button} it's ours but don't show Preview
    or
    --> {UI element, scroll bar, scroll bar, UI element, UI element, pop up button, button, slider, group} it's ours showing Preview
                                                                set previewIsActive to result contains slider
                                                      end tell -- first splitter group
                                            end tell -- last splitter group
                                  end tell -- first splitter group
                        end tell -- Window
    If needed, trigger "Show Preview before Print" *)
                        if not previewIsActive then
                                  tell menu bar 1 to tell menu bar item 9 to tell menu 1 to click menu item 1
                        end if
                        tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group to tell last scroll area
                                  repeat
                                            if (get class of every UI element) contains slider then exit repeat
                                  end repeat
                                  set currentValue to get value of first slider
      --> 0.456789
                        end tell
              end tell -- System Events
      set the clipboard to currentValue as text
      activate
              if my parleAnglais() then
                        display dialog "The scale value : " & currentValue & " is in the clipboard."
              else
                        display dialog "L’échelle : " & currentValue & " est dans le presse-papiers."
              end if
    end run
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    --{code}
    Store this scale value in a safe area to be able to reuse it.
    The next time you will want to reuse the same setting, run the second script and type the scale value.
    The script will apply this exact value to the document.
    --{code}
    --[SCRIPT set_Scale_value]
    Yvan KOENIG (VALLAURIS, France)
    2011/10/20
    if my parleAnglais() then
              set maybe to display dialog "Type the scale to apply" default answer (0.456789 as text)
    else
              set maybe to display dialog "Saisir l’échelle à appliquer" default answer (0.456789 as text)
    end if
    set the_scale to (text returned of maybe) as number
    tell application "Numbers" to activate
    tell application "System Events" to tell application process "Numbers"
              set the_window to name of first window whose subrole is "AXStandardWindow"
              tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group
                        set previewActive to class of every UI element of last scroll area contains slider
              end tell -- Window
              if not previewActive then
                        tell menu bar 1 to tell menu bar item 9 to tell menu 1 to click menu item 1 --Show Preview before Print
              end if
              tell window the_window to tell first splitter group to tell last splitter group to tell first splitter group to tell last scroll area
                        set value of first slider to the_scale
              end tell
    end tell -- System Events
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) jeudi 20 octobre 2011 12:44:27
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Auto fit when printing

    Is there any way for WEBI to automatically change the font size so that all columns fit on one page (wide) when printing?

    you can use the page view in the Webi design mode to strict yourself to a page and make all your data fit into this page.
    also for sure you can change the font size for any cell in the report.
    you can just right click the cell and select Format Text.
    good luck
    Amr

  • I have 2 HP AC adaptors, How do I know which AC adaptor fits my printer?

    I have 2 HP All-in-One Printers, One is a 7210xi All-in-One and the other is an HP Office Jet 5610 All-in-One,   The 2 AC adapters are: 0950-4483-LA and 0957-2153.  How do I know which  AC adaptor fits the HP Office Jet 5610 All-in-One?
    This question was solved.
    View Solution.

    0n the printer, near the power jack, should have a power details, something like "32v 1.5A", match that with the same on the adaptor. Also, they are color coded and some has a key, so the wrong one probably wouldn't fit anyway.

  • 128 or 150 column doesn't fit in printer

    Hi
    I can see the result of character mode report on screen perfactly, but the same when try to print it doesn't come properly. After some 80 or 90s character remaining character skip on next line. I am using Dot metrix printer.
    Thanks in advance
    Vishal

    Vishal,
    I hvn't personally worked on printing reports but we did hv problem with character alignment on PDF output.
    I always used to increase the width & height of the report in the property inspector of the 'Main Section' & then increased the margins of the report accordingly.
    Hope that works for you as well.
    Madhu.

  • How to resize to fit paper size? I have Envy 7640 printer.

    I accidentally was able to resize a photo the other day to fit the paper.  Now when I want to do it, I can't figure out how to do it.    I have a Mac.  Thank you in advance.

    Hi , Welcome to the HP Forums! I understand that you are wondering how to resize to fit paper size, with your HP Envy 7640 on a Mac. I am happy to help! What version of the Mac Operating System are you using? If you do not know the Operating System you are using, please visit this website. Whatsmyos. What is the name of the program you are printing from? In the meantime, please see this article, OS X Mountain Lion: Scale a document to fit your printer’s paper, as I am sure the settings are universal between Mac OS X Operating Systems. Hope this works!  “Please click the Thumbs up icon below to thank me for responding.”

  • 364XL Cartridges do not fit my Photosmart 7520 printer

    I recently purchased replacement ink cartridges for my Phtotsmart 7520 printer (all 364 XL).  I used the HP tool to make sure I found the correct cartridges, and according to everything I read (also on the packaging of the cartridge) they should fit my printer.  However when I try to install them they do not fit.  They seem to be too fat for the holder.  I see that the cartridges were re-designed in 2010, but the printing on the outside of the box has a copyright mark dated 2013 - so they must be later than 2010 - so should fit.  What am I missing ??
    Thanks
    Sean
    This question was solved.
    View Solution.

    OK - I solved the issue - User Stupidity! I tried to put the black cartridge in the photo slot. This doesn't work !!

  • How to default Preview/Finder to print "Scale to Fit Print Entire image/Fill Entire Paper"?

    Hello all,
    I have to print PDFs. Preview or printing directly from Finder prints scaling 100% and many many times the edges of the PDFs are left outside of the printing area. I have the correct paper size selected (A4) and actually the PDFs are also A4 but for some reason 100% zooms in a bit and cuts the sides of the print outside.
    I can of course fix this by selecting Scale to Fit and Print Entire Image but I do have to do this every single time I open a PDF. I want to make this option my default! And preferrably so that I can use CMD+P from Finder to print directly without having to open the PDF. I already know what is in it...
    I have tried different Terminal tricks I have found searching the web but no luck, this and others with Preview closed before executing the command
    defaults delete com.apple.Preview PVImagePrintingScaleMode
    Please help and make my life easier. Cannot be this hard.

    I got a work around for this. Instead of using RTF template, I used Microsoft Excel itself as template and did the formatting in excel.
    thanks,
    Vijay

  • Document could not be printed - no pages selected to print

    I am running into this well-known issue with several documents, but unfortunately none of the fixes I have come across have worked. Some background:
    -Using Windows 7 Pro
    -Happening with both Adobe Reader XI and Acrobat X, clean installs. and happening on multiple computers, with multiple printers, with multiple domain users.
    -Have tried repairing both installations, no success.
    -Have tried disabling protected view, changing size of the fit, letting printer determine colors, printing in greyscale, changing setting for "view documents in PDF/A mode" to "never."
    -Print as image works, but quality is unacceptable.
    -It seems to be isolated mainly to Xerox printers, as I have no issues printing to an HP printer. I am trying different models of Xeroxes with no success, however. I have reinstalled printer driver and verified updated driver for all, issue persists. Printer models are Xerox ColorQube 8700X and 9203
    -The PDFs are from different sources, so I can't pinpoint it to one website. Documents contain various financial info, so I can't post here. Any help would be appreciated. I'm probably going to have to try a different pdf reader for these, but that is not ideal, since multiple people need to print these and are comfortable using Adobe software.

    I was also receiving the message "The Document Could Not be Printed" I am on 10.6.4 with Acrobat 9.4.1. I did not get the second part of the message though "There were not pages selected to print". Anyway, I got mine to work by going to Preferences - Print & Fax. I selected my printer and clicked Options & Supplies. Under the driver tab I changed the "Print Using:" box to Generic PostScript Printer. I'm not sure if this is what you are supposed to do. I'm not an expert but it worked for me so I am going with it.

  • Print a pdf directly to a printer to avoid repeated ripping of the same image

    Hi,
    I have created a 3.000 pages document from inDesign heaving its page the same color image as background and variable data. The document exported as pdf. Because of this method the file has very little size (about 3MB). The acrobat print engine take the image once and the resulted pdf does not using a copy in every page but share it (very cool).
    The problem that I have is that when I print this pdf using the windows postscript drivers of my industrial printer (Xerox) then it takes very long time to ripp. I think that even if the pdf has only once the image the windows drivers does not understand this and send the image with every page.
    I discussed this with someone and told me to print the pdf directly to the printer without the interference of printer's driver. As an example he mentioned that when we have a postscript file we do the same to print it (otherwise the postscript code will be printed) using a command line like lpr and put as an argument the IP of the printer (or using some tools for this like the free PrintFile but tghis is only for postscript files).
    Could someone explain to me what he meant? And how is the syntax of the lpr?
    Thanks in advance

    Do you mean that the information for the label is huge on a letter or A4 page and you want to shrink it to the size of the label, or do you have a small region that you want to print to the label? Your work flow is not coming through at all and it is hard to help as a result.
    If you have a label size print on a large page, then crop the page to the label print. Then go to the print menu, select the label paper, set shrink to fit, and print. At least I think that is what you are looking for.

  • Printing only first page

    --____FSVYRLDZXHAFLIWKCCOF____
    Content-Type: text/plain; charset=iso-8859-15
    Content-Transfer-Encoding: quoted-printable
    Greeitngs,=20
    We have numerous long pages - lists, lists and more lists -
    created in =
    DW8. Just about everyone here uses IE7, but we also have a
    few IE6 and =
    Firefox workstations.=20
    If a user tries to PRINT one of these long pages, such as
    this one:=20
    http://www.tsc.state.tn.us/geninfo/Programs/ADR/mediatorList.asp?chooseType=
    =3DGeneral+Civil&mnuCounty=3DAnderson&DisplayList=3DDisplay+List
    all they get is the first page of what ought to be six to
    nine print =
    pages.=20
    It gets weirder. On our index page,
    http://www.tsc.state.tn.us/
    if the =
    user tries to print it, the columns react differently. The
    center column =
    does not print past what fits ona printed page, while the
    right hand =
    column prints in its entirety. =20
    I've checked the CSS to see if there was a "don't print me"
    feature in any =
    of the CSS scripts, and there is not. the z-indexes appear to
    be ok. (the =
    two columns have the same z-index and are reacting
    differently to the =
    print command) =20
    My question(s) is(are): Can I better control the content of
    the page (the =
    two columns) and how? Is it CSS, html, or some other language
    that will =
    help me control this? Why is IE7 printing only one page of a
    multi-page =
    print job?=20
    Any ideas?
    NOTE: IE6 prints the entire page (multiple print pages). IE7
    and FF do =
    not.=20
    Peter
    --____FSVYRLDZXHAFLIWKCCOF____
    Content-Type: multipart/related;
    boundary="____RIVEUQBROELBXRGDYMGQ____"
    --____RIVEUQBROELBXRGDYMGQ____
    Content-Type: text/html; charset=windows-1252
    Content-Transfer-Encoding: quoted-printable
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html;
    charset=3Diso-8859-15=
    ">
    <META content=3D"MSHTML 6.00.6000.16525"
    name=3DGENERATOR></HEAD>
    <BODY style=3D"MARGIN: 4px 4px 1px; FONT: 10pt Tahoma">
    <DIV>Greeitngs, </DIV>
    <DIV>We have numerous long pages - lists, lists and
    more lists - created =
    in DW8. Just about everyone here uses IE7, but we also have a
    few IE6 and =
    Firefox workstations. </DIV>
    <DIV> </DIV>
    <DIV>If a user tries to PRINT one of these long pages,
    such as this one: =
    </DIV>
    <DIV> </DIV>
    <DIV><A href=3D"
    http://www.tsc.state.tn.us/geninfo/Programs/ADR/mediatorLis=
    t.asp?chooseType=3DGeneral+Civil&amp;mnuCounty=3DAnderson&amp;DisplayList=
    =3DDisplay+List">
    http://www.tsc.state.tn.us/geninfo/Programs/ADR/mediatorLi=
    st.asp?chooseType=3DGeneral+Civil&amp;mnuCounty=3DAnderson&amp;DisplayList=
    =3DDisplay+List</A></DIV>
    <DIV> </DIV>
    <DIV>all they get is the first page of what ought to be
    six to nine print =
    pages. </DIV>
    <DIV> </DIV>
    <DIV>It gets weirder.  On our index page,
    <A href=3D"
    http://www.tsc.st=
    ate.tn.us/">
    http://www.tsc.state.tn.us/</A> if
    the user tries to =
    print it, the columns react differently.  The center
    column does not =
    print past what fits ona printed page, while the right hand
    column prints =
    in its entirety.  </DIV>
    <DIV> </DIV>
    <DIV>I've checked the CSS to see if there was a "don't
    print me" feature =
    in any of the CSS scripts, and there is not. the z-indexes
    appear to be =
    ok. (the two columns have the same z-index and are reacting
    differently to =
    the print command)  </DIV>
    <DIV> </DIV>
    <DIV>My question(s) is(are): Can I better
    control the content of the =
    page (the two columns) and how?  Is it CSS, html, or
    some other =
    language that will help me control this? Why is IE7 printing
    only one page =
    of a multi-page print job? </DIV>
    <DIV> </DIV>
    <DIV>Any ideas?</DIV>
    <DIV> </DIV>
    <DIV>NOTE: IE6 prints the entire page (multiple print
    pages). IE7 and FF =
    do not. </DIV>
    <DIV> </DIV>
    <DIV>Peter</DIV>
    <DIV> </DIV>
    <DIV> </DIV></BODY></HTML>
    --____RIVEUQBROELBXRGDYMGQ____--
    --____FSVYRLDZXHAFLIWKCCOF____--

    Try one of these:
    1/ In Adobe, deselect "Choose Paper based on PDF size" - you can leave the "Auto Rotate and Center" on.
    2/ In Adobe, go into Advanced and choose "Print as Image".
    3/ If this is a Canon H1 Fiery RIP, go into Printer Properties, Printing Preferences, Layout, Rotate 180degrees and choose "Large Paper Only."

  • I have a MacBook that when I try to print it stops the printer queue and it creates a PrintJobMgr.crash.log, I have a MacBook that when I try to print it stops the printer queue and it creates a PrintJobMgr.crash.log

    I have a MacBook with the following configuration:
      Model Name:  MacBook
      Model Identifier:           MacBook2,1
      Processor Name:           Intel Core 2 Duo
      Processor Speed:           2 GHz
      Number Of Processors:               1
      Total Number Of Cores:              2
      L2 Cache (per processor):           4 MB
      Memory:           1 GB
      Bus Speed:       667 MHz
      Boot ROM Version:       MB21.00A5.B07
      SMC Version:   1.17f0
    I have a LaserJet P1005 Printer
    I can print the configuration page through the printer queue utility but when I try to print any other way even with txt editor the queue stops
    when I check through console i get at the PrintJobMgr.crash.log the following:
    ===== Friday, 27 January 2012 01:12:02 Europe/London =====
    Host Name:      MacBook
    Date/Time:      2012-01-27 01:12:06.279 +0000
    OS Version:     10.4.11 (Build 8S2167)
    Report Version: 4
    Command: PrintJobMgr
    Path:    /System/Library/Printers/Libraries/PrintJobMgr/Contents/
    MacOS/PrintJobMgr
    Parent:  cupsd [305]
    Version: ??? (???)
    PID:    442
    Thread: 0
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x0000029c
    Thread 0 Crashed:
    0   ...oftware2000.print.hp1006.pm 0x00378f89 operator delete(void*) 
    + 43019
    1   ...oftware2000.print.hp1006.pm 0x0031690d PMPluginFactory + 6441
    2   ....printingmanager.jobmanager 0x00005a14 0x1000 + 18964
    3   ....printingmanager.jobmanager 0x00006293 0x1000 + 21139
    4   ....printingmanager.jobmanager 0x00007d0d 0x1000 + 27917
    5   ....printingmanager.jobmanager 0x00003d05 0x1000 + 11525
    6   ....printingmanager.jobmanager 0x0000258e 0x1000 + 5518
    7   ....printingmanager.jobmanager 0x000024b5 0x1000 + 5301
    Thread 1:
    0   libSystem.B.dylib              0x900bbf6c sigwait + 12
    1   libSystem.B.dylib              0x90023d67 _pthread_body + 84
    Thread 2:
    0   libSystem.B.dylib              0x901101cf 
    semaphore_timedwait_trap + 7
    1   ...oftware2000.print.hp1006.pm 0x00318d4e PMPluginFactory + 15722
    2   ...ple.CoreServices.CarbonCore 0x90cb8ce0 PrivateMPEntryPoint + 51
    3   libSystem.B.dylib              0x90023d67 _pthread_body + 84
    Thread 0 crashed with X86 Thread State (32-bit):
       eax: 0x00000001  ebx: 0x003162ea  ecx: 0x00000036  edx: 0x00000000
       edi: 0x0042e5f0  esi: 0x000001fc  ebp: 0xbfff79e8  esp: 0xbfff79e8
        ss: 0x0000001f  efl: 0x00010206  eip: 0x00378f89   cs: 0x00000017
        ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
    Binary Images Description:
         0x1000 -    0x13fff com.apple.printingmanager.jobmanager 4.6 
    (126.5)     /System/Library/Printers/Libraries/PrintJobMgr/Contents/MacOS/
    PrintJobMgr
       0x205000 -   0x2e3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
       0x313000 -   0x3b1fff com.software2000.print.hp1006.pm 1.0.6 (0)     /
    Library/Printers/hp/laserjet/HP1006/HP1006PM.plugin/Contents/MacOS/
    HP1006PM
       0x3cd000 -   0x3d0fff com.apple.print.iom.USB 4.6 (163.10)     /System/
    Library/Printers/IOMs/USBIOM.plugin/Contents/MacOS/USBIOM
       0x3d5000 -   0x3d8fff 
    com.apple.print.usbgenericprintingclass.plugin 4.6 (163.10) /System/
    Library/Printers/Libraries/USBGenericPrintingClass.plugin/Contents/
    MacOS/USBGenericPrintingClass
       0x3dc000 -   0x3e4fff com.apple.iokit.IOUSBLib 2.7.5     /System/
    Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/
    Contents/MacOS/IOUSBLib
    0x8fe00000 - 0x8fe4afff dyld 46.16  /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib       /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib   /usr/lib/system/
    libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???)      /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS   /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.85 (???)     /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.11 (368.35)  /
    System/Library/Frameworks/CoreFoundation.framework/Versions/A/
    CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)   /System/
    Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib      /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib   /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib       /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)     /System/
    Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib     /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.31 
    (682.32)    /System/Library/Frameworks/CoreServices.framework/Versions/A/
    Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1     /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    OSServices.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.24    /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    CFNetwork.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    WebServicesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.8     /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    SearchKit.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36)  /System/
    Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/
    Metadata.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib      /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774)    /System/
    Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2     /System/
    Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib      /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/
    Library/Frameworks/SystemConfiguration.framework/Versions/A/
    SystemConfiguration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5     /System/
    Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???)  /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    ApplicationServices
    0x91521000 - 0x9154dfff com.apple.AE 316.3      /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/AE.framework/
    Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.13    /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 
    (177.13)    /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.28 (???)    /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???)    /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3  /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5   /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 183.1      /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5  /
    System/Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.9   /System/
    Library/Frameworks/ApplicationServices.framework/Versions/A/
    Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib   /usr/lib/libcrypto.
    0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib   /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib     /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib      /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib      /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff libRaw.dylib      /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91b9cfff libPng.dylib      /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libPng.dylib
    0x91ba1000 - 0x91ba3fff libRadiance.dylib       /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRadiance.dylib
    0x91ca0000 - 0x91cdffff libTIFF.dylib     /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libTIFF.dylib
    0x91ce5000 - 0x91ce5fff com.apple.Accelerate 1.3.1 (Accelerate 
    1.3.1)      /System/Library/Frameworks/Accelerate.framework/Versions/A/
    Accelerate
    0x91ce7000 - 0x91d75fff com.apple.vImage 2.5    /System/Library/
    Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vImage.framework/Versions/A/vImage
    0x91d7c000 - 0x91d7cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 
    3.3.1)      /System/Library/Frameworks/Accelerate.framework/Versions/A/
    Frameworks/vecLib.framework/Versions/A/vecLib
    0x91d7e000 - 0x91dd7fff libvMisc.dylib    /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvMisc.dylib
    0x91de0000 - 0x91e04fff libvDSP.dylib     /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libvDSP.dylib
    0x91e0c000 - 0x92215fff libBLAS.dylib     /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libBLAS.dylib
    0x9224f000 - 0x92603fff libLAPACK.dylib   /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/
    A/libLAPACK.dylib
    0x92630000 - 0x9271dfff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271f000 - 0x9279dfff com.apple.DesktopServices 1.3.7     /System/
    Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
    DesktopServicesPriv
    0x927de000 - 0x92a16fff com.apple.Foundation 6.4.12 (567.42)      /System/
    Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bc4000 - 0x92bc4fff com.apple.Carbon 10.4 (???)   /System/Library/
    Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bc6000 - 0x92bd6fff com.apple.ImageCapture 3.0.4  /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    ImageCapture.framework/Versions/A/ImageCapture
    0x92be5000 - 0x92bedfff com.apple.speech.recognition.framework 3.6      /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x92bf3000 - 0x92bf9fff com.apple.securityhi 2.0.1 (24742)  /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    SecurityHI.framework/Versions/A/SecurityHI
    0x92bff000 - 0x92c90fff com.apple.ink.framework 101.2.1 (71)      /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Ink.framework/Versions/A/Ink
    0x92ca4000 - 0x92ca8fff com.apple.help 1.0.3 (32.1)   /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/
    Versions/A/Help
    0x92cab000 - 0x92cc9fff com.apple.openscripting 1.2.7 (???) /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    OpenScripting.framework/Versions/A/OpenScripting
    0x92cdb000 - 0x92ce1fff com.apple.print.framework.Print 5.2 (192.4)     /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    Print.framework/Versions/A/Print
    0x92ce7000 - 0x92d4afff com.apple.htmlrendering 66.1 (1.1.3)      /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HTMLRendering.framework/Versions/A/HTMLRendering
    0x92d71000 - 0x92db2fff com.apple.NavigationServices 3.4.4 (3.4.3)      /
    System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    NavigationServices.framework/Versions/A/NavigationServices
    0x92dd9000 - 0x92de7fff com.apple.audio.SoundManager 3.9.1  /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CarbonSound.framework/Versions/A/CarbonSound
    0x92dee000 - 0x92df3fff com.apple.CommonPanels 1.2.3 (73)   /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    CommonPanels.framework/Versions/A/CommonPanels
    0x92df8000 - 0x930edfff com.apple.HIToolbox 1.4.10 (???)    /System/
    Library/Frameworks/Carbon.framework/Versions/A/Frameworks/
    HIToolbox.framework/Versions/A/HIToolbox
    Any Ideas?
    Thanks,
    George Govotsis

    I have the same printer, P1005, and hae been using it with Tiger (PPC), Leopard (PPC and intel), snow Leopard and Lion. What I do know is that it DOES HAVE print bugs in Tiger and, perhaps, Leopard, I had to ALWAYS manually delete print jobs after EVERY print as system did not clean memory. I reported this to Apple, but it seems to be a printer driver issue, unsolved by HP. It was solved in subsequent systems. So, my suggestion is to upgrade to Snow Leopard at least, as you have a core 2 duo 2006 MB, or directly to Lion as most recent, and best fit with printer drivers. You must put at least 2 GB of memory for SL and Lion, best is 4 GB (your model may support 3 GB only if the first core 2 duo series).
    Until then, clean printing system by clicking minus button in sys prefs/print.
    download last HP printer driver for Tiger,check with their site
    install driver or reinstall, even if installed
    put printer back again
    If it continues to behave as described, then you must delete every print job after completion or upgrade to at least SL. Many say SL is best for that generation, me included. But you must not share this opinion, of course.

  • I am using Acrobat Pro 9.5.5 on Windows 8.1. I cannnot print an oversize document.

    I am trying to print an oversize document 950mm x 2300mm.  With the printer set to "fit to printed area" and "oversized pages" and size "backdrop 950x2300" I get a print preview image in the printer window.  When I click OK the save window appears.  I select the file name and location in the usual way and click OK.  The error message "the document could not be printed" appears. On the next click I get "There were no pages selected to print".
    The system is working fine for standard sized prints.  Indeed I can print the problem document to oversized A0.  Any suggestions or recommendations would be much appreciated.

    Hi Questor,
    If this happens to a specific PDF file, try the Print as Image option in Acrobat. Click the Advanced button in the Print dialog box to find this option. It could be that this specific PDF is not well formed.
    If that doesn't work, please repair or update Acrobat (choose Help > Repair, or Help > Update).
    Lastly, if you are using a networked printer, dry dropping and remapping the printer connection. (Some users have reported this error occurring because of a faulty network connection to the printer.)
    Please let us know now it goes.
    Best,
    Sara

  • PDF printing issue

    I'm creating an 8.5x11" document in InDesign (accounting for .25" margin), exporting as a PDF, then trying to print at actual size. For some reason, it's cropping the page and printing off center. It will print fine if I select fit under print options. However, I need it to print acutal size. All of my PDF files are printing this way, even the old ones that I didn't have this problem with from a weeks, months & years ago. Also, if I try to place the PDF file back into an InDesign file, it's off center. I'm assuming it's some setting in Adobe Acrobat that I'm just overlooking. I can't figure it out for the life of me. I'm using Adobe Acrobat X 10.01.7 Any help is very much appreciated!

    Confirm that in Page Scaling you are set to "None".
    When placing the pdf (or any image file) into InDesign, toggle Show Options. It is likely defaulting to "Bounding Box". Choose Trim (or Crop).
    That image frame should be 8.5 x 11

Maybe you are looking for