PDF in a Muse page

I have to place a PDF-questionaire in a Muse-page. How do I do that?

I want to do the same thing I hope you don't mind I add to this BMM. I want to add a link to the page and when you hit the link it opens it in a separate floating window. I am wondering where you put this PDF. In a child page to the page that has the link?

Similar Messages

  • How can I make a PDF of a Muse Preview page?

    I need to make an accurate PDF reproduction of my web pages for a customer. I've tried making them from Acrobat Pro, a Chrome plugin, a Safari plugin, and the Mac Command + 4 method. None of these methods display the page with all of its components (which do appear fine on the website and in Muse where it was created).
    I would have suspected that I could make a PDF of an entire page from inside Muse as this would be something that designers would need to save and print for their clients to review, but I can't figure out how. I'd appreciate any help.
    Thanks!
    anita

    Hi Sachin,
    I've tried several third-party utilities for Chrome and Safari. I use a Mac and Fireshot is only available for Windows so I can't try that one. So far, none of the third-party utilities duplicate the page as it looks on the web or in Muse.
    Thanks anyway,
    anita
    Anyone else? Any other ideas how I can get an accurate PDF?

  • Create a PDF from Adobe Muse

    Hi, I need help, I want to create a PDF from my Muse website, is possible? is not any suggestion or option to do this task
    Thanks in advance

    Hi
    Please elaborate a bit more as you want users to download pdf from your site or print site page as pdf etc
    If its regarding documents then you can add add df documents in your site and then link them to pages where users can download the pdf, if you are referring to print page then you can provide information for ctrl+p/cmd+p , or add html code for print shortcut.
    https://forums.adobe.com/message/6319543
    Thanks,
    Sanjit

  • Why do I get a black screen when i click on a PDF in a web page?

    why do I get a black screen when i click on a PDF in a web page? Firefox works as is should.

    Hi,
    From your Safari menu bar click Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, then relaunch Safari. Try a PDF file.
    If it's not Extensions, open a Finder window. Select MacintoshHD in the Sidebar on the left. Now open the Library folder then the Internet Plug-Ins folder. If you see any files such as this:
    AdobePDF Browser or Viewer Plug-in
    Move it to the Trash, relaunch Safari.
    Carolyn :-)

  • OAF : Could not open PDF from Self Service Page or Jdeveloper.

    Hi Friends,
    We are on R12 Applications.
    Appreciate any help.
    Requirement :
    1. Open the PDF from Self Service Page.
    Error :
    Adobe Reader Could Not Open the PDF because it is either not a supported file type or the file is damaged.
    Below is my Controller and AM code
    ======================
    Controller Code
    ==========
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package XXX.oracle.apps.ak.xml.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.xml.parser.v2.XMLNode;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import oracle.cabo.ui.data.DataObject;
    import oracle.jbo.XMLInterface;
    * Controller for ...
    public class XMLIntegrationCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public static final int DEPTH = 4;
    public static final int APP_ID = 20003;
    public static final String APP_NAME = "XBOL";
    public static final String TEMPLATE_CODE ="Emp_Template";
    public static final int BUFFER_SIZE = 32000;
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    System.out.println("XXX : Event "+event);
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/PDF");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    APP_NAME,
    TEMPLATE_CODE,
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    AM CODE
    ======
    package subba.oracle.apps.ak.xml.server;
    import java.io.ByteArrayOutputStream;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.apps.fnd.framework.test.inputscanner.server.EmpVOImpl;
    import oracle.help.common.xml.*;
    import oracle.jbo.XMLInterface;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLElement;
    import oracle.xml.parser.v2.XMLNode;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class testXMLAMImpl extends OAApplicationModuleImpl {
    /**This is the default constructor (do not remove)
    public testXMLAMImpl() {
    /**Sample main for debugging Business Components code using the tester.
    public static void main(String[] args) {
    launchTester("XXX.oracle.apps.ak.xml.server", /* package name */
    "testXMLAMLocal" /* Configuration Name */);
    public void initEmpVO()
    EmployeeVOImpl vo = getEmployeeVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmployeeVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmployeeVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    /**Container's getter for EmployeeVO1
    public EmployeeVOImpl getEmployeeVO1() {
    return (EmployeeVOImpl)findViewObject("EmployeeVO1");
    }

    Try the OA Framework Forum

  • How come pages won't open PDF files made by Pages?

    How come pages won't open PDF files made by Pages?
    I have files I made with Pages and exported as PDF but I can't open them with pages to edit?
    Also, where are the recent files created by pages located? Can't find those to open either..

    Hi Tom,
    I was delighted when I signed up for Pages. Clunky yes, but it worked. I've been a graphic designer on a Mac for 25 plus years and have logged too many horror stories of "upgrade" wars which cost me massive lost time, data and money forcibly extracted just so I could finish a project.
    When I first used Pages in April of 2012? or there about, I was able to open Word documents exported to .pdf format, emailed to me, which I then dragged into Pages. I could make the changes I needed to make, export as a .pdf, return it back to my client which they could then edit on whatever it was they were using. I'm not a neophyte with this. I've had Original Photoshop as a stand alone, Quark (which locked users out 6 months after I purchased it.) Quark again, Freehand, Pagemaker, Illustrator, Photoshop again, Creative Suite for several upgrades, Acrobat Pro. 2 years ago I lost 6 years of Quicken data and had to and "upgrade" start over. This last go around I  had to "upgrade" my Apple ID - yes I had 2 on purpose, lost my Pandora One and my ability to get into the Tulsa County Library website.
    At this point, I'm retired and feel like what I've paid for in the past should WORK today. I have a 100+ page cookbook in Quark which I was able to export as a .pdf, that I've lost the tags too, Easier to start over. I have artwork that is hundreds of megs in Photoshop. Not the least bit interested in anybody's "cloud".
    Thanks for letting me vent. I'm determined to keep my equipment and software up to date so I can enjoy the skills I've acquired, but I completely cringe at Apple's antics. I truly hate it when I have to respond to some new "tip" or product offer. BooHiss. Happy Turkey Day. Pages is a "turkey" program.
    Best regards, mbd

  • New Mac, fresh install of Mountain Lion When I click to open a .Pdf from a web page,while in Safar, I get a black window Nothing opens in Preview or in Acrobat No option to download

    New Mac, fresh install of Mountain Lion
    When I click to open a .Pdf from a web page,while in Safar, I get a black window
    Nothing opens in Preview or in Acrobat
    No option to download

    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type of copy paste the following:
    /Library/Internet Plug-Ins
    Click Go. If you see this file:  AdobePDFViewer.plugin
    Drag it to the Trash, empty the Trash.
    Quit and relaunch Safari.

  • Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed

    We are planning to Silent print a PDF from a web page using Flex. We are targeting Windows and Mac with Arcobat reader installed. I have tried using the AIR appliaction and it worked, But our requirement is NO INSTALL to the user machine for the silent printing. It is just from web page and silent printing to the default printer to the desktop/Laptop. Can anyone share your thoughts and experience with us. It will be very helpful..
    For AIR : I tried the thread Re: AIR and PDF showing/silent printing

    Hey CodeMonkey & Ross,
    Did you either of you ever find a solution? I'm stuck too, it seems I can get remote printing on all these PDFs to work but it just prints a blank page since I've been using Javascript in the browser, not Adobe's (they are Engineering drawings that I do not have permission to edit so I can't just insert code into them but I need to make work instructions). I've been scouring the internet for hours now, it seems that this thread is the only relevant/useful one at this point. No one else was trying to achieve this for similar reasons to mine.
    Thanks guys,
    Lox

  • How do I display PDF document as single pages on iPad?

    Hi,
    I have a company catalogue in PDF format, 20 pages long. We use Issuu to allow customer to view the catalogue on their PCs and mobile devices.
    In Issuu you can customise the embed widget to show single pages, and this works fine when viewing the catalogue on a PC. The problem arises when trying to view the catalogue on an iPad. It appears that the iPad automatically sets the PDF to view as a Facing Pages document. It doesn't matter if I'm using Safari, or the Atomic browser we have installed (so that we can hide the URL bar).
    I've created the document in inDesign as a single page document but the iPad still merges pages 2-3, 4-5, 6-7 etc.
    The iPads will be used in our retail stores so it's important that the set up and navigation is as simple as possible. The catalogue is placed within an iFrame on the page so that I can but a navigational banner at the top that easily takes customers back to the main menu page. It's important that the catalogue opens within the page. The Issuu embed widget for Tumblr, etc only creates a preview of the catalogue which then opens in a separate tab, which unfortunately will not be suitable to our needs.
    You can view the page here: http://www.eurocollections.com/block/catalogue.html
    I've tried a number of different options, I've written to Issuu but they were unable to help as it only seems to be an iPad-related problem.
    Any help or suggestions would be greatly appreciated.
    Kind regards,
    Peter

    The PDF viewers on the iPad do not understand customised widgets.  They understand the PDF format, exactly as it was designed by Adobe.  Instead of trying to use a custom solution, use the features which are provided by the PDF format.  Custom solutions work only for the situations that the company that wrote the custom solution wants them to work and they are a corruption of the normal way PDFs are used.
    In your situation I'd remove all dependency on any custom widgets from your PDF document.  Instead you can use links which allow you to click on a piece of text or an image in the PDF and the PDF software will take you to a different page.  This is part of the PDF standard and will work on all software capable of showing PDFs.  It is all your users should need to navigate from one part of your catalogue to another.  Whatever software you're using to create your PDF should give instructions on how to create links in your PDF document.
    Similarly your use of iFrames is a little stange.  If your material is on a web site, put it in web pages where you can use all the features web pages give you, including blue-underlined links to other pages.  If, instead, your material is in a PDF then put all the navigation in the PDF.  Don't try to depend on a strange interaction between the PDF and your web pages.

  • Mail Crashes when I try to open or attach PDFs larger than one page

    Hi All....
    Mail (2.1) crashes whenever I try to view or attach a PDF larger than 1 page. Here's a snippet from the latest crash log:
    Version: 2.1 (752)
    Build Version: 1
    Project Name: MailViewer
    Source Version: 7520000
    PID: 157
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9064708c
    Thread 0 Crashed:
    0 com.apple.CoreGraphics 0x9064708c op_TJ + 0
    1 com.apple.CoreGraphics 0x903ca0c4 handle_xname + 168
    2 com.apple.CoreGraphics 0x903c9da8 read_objects + 444
    3 com.apple.CoreGraphics 0x903c8f68 execute_stream + 108
    4 com.apple.CoreGraphics 0x903c8eb4 CGPDFScannerScan + 96
    5 com.apple.CoreGraphics 0x903ccb7c CGPDFDrawingContextDraw + 444
    6 com.apple.CoreGraphics 0x903c52f0 CGContextDrawPDFPage + 184
    7 com.apple.CoreGraphics 0x903c4180 CGContextDrawPDFDocument + 240
    8 com.apple.AppKit 0x93a8b2fc -[NSPDFImageRep draw] + 252
    9 com.apple.AppKit 0x9373e968 -[NSImageRep drawInRect:] + 288
    10 com.apple.AppKit 0x93784dc0 -[NSImage drawRepresentation:inRect:] + 424
    11 com.apple.AppKit 0x93784be4 -[NSImage _drawRepresentation:] + 168
    12 com.apple.AppKit 0x9373b214 -[NSImage _cacheRepresentation:stayFocused:] + 208
    13 com.apple.AppKit 0x9378495c -[NSImage _cacheRepresentation:] + 32
    14 com.apple.AppKit 0x93752b20 -[NSImage drawInRect:fromRect:operation:fraction:] + 1148
    15 com.apple.AppKit 0x938586b4 -[NSImage drawAtPoint:fromRect:operation:fraction:] + 152
    16 com.apple.AppKit 0x938584e4 -[NSTextAttachmentCell drawWithFrame:inView:] + 924
    17 com.apple.mail 0x00077e68 0x1000 + 487016
    18 com.apple.mail 0x00077dc4 0x1000 + 486852
    19 com.apple.AppKit 0x938580fc -[NSTextAttachmentCell drawWithFrame:inView:characterIndex:layoutManager:] + 36
    20 com.apple.AppKit 0x93853d78 -[NSLayoutManager(NSTextViewSupport) showAttachmentCell:atPoint:] + 864
    21 com.apple.AppKit 0x938539d4 -[NSLayoutManager(NSTextViewSupport) showAttachmentCell:inRect:characterIndex:] + 84
    22 com.apple.AppKit 0x93779e34 -[NSLayoutManager(NSPrivate) _drawGlyphsForGlyphRange:atPoint:parameters:] + 5784
    23 com.apple.AppKit 0x937c7158 -[NSTextView drawRect:] + 664
    24 com.apple.mail 0x00028d50 0x1000 + 163152
    25 com.apple.AppKit 0x937c6ba8 -[NSTextView _drawRect:clip:] + 1176
    26 com.apple.AppKit 0x9372fe18 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    27 com.apple.AppKit 0x93732b60 _recursiveDisplayInRect2 + 84
    28 com.apple.CoreFoundation 0x907ec3c4 CFArrayApplyFunction + 416
    29 com.apple.AppKit 0x9372ff2c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    30 com.apple.AppKit 0x93732b60 _recursiveDisplayInRect2 + 84
    31 com.apple.CoreFoundation 0x907ec3c4 CFArrayApplyFunction + 416
    32 com.apple.AppKit 0x9372ff2c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    33 com.apple.AppKit 0x9372f3e0 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    34 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    35 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    36 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    37 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    38 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    39 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    40 com.apple.AppKit 0x9372f9a8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    41 com.apple.AppKit 0x93750044 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192
    42 com.apple.AppKit 0x93729054 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    43 com.apple.AppKit 0x9371e348 -[NSView displayIfNeeded] + 248
    44 com.apple.AppKit 0x9371e1b8 -[NSWindow displayIfNeeded] + 180
    45 com.apple.mail 0x00025194 0x1000 + 147860
    46 com.apple.AppKit 0x9371e064 _handleWindowNeedsDisplay + 200
    47 com.apple.CoreFoundation 0x907dc73c __CFRunLoopDoObservers + 352
    48 com.apple.CoreFoundation 0x907dc9dc __CFRunLoopRun + 420
    49 com.apple.CoreFoundation 0x907dc47c CFRunLoopRunSpecific + 268
    50 com.apple.HIToolbox 0x93208740 RunCurrentEventLoopInMode + 264
    51 com.apple.HIToolbox 0x93207dd4 ReceiveNextEventCommon + 380
    52 com.apple.HIToolbox 0x93207c40 BlockUntilNextEventMatchingListInMode + 96
    53 com.apple.AppKit 0x936eaae4 _DPSNextEvent + 384
    54 com.apple.AppKit 0x936ea7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    55 com.apple.AppKit 0x936e6cec -[NSApplication run] + 472
    56 com.apple.AppKit 0x937d787c NSApplicationMain + 452
    57 com.apple.mail 0x000871d8 0x1000 + 549336
    58 com.apple.mail 0x00087080 0x1000 + 548992
    Part of me thinks that this doesn't actually have anything to do with mail. I had problems with Safari and Finder crashing every time I they tried to open a PDF. This was partially solved by installing Adobe Acrobat Reader and designating it as the default PDF veiwing app, but this option didn't appear when I ran Mail for the first time after installing Reader.
    At this point, I've repaired the disk and repaired permissions, but that's about as much as I know how to do. I'd be grateful for any help that anyone can offer.
    Thanks!
    Sam E.
    1GHz PowerbookG4, Dual 2.5GHz G5   Mac OS X (10.4.8)  

    Hi Sam.
    I don’t know what’s going on. I suggest reinstalling the Combo Update for the type of computer and the version of Mac OS X you’re using, unless this is the version of Mac OS X that came with your computer:
    About the Mac OS X 10.4.8 Combo Update
    Mac OS X 10.4.8 Combo Update for PPC
    Mac OS X 10.4.8 Combo Update for Intel
    Take a look at the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update (which you say you’ve already done), no applications should be running while installing it, and you may experience unexpected results if you have third-party system software modifications (not normal applications) installed.

  • How can I print a booklet where each pdf page is vertically placed on each half page instead of one pdf on each booklet page?

    I've printed a booklet before but each pdf page had two powerpoint slides on each pdf file.  This binder has one powerpoint slide on each pdf page and if I try to print it as a binder, each pdf page takes up the whole half-page on the booklet.  I want to print two pdf slides on each page of the booklet so when I open the booklet, there are four powerpoint slides printed.  So I basically want to combine the ability to print multiple slides per page but in a booklet form.

    Why not reconstruct the pages in InDesign they way you want the double pages to appear. There may even be an imposition script available that will do the trick. You could then output to pdf all the pages you want the full spread on. Leave the original to create the pages you wanted left as is.
    You can ask in the ID forum about an imposition script. I know there was one with CS4, there may have been one with CS3.

  • How do I open a pdf on a web page in Safari without Acrobat Reader?

    At the moment I have removed Acrobat Reader 10.3.1 because it conflicts with Safari. Preview is a perfectly fine pdf reader (and with lots of very nice features) but I don't see how I can make Preview open a pdf from a web page until it has been downloaded to file. And I have found at least one site that will not download to file before opening.

    Right-click in the PDF when it's displayed in Safari and select Open with Preview from the popup menu. Depending on how the PDF is embedded in the web page, this may not be possible.

  • How do I open a PDF to a specific page via the command line?

    Several questions about opening PDFs from the Mac OS X command line:
    1) How do I use the "open" command to open a PDF to a specific page? (I know I can open a document via: open doc_name.pdf)
    2) How do I use the "open" command to pass multiple arguments (page no, zoom scale, view mode, etc...) to open a PDF file in a specific manner?
    3) Does Preview handle the same parameters as Acrobat Reader? If not, what are the differences in options?
    I've spent hours searching for this answer and have come up dry. I've downloaded Adobe's "PDF Open Parameters" document -- it lists all of the parameters I need, however I can't get any of them to work from the command line.
    My goal: Open a PDF from the command line to a specific page. At first glance, I thought this would be simple to do and find -- however, after a lot of searching I haven't found an example on how to do it.
    Anyone have any experience doing this, and care to share?
    Much appreciated! ---> Kelsey

    I don't know of any way to do what you want using the 'open' command. It can probably be done with Applescript, which you could call from a shell script. The Preview application doesn't seem to be scriptable. I don't use Acrobat, so I can't tell you anything about that. Looking through the dictionaries of the apps I do have, it seems that Skim (another PDF viewer) has an AS 'page' class. Below are a couple of links that may get you started. Look for more specific guidance in Applescript forums.
    http://sourceforge.net/apps/mediawiki/skim-app/index.php?title=AppleScript
    http://links.tedpavlic.com/shell_scripts/skim

  • How do I create a single PDF file with multiple pages?

    Hi, I occasionally need merge several jpg images into a single pdf file with multiple pages (one Jpg per page). I have tried doing this on Preview, and by selecting all the pages I want to include in my document and trying to save to Pdf through the "Print" function, but every time it only saves the first page.
    Can anyone tell me if there is a way to save multple-page pdf files without having to purchase a specific program (i to this too infrequently to justify the cost)?
    Thanks very much,

    This works for me...
    Open first image in Preview View > Sidebar. Drag the other images into Sidebar, then select all.
    From File menu > print selected images. Choose PDF > Save as PDF
    -mj

  • I have a pdf. document with 100 pages. These are white postcards with addresses. I need to move all the address farther to the left. How can I move them all at the same time?

    1) I need to drag the same text on 100 pages at the same time to the same place. Is there a simultaneous way I can do this? the pdf file has 100 pages of a 4x 6 posta cards that contain addresses: one address per page, I need to select all addresses and at the same time move them to the same place within the postcard. I can select the text on one card (page) at a time and drag it to the desired place. The PROBLEM is that I need to do it at the same time on every page. otherwise it takes too long. PRODUCT IS ABOBE ACROBAT

    This it not the kind of editing task that one should do in a PDF file. It is not meant to be edited in such a way.
    You should try to get the original file used to create the PDF, edit it and then create a new PDF from it.

Maybe you are looking for

  • Poor PXI IO performanc​e on Latitude E6410 with ExpressCar​d 8360

    Hello, I have a Dell Latitude E6410 with a Core-i5 M520 which is giving me very poor io performance when using an ExpressCard 8360 card to connect to a PXI Rack. The sustained IO rate that I can get appears to be about 1/3 of that that I can get usin

  • I cannot click on "next page" or any other than the first page on Music Wishlist

    Music>My Wishlist I cannot click on "Page 2" or "Page ..." or "Next" Is this a problem with the current version? Anyone else having this problem? Thanks, digisound

  • How to fsck /usr with LVM?

    Wasn't sure where to post this: I just applied a pile of updates to my Arch+MythTV PVR. Not necessarily related to my problem, but this update included the replacement for mtab. On reboot, I get dumped into single-user because /usr is dirty. Dirty di

  • Parallel release codes - customizing

    We have the release strategy say S1, which has 3 release codes, say L1, L2 and L3. Now, we want to have the alternative release at the first level (L1), ie we want to have another code say L4, added at the first level as an alternative to the release

  • Burning Multisession DVD-R

    My new Leopard Edition Missing Manual by D. Pogue states that I can use disk utility to burn multisession DVD-Rs, just as I can CD-Rs. Is the book wrong?