Document on center of window

Hi all.
Is there any way to see the document on the center of the Pages window? If I maximize Pages to fit my screen the document is always stuck on the left edge, leaving a huge space to the right of it.
Thanks in advance

I found a temporary fix to this issue. It bothers me too how you can't center the document in the center of the window if you expand it. But try this: Click the Comment icon in the toolbar (I would advise adding this to the toolbar if you like this tip, and a comment field will pop up, giving a small margin between the document and the left side of the window. "X" out of the yellow comment bar, and todah! You've got a a left page margin! Drag the right side of the window over so that both sides are equal, and while this doesn't take up the entire screen, it fills a little more and satisfies me. Unfortunately, you have to repeat this process every time you use Pages.

Similar Messages

  • Alighning Popup component in the center of window

    Hi
    I have following code
    <af:popup id="dialog">
    <af:dialog title="Confirm Delete" type="yesNo" dialogListener="#{DeleteDocumentBean.deleteDocumentHandler}"
    id="d3">
    <af:outputText value="Do you really want to delete the document?" />
    </af:dialog>
    </af:popup>
    if i want my popup component at the center of window what should i do
    i have gone through this link but i didnt find anything useful
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_popup.html
    Regards
    Mayur Mitkari

    Hi,
    you just open the dialog without specifying an align-id or align orientation (just only provide the popup ID in the showPopupBehavior tag added to the command launching the popup)
    Frank

  • HP solution center for window vista 32 bit and HP 6210

    need to download Solution Center for HP office jet 6210 and Windows vista 32 bit. Any help would be appreciated.

    Hi mary1929,
    HP Solution Center is the main software program that you use to control and maintain HP printers that use version 13 and 14 software. Your printer uses a version of software that came before version 13 and 14. I believe you have something called HP Director. HP introduced HP Solution Center to replace HP Director in 2004.
    I did find a document that says you may be able to install software for Vista that includes Solution Center. Please take a look at the information in this document; HP Director and Windows Vista Compatibility. If you recently upgraded to Windows Vista, you will not be able to use HP Director. However, you might be able to upgrade to HP Solution Center in its place.
    This might be the software you need; File name: AIO_CDB_Full_Non-Network_enu_NB.exe
    I hope this helps. If this does resolve the issue please let me know, if you have any additional questions, don't hesitate to ask.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Customer Support - Office Jet 6700 (No HP Solution Center Software windows 7/ windows 8)

    Hi,
    I have been a long supported of hp products.  But when you get a problem, the hp customer support are unable to resolve the issue.  This applies to their first level support.  Their support is overseas and they are not trained well enough to understand what the product does or what the problem is.  I believe it could be a language issue.
    But I asked for my problem to be escalated to an engineer to have the issue resolved.  The girl in the Philippines by the name of Regine stated that someone would call me back with in two hours.  Well we spoke on 7/21/2013 and as of this posting, no one has contacted me.
    I do work for a large software company as a second tier support/engineer.  IF I TOLD THE CLIENT SOMEONE WOULD CALL THEM BACK, I WOULD MAKE SURE SOMEONE DID.
    This is very sad and I doubt that hp is going to resolve this.  Since I did not receive any type of survey, I am sure that this ticket has been swept under the table.
    Thanks

    This is NOT official HP Cutomer Support. This is a peer-to-peer user supported forum for HP consumer class products. HP maintains no official presence on this forum. It is unlikely that HP will respond in an official capacity. Any reply from a HP employee represents their own opinion and not that of HP's.
    Please see HP support document "Windows: How to Get HP Solution Center" for information on downloading the HP Solution Center for Windows 7 and Window 8. According to HP;
    "The HP Solution Center program is part of the Full Feature software and driver package, and cannot be downloaded separately."
    The full featured driver for the HP Officejet 6700 can be downloaded from HP's Officejet 6700 All-in-One Printer Drivers & Downloads page. This driver should include the "HP Solution Center" as noted above.
    Please click the white KUDOS star to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Displaying XML Document in new browser window

    Hi,
    I have a hyperlink on my page. When I click on it, it will open a new IE window and display xml document.
    The new window is displaying some of the xml and at the end displaying the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End element was missing the character '>'. Error processing resource 'http://localhost:28080/benchmark/faces/displayXMLDocu...
    However, I cut and paste the xml String where I write it to the HTTPServletResponse to XMLSPY and it displays correctly.
    Please let me know.
    Rgrds

    Here are the steps:
    1. I created page1 that has a hyperlink.
    2. Hyperlink property are set to display page2 in a new window. (popup).
    3. page2.prerender() method, I set the response to the following:
    public void prerender() {
    javax.faces.context.ExternalContext ec = this.getExternalContext();
    HttpServletResponse response = (HttpServletResponse)ec.getResponse();
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Cache-Control","no-store");
    response.setHeader("Cache-Control","must-revalidate");
    response.setHeader("Cache-Control","max-age=0");
    response.setHeader("Pragma","no-cache");
    response.setHeader("Expires","0");
    response.setContentType("text/xml");
    response.setBufferSize(5000);
    String xmlString = getRequestBean1().getBookingPnrDetailsXML();
    try{
    xmlString="<?xml version=\"1.0\" encoding=\"UTF-8\"?><root><test1>this is a test</test1><victor>Hello Victor</victor></root>";
    PrintWriter out = new PrintWriter(response.getOutputStream());
    log(xmlString);
    out.print(xmlString);
    }catch(IOException io){
    System.out.println("" + io.getMessage());
    io.printStackTrace();
    4.page2.jsp code is the following:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/xml;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view/>
    <ui:page binding="#{displayXMLDocument.page1}" id="page1"/>
    <ui:html binding="#{displayXMLDocument.html1}" id="html1"/>
    <ui:head binding="#{displayXMLDocument.head1}" id="head1"/>
    <ui:link binding="#{displayXMLDocument.link1}" id="link1"/>
    <ui:body binding="#{displayXMLDocument.body1}" id="body1"/>
    <ui:form binding="#{displayXMLDocument.form1}" id="form1"/>
    </jsp:root>
    please let me know.
    Rgrds.

  • Open all documents in the same window ?

    How in Reader 9 can I configure it to open all documents in the same window instead of as individual windows?
    Thanks

    Bug report sent to Adobe:
    ******BUG******
    Concise problem statement:
    MDI removed from Reader 9
    Steps to reproduce bug:
    1. Open more than one document.
    2. Look at taskbar overflowing.
    3.
    Results: Customer is pissed off.
    Expected results: Happy customer.
    Steps to make customer happy: Get your heads out of your ***, and make MDI not just an option, but the DEFAULT. Who the hell thought going back to Windows 3.0 SDI interface technology was a good idea? Please post his/her name, and whoever approved that decision's name publically, because a) they will (or should) be looking for a new job since they just got fired, and b) I don't want to make the mistake of hiring them. I mean seriously. I thought what I was reading on the web was a hoax. I had to check snopes.com to be sure. Do you guys not have a random drug testing policy? For that matter, do you not realize that when a person, that you're trusting to make important decisions that affect millions of people, is sitting at their desk drooling on themselves and can't get out more than a single syllable word, that maybe, just maybe, they're not the person you should have in that position? Is this a product line wide decision? Should I look at scrapping all of my other Adobe / Macromedia products and upgrading to those that support 15 year old technology? Are you going to turn into another Symantec? Hey, lets buy take over great companies with great products, turn the product lines into crap, and then discontinue and abandon them. Seriously, what should we expect for Reader 10.0? Are you going to be upgrading to a console application? Please, please, please for 11.0 can we have it be phosphorous green too? I think Im going to go back to my bottle of wine now

  • How do I display multiple pdf documents in the same window?

    I am sure that this question has been asked many times before, but I have searched the forums and the online help documentation for nearly 45 minutes without a satisfactory answer.
    I have just installed the trial version of acrobat pro and I want to open multiple documents in the same window but I can't seem to find out how to do it.
    Can someone tell me how?
    Thanks

    This is the worst thing to happen to acrobat, in my opinion.
    The clutter that it creates on my computer and the fact that i cant even see the document title when I have a bunch of them open (because the task bar is too full) is unacceptable.
    I never would have changed from Acrobat 8 if I had known, and now I cant switch back (company license).
    The latest thing i can find about addressing it is here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb405108&sliceId=1
    which was in november 2008....
    why hasnt any thing else been done about it?  I just spent 45 minutes being sent to different departments over the phone, only to be told to submit a feature request.
    Please do this if you havent already:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    My setup: iMac hardline to Canon i960 printer. Issue: endless printing of the same document. The printer window states that the pinter is in use and there is nothing listed in the Print Queue.  How can I stop printing the document?

    Soution: Delete the printer and add the same printer back in, therefore creating a new print queue.

  • Mobile Device Center and Windows 8.1 (Enterprise) not working

    After a HD crash i've got a new HD. Had to setup all development tools and so on. And because of a new setup why not over to Windows 8.1?
    Now the problem is that Window 8.1 will not activate WMDC !? I keep saying "a  component is missing"  but no more information.
    Does any body has any idea how to make a connection to my Windows Mobile 6.5 device? (Psion/Symbol Workabout Pro G4)
    thanks

    Please check this
    Howto run Windows Mobile Device Center in Windows 8
    and the last reply in this thread:
    http://answers.microsoft.com/en-us/winphone/forum/sync/cannot-install-windows-mobile-device-center-on/698d9763-1a15-4d4a-8cc3-7e8804b78393
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Open a document in a new window

    How can I open a document in a new window? I need to have 2 open windows, with the same document. In MS Office, its "open in a new window". Thanks!

    KOENIG Yvan wrote:
    Feature unavailable "inthebox"
    This is why I wrote a script available on my idisk:
    It is a good script, Yvan, for what it does. However, even with that script it is a long way to the full MS Word functionality. In MS Word, you can change the content in any of the open windows, and the modifications are instantly visible everywhere.
    If you have a 20 page document, you can change the first page in one window, the last page in a second window and page 13 in a third window. If you change a style, the consequence of the style change is instantly visible in all three windows, so you can tell straight away if it works everywhere.
    With your script, one gets just a read-only copy of the first document, as far as I can tell.
    I persist: the full "New Window" function of MS Word is not available in Pages, not even with your otherwise good script.

  • Transfering FCP Document files to a windows comp..I can't get it. Help!!!!!

    I transfered all the fcp document files to my windows desktop computer over the network to free up some space on my mac, thinking I would be able to use the files later on on my mac thru the network. The files aren't shown in fcp file types but in exec, it wont open using imovie or final cut pro. Just wondering if there's a way to make it work. In another words can u use a windows computer to store fcp document files and then access it from a Mac over a network?
      Mac OS X (10.3.9)  

    For A, that's what you do when you install your PC. I think (but I'm no PC expert) there is a utility to convert from FAT32 to NTSC available in Windows.
    For B, I think it's available in server or pro versions of Windows, but I'm not sure.
    For C, try Connect to server in the Finder and type: afp:/at/YourPCname
    You can also try: afp://YourPCdnsName
    Or your PC's IP address (not this address): afp://123.21.43.12
    Once you got your files back on the Mac, you can fix the destroyed file info with my File Fixers:
    http://www.berga.nu/~usrlt/imovie/index.html

  • SD billing Accounting document Profit center not coming from billing doc

    Hi Expert,
        I have stuck with the accounting doc entries. Issue is that accounting document should have
        the same profit center as billing document. Actually i have created profit center for my each of
        my divisions and want the same profit center whenever that particular division  is selected. But it
       is not  working.
        I have tried with substitution  method also by t-codes 0KEL and 0KEM. It works correctly till
       billing document means division wise profit center is coming in order,delivery , and billing but
       when we check accounting document,Profit center doc. Controlling Document and Profitab.
       Analysis  in Delivery and Bill it is coming from what i have maintained in material master.
       But it should come from what is in the delivery and billing document.
        Please share your ideas.
       Thanks &  Regards

    Hi SAP Consultant
    I would not agree with the first reply above.
    When you define a substitution in 0KEL and 0KES, it is intended to overwrite the PC from Material Master. It is a wrong notion that this Substitution will only impact FI, and not CO / COPA
    1. Are you able to see the over-written PC in Sales Order? (I think YES)
    2. Are you able to see the over-written PC in Billing doc? (I think YES)
    3. If in FI doc you are not able to see that, then see where is the problem. Probable reasons would be a Substitution written in OBBH, You are having a CO Object in the line item, a user exit written in the exit SDVFX008
    Ask your ABAP to check on these lines, if 1 and 2 is YES
    Br, Ajay M

  • How can I scan a document to PDF in Windows 7 Professional

    I have a Canon MX892 which I previously used with Windows XP. I was able to scan documents to PDF very easily using the Canon Solutions Menu EX.  I am now using Windows 7 Pro 64. I downloaded the associated version of Canon Solutions Menu EX, but it is completely different from the Windows XP with far less functionality.  Is there some way to scan documents to PDF with Windows 7 Pro?

    Hi daberg,
    There is a program called MP Navigator that comes with the printer that can assist you with scanning a document in as a PDF file.  Once you are in the MP Navigator program, please follow these steps to scan and save a document in PDF format:
     1.  When MP Navigator opens, click on the ONE-CLICK option at the top of the window.
     2.  Click on the SAVE AS PDF FILE button.
     3.  Place the document you want to scan on the Platen, then select your Document Type (either Color or Black and White Photo or Document), Size, and Resolution.  
     4.  In the FILENAME section, the default name for the file will be IMG; you can change this to something else if you would like by highlighting the IMG and then typing over it.
     5.  In the SAVE IN section, you will see the folder path and location that the file will be saved to when you scan it; if you would like to change the location, please click on the SPECIFY button and select the location where you would like the file saved to.
     6.  Below the SAVE IN section, there is a checkbox titled SAVE TO A SUBFOLDER WITH THE CURRENT DATE.  If you leave this checkbox checked, then whatever folder location you select will have a folder with the current date of the scan placed in it, and inside of the currently dated folder will be the file that you scanned.  If you do not want to have the program create the subfolder, please uncheck that box.
     7.  Click the green SCAN button.  Scanning starts.  When scanning is completed, the file will be saved in the location you specified.
     8.  You can then close out of the MP Navigator program and go to the location where you specified the file to save.  You should find the PDF file in that location.  
    Hope this helps!
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • I have imported a document from my old Windows PC but on the Mac the text is misaligned and the pictures are gobbledygook. It looks fine on the thumbnail. How do I see my documents in Mac as they appeared in Windows?

    I have imported a document from my old Windows PC but on the Mac the text is misaligned and the pictures are gobbledygook. It looks fine on the thumbnail
    on the desktop. How do I see my documents in Mac as they appeared in Windows?

    To view it in an acceptable format, yes.  You can try using an opensource program such as OpenOffice or LibreOffice and see if it yields better results.  However, I'm sure if it would be compatible with a document made with word processing software from 9 years ago, but I would certainly give it a try.

  • Opening multiple document in single instance (window)

    Someone here mentioned this: "Acrobat 9 no longer supports opening multiple documents in the same window."
    This is disappointing.. does anyone know the workaround / hack?
    Running Acrobat 9 Standard.
    Thanks,
    Devin

    Unfortunately yes you're correct. The cause was due to no MDI support, which Adobe removed starting at v9.
    Link: http://blogs.adobe.com/acrobat/2008/09/mdi_vs_sdi_in_acrobat.html
    If I find a workaround worth mentioning, I'll post it here later.
    Thanks.

Maybe you are looking for