How can I change the default page setup for printing messages in Apple Mac Version 4.6 (1085)

How can I change the default page setup for printing messages in Apple Mac Version 4.6 (1085)

As soon as I posted, Ifigured this one out on my own by going into user settings and changing the default there. Then I was able to delete the default @mac account. Thanks!

Similar Messages

  • How can I change the default page size for the Adobe PDF Printer?

    Hello All,
    I have cases where I need to switch the default paper size from 8.5x11 to 11x17 via api for the Adobe PDF Printer and have not been able to find how this can be accomplished.
    I am using C# .Net and would appreciate any help.
    Thanks in advance,
    Bob

    There is no Acrobat API for this, but so far as I know there doesn't need to be. The user can go change this from the Printers Control panel as needed. The Adobe PDF printer has some differences from regular printer drivers, but this isn't one of them.

  • :-)  How can we change the default file path for Bank file ( dmee ) ?

    Hi All,
    We encounter a problem.
    Electronic bank file ( created after a F110 run ) are created, in an automatic way to the DIR_TEMP directory. ( On the SAP server )
    How can we change the default file path for Bank files ( dmee ) ?
    We'd like to specify another path.
    Thx for your help.
    Erwan

    Hello,
    Make sure that you have created the directory in transaction code AL11 with the help of basis consultants.
    You can link your PC directory to the application server.
    You can maintain the path whether your file needs to get saved in OBPM4 against your DMEE structure example GB_BACS etc.
    If you do not maintain any path in OBPM4, then the file gets saved to temporary directory. If you give the directory path name in OBPM4, then the file gets saved to that directory with numbers 0001, 0002, 0003 etc till it reaches 9999 and reset from the beginning.
    If you give the path as well as file name as ABCD, then the file gets generated to that directory folder with ABCD0001, ABCD0002, ABCD0003 etc. till it reaches ABCD9999 and reset from the beginning.
    Hope this solves your problem.
    Regards,
    Ravi

  • How can I change the default page for a book?

    I have a book that contains six pages. One of the pages contains the login portlet while the others contain account specific information that a user can only see if they are logged in. Currently, I have the default page set to the login page.
    I am attempting to write a backing file for the book that will esentially change the default page for the book to be one of the other pages if the user is already logged in. In effect showing a logged in user their account summary page instead of the login portlet.
    I can't seem to find a way to change what page the user is shown with the book and page context classes. I can hide the login page, but this leaves the user looking at a blank page. Unfortunately I can't use entitlements, otherwise this would be easy.
    Does anyone know how to "forward" to another page from a backing file?
    Thanks,
    Sam
    Message was edited by:
    straubse

    Got it!
    In your backing file you'll need the following in your handlePostbackData method:
    BookBackingContext bookCtx = BookBackingContext.getBookBackingContext(arg0);
    bookCtx.setupPageChangeEvent("PageLabel");

  • How do I change the default paper size for printing?

    I am running Firefox 3.6.3. Recently, the default paper size for printing unexpectedly changed to a user-defined size of 3.00" x 4.57". It used to be letter size (8.5 x 11). The default paper size is 8.5 x 11 for everything else. I have tried changing the size in the preferences dialog box and then clicking "default", but after I close Firefox or if Firefox opens a new window, the default size switches back to 3.00" x 4.57". Does anyone know how to fix this?
    == This happened ==
    Every time Firefox opened
    == About 2 weeks ago

    In "mine" dutch firefox 3.6.12 there is no option to change paper-size see
    "about:config" Promise to be careful (and be!) Enter "print.postscript.paper_size" gives a empty screen
    "paper_size" gives a few results
    What about the numbers 4259872, 4784247 and what is the meaning of
    paper_size, paper_size_type , paper_size_unit

  • How do i change the default Page Setup settings?

    I have a recurring "bug" - whenever i open a PDF - and usually when i create new files (in any program), the default setting is to have it print horizontally at 65%.
    to be more concise, if i open a blank document in "Text Edit" as an example and go to Page Setup - its already set to 65%, rotated horizontal - - instead of vertical orientation at 100%.....
    This is frustrating, as I often forget this - go to print a PDF - and it comes out very small and rotated 90 degrees.
    This even happened when i recently got a new printer and had to install / setup a new driver.
    I was able to get it to stop a long time ago by deleting all of my printers and starting over from scratch - but the problem quickly resurfaced.
    (I think it may have something to do with receiving a PDF from a third party that had this setting to allow me to print a larger drawing onto letter sized paper - - but it seems to overtake all of my files as default.)
    I hope i explained this clearly.....what i would like to do is know how to definitively change this "default" setting.....

    Hi, no idea why AAPL said what was said, just too busy I think!?
    Anyway, have you tried File>Page Setup..., then setting the Scale, Size, & Orientation, then same Window>Settiungs>Page Attributes>Save as Default... or even the Restore Original Defaults there?

  • Can I change the default page size for SYSBUILD?

    When I start SYSBUILD it always has a default page size of Letter set, is there any way to change this as most of the blocks I wish to print are to be printed on A3 paper?
    Many thanks
    Tim

    Hi Tim,
    Unfortunately there is no option to change the default print settings for SystemBuild. You must manually select the A3 paper size under File>>Page Setup.
    Thanks for the suggestion though, I will pass that on to R&D as a product suggestion for a future release.
    Regards,
    Jeff M.
    Applications Engineering
    National Instruments

  • How can I change the default process priority for plugin-container?

    I'm on Windows XP and using Firefox 16.0.2.
    While browsing the web I often listen to pandora, but the music playback is always choppy or jerky. It especially occurs when scrolling pages up/down on other tabs. I saw on another question - https://support.mozilla.org/en-US/questions/930496 - that one solution is to change the plugin-container.exe priority to AboveNormal. I've done this several times and it works really well!!
    I also tried changing the firefox.exe priority up and down, but this is ineffective (choppy playback problem still occurs). It is very much related to the plugin-container priority.
    Please could you provide an about:config option to set the default process priority for the plugin-container. It would make a big difference for those users who have the problem. Thanks!

    thanks
    i also found solution for my poblem:
    i have this code:
    jMenuItem jMnItEdit;
    jMnItEdit.setAccelerator( KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ENTER, 0));
    also i had ActionListener bounded to this JMenuItem
    but Ialso had in form JTable and it always grabbed my VK_ENTER event and that menu item wasn't working at all
    but when i overrode that input map for JTable and set
    tableInputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0, false), "none");
    everything started to work perfectly,
    thanks a lot

  • How can I change the default configuration of PO print ?

    **When I  print list which type is ALV ,I can choose any one OUTPUT Device and printer.**
    **But I print PO which type is SCRIPT by trail printout, I can not to choose printer ,it will be printed on my default windows printer.**
    **It dosenu2018t means that the default setting of user is incorrect. I find that PO print has dedicated out type ,it includes form,page,process routines, etc.(transcation code :NACU)**
    **I am not sure which parameter control the immediate print,how can i control PO print not immediately and I can choose own output device and printer ?**

    > **When I  print list which type is ALV ,I can choose any one OUTPUT Device and printer.**
    > **But I print PO which type is SCRIPT by trail printout, I can not to choose printer ,it will be printed on my default windows printer.**
    > **It dosenu2018t means that the default setting of user is incorrect. I find that PO print has dedicated out type ,it includes form,page,process routines, etc.(transcation code :NACU)**
    The printer chosen is configured in the SD customizing, there are quite many options how to configure that.
    > **I am not sure which parameter control the immediate print,how can i control PO print not immediately and I can choose own output device and printer ?**
    You can find the settings in
    - transaction SPRO
    - SAP IMG
    - Sales and Distribution
    - Basic Functions
    - Output Determination
    Usually it's not a good idea to print locally, this is especially not possible when something is processed in the background.
    Markus

  • How can I change the default EXPORT directory for latest iPhoto?

    Perhaps I am missing something, but I have as yet to find a way to set my default EXPORT directory. Since installing Lion and the iPhoto update, whenever I want to export it wants to put the image in 'Pictures', but I want 'Desktop' generally or somewhere else.
    I am all set with library and import location. In fact, Import is smart enough to remember where I import my stuff FROM - namely, the desktop.
    But once I have edited files and want to export them, the default jumps back to Pictures.
    Again, this is NEW and CHANGED behavior with the latest release to coincide with iOS 5 ...
    I just want it to remember my default from export to export ... heck, it even changes within the same session!

    I can certainly confirm the behaviour and have no solution to it.
    That said, in the export dialogue typing command-d will point the export to the desktop.
    Regards
    TD

  • How do I set the default page size for printing on a 8450.

    A few days ago I printed some envelopes and now when I print from some programs, the print page size has remained the envelope size.  I want to print from any program on letter size paper without changing the settings every time.
    Thanks
    This question was solved.
    View Solution.

    This document can help you set the print settings for any type of printing. Not just for photos as the title suggests. You should not have to keep setting it every time.
    Printer settings
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a

    hi,how can i change the default settings on my adobe readerX1 such that it will display all my pdf files according to their individual cover pages (as cover picture thumbnails)before i click them to open and read........i really enjoyed this feature as a default settings upon installation in previous editions of adobe reader .i use a windows 8 pc now.thank

    For sideloaded content the nook pulls the metadata from ePub file itself.  I would suggest looking at a program like Sigil or Calibre that will let you edit the metadata in the book to make it appear like you want.
    For the PDF vs ePub - No, that's the way PDFs work (think of them as graphics, not text), wheres ePubs are Web Pages - so  no you can't them to behave exactly alike without converting the files.

  • How can I change the default settings in the new pages?

    How can I change the default settings in the new pages?

    Create a new document and change the settings to what you want i.e. Times New Roman, 12 pt. and save as a template from the Edit menu. Then go to Pages Preferences (Cmd +,) and under general change the template to open to your saved template that you want as your default setting.
    Hope that helps.

  • How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI?

    How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI? I'm having some hiccups getting Adobe to register the software, but since I set it as the default .pdf reader during setup, things try (and fail) to open in the as yet unregistered software. How can I change it temporariiy to the Acrobat Reader XI that I have installed?

    Anubha,
    It worked! Thank you so much.
    I'd opened file with the 'Open with' feature then clicking Adobe Reader,
    but that didn't do it. When I used 'Open with', then 'Choose default
    program...', it worked like a charm.
    Again, thank you!
    Jonathan
    On Wed, Mar 18, 2015 at 10:16 PM, Anubha Goel <[email protected]>

  • How can I change the default application for a content type?

    Running a version of Linux, the default application for PDF files is "Use Document Viewer (default)", which appears to be /usr/bin/evince. I'd much prefer to use /usr/bin/okular; how can I change the default. This question is NOT about how to change the function that is automatically applied when I access a link, in this case "Preview in Firefox", but rather to the default application that I can select when I download a file being viewed in Firefox's previewer.

    This is real progress, a solution to the problem as posted. The command:
    xdg-mime default okularApplication_pdf.desktop application/pdf
    makes okular the default.
    However when I added okular to the choices for applications in:
    * Edit>Preferences>Applications>PDF
    the popup box that appears when I click Download on the preview page changed. The pulldown menu that appears next to "Open with" used to have 3 entries:
    # Document Viewer (default)
    # Acroread
    # Other
    Now it has only 2:
    # Okular (Default)
    # Other
    I'd like it to read
    # Okular (Default)
    # Acroread
    # Other
    How can I control the entries in this pulldown list?
    Also, how can I make the default choice in the popup box be
    * Open With <whatever> , rather than
    * Save File ?

Maybe you are looking for

  • Error install windows 8.1 on a 2010 macbook pro 13 inc

    hi. i am trying to install windows 8.1 on a 2010 macbook pro 13 inc i have now successfully make bootcamp show the option to create a windows 7 install disk how ever it does not show the other part of create windows 7 or "later version" install disk

  • Compiling java classes into dll

    Hi, Just trying to find out is there anyway I can compile the java classes into dll? If I am to use JNI and C++, will the dll compiled be able to work well in a platform that does not have JVM? Thank you.

  • File sender data type

    hi all xi's. my question is how i can create datatype for sender file message which is in the form of HEADER|22012007|WMD 123565139|220.05 131675434|345.45 178765544|421.00 143563345|334.00 TRAILER|4|1324.50 HERE how i can include header info in my d

  • Is it ok with add 60 warehouses in B1?

    Dear All, Our compary have no factory, all production will outsourcing. We purchase the meterial and send to the outsourcing partner to make semi-production and production. We have 60 outsourcing partner. We need to know the material stock in every o

  • Why when i open itunes it  just shows me the music an nothing else?

    can somebody help i open itunes and the only thing it gives me is the music it wont even open the ipod