Can all Acrobat Readers open files with mixed orientation pages (portrait and landscape)?

Can all Acrobat Readers open files with mixed orientation pages (portrait and landscape)? If not, which versions can? Thanks!

Hi Sami,
You can open files with mixed page orientations in all Adobe Readers There is no such constraint on opening files with different page orientations in Adobe Readers.
In case if you have any other query please let us know. We will be happy to assist you.
Regards,
Aadesh

Similar Messages

  • How do I change the print orientation for PDFs with mixed orientation pages?

    I'm sure this is a fairly basic and easily solvable issue, but I've been searching for a solution and can't find one for the life of me.
    The issue: I'm printing a PDF that will be bound book-style, and the file contains pages with mixed orientations (both portrait and landscape). When I print the file, the landscape pages point the wrong way, to the left of the spine, when they should be pointing down to the right of the spine. I've adjusted the print settings for multiple test rounds, and nothing seems to work. Here's a visualization of the problem (apologies for the bad Paint art):
    What the book is doing now when it prints:
    What I need it to do:
    Here's the caveat: I cannot just rotate all the landscape pages counter-clockwise in Acrobat for ease of printing, because it would remove the ability to scroll through the file quickly in Reader or a Web browser, and the same file needs to be both easily readable digitally AND print correctly.
    Is this adjustment a print setting? Is this a tool I'm overlooking within Acrobat? Is this outside the scope of what is adjustable? All advice is welcome, and please feel free to ask any follow-up questions if I explained my problem unclearly.

    If you are trying booklet printing, try to rotate the pages as needed before you print to the booklet. If you are print booklets without using professional imposition software, then Quite Imposing or Quite Imposing Plus should be considered. I believe they offer a demo version.

  • Process.start("winword", filename) can not open file with space in the path and name

    Hi,
    I am trying to write a class which can open file with selected application. for simplicity, now I just hard code the varaibles.
    the problem: if the path or file name has space in it, even it exist, winword still can not open it.
    could someone kindly show me what I did wrong and how to do it properly.
    Thanks in advance.
    Belinda
    public static class FileOpen
    public static void info()
    string path = @"c:\a temp folder\aaa 1.txt";
    if (File.Exists(path))
        // the file I am using in the sample does exist
         MsgBox.info("yes");
    else
         MsgBox.info("no");
    // working
    //Process.Start("winword", "c:\\aaa.txt");
    // not working
    //Process.Start("winword", "c:\aaa.txt");
    // not working
    Process.Start("winword", "c:\\a temp folder\\aaa 1.txt");
    // not working
    Process.Start("winword", path);

    string AppPath;
    AppPath = ReadRegistry(Registry.CurrentUser, "Software\\FabricStudio", "TARGETDIR", value).ToString() + @"help";
    string FileName = "'"+ AppPath + "\\ImageSamples.doc" + "'";
    try
    System.Diagnostics.Process.Start("Winword.exe", FileName);
    can any body please help for this.
    where i am making mistake?

  • Developer: How can I let people open files with my program?

    Hello Everyone,
    I just finished my program for the Mac, and decided to make it an application.
    I used Platypus to make my program into an application. Unfortunately when I try to open a file with my program (control + click on file + open with -> other), my application is grayed out and I can't select it. I see it there along with the other applications but I can't select it like I can Mail or TextEdit.
    I read somewhere I had to use XCode to let people open files with my program but I have never used XCode and I have no idea how to do that. Any help would be appreciated.
    Thanks,
    Nick

    You've posted in the wrong forum. This is the OS X Leopard Installation and Setup forum. You need to post your problem in the Developers forum. Also, since Platypus is not an Apple product, you should visit it's developers forum for assistance. The Apple Discussions is intended to assist users with problems and questions about Apple products only.
    To use XCode Tools you need to install it from the Optional Installs folder on your OS X Installer Disc One. It comes with documentation. More assistance can be found at developer.apple.com.

  • Acrobat slow opening files with Digital IDs

    hi!  I was hoping others were having this issue.  I have a client that has over a dozen Digital ID Signatures stored on our network drive.
    When she tries to open a file with multiple Digital ID Signatures, Acrobat takes forever verifying the Signatures.  I can disable the security end, but that's not an option because of the people we are sending these files to.
    Is there anyway to speed up the performance?  Or will they just have to accept it?
    Thanks for everyone's time.
    Alvin

    Hi Alvin,
    Sadly, there's not a whole lot that can be done to mitigate the problem. Even without a lot of digital IDs installed on the system any time you open a file with that many signatures it takes a long time to validate. Part of the problem is a design flaw where signature 1 gets validated, then when Acrobat moves onto signature 2 it validates signature 1 again because each signature creates a roll-back version of the PDF (View Signed Version) and each rollback version is validated independently. When you extrapolate that out to 20 signatures you can see how much signature validation is going on. We are working on streamlining this process for future versions of Acrobat, but for now it's a liability that you can't get around.
    The number of digital IDs is a separate issue where Acrobat does all of the chain building at the front end (it's no longer on app open like it used to be, but as soon as Acrobat has to iterate the list of digital IDs). You don't have to open a signed file to trigger this, but that is one of the triggers. Acrobat has to test each signature to see if it has access to the private key in order to allow the user to clear the signature. It's access to the private key in the digital ID that enables the "Clear signature" menu item.
    Sorry for the bad news,
    Steve

  • I have just made an Interative PDF (page curl) – will all Acrobat Readers open this?

    It will be uploaded onto a website for download & needs to be viewed by as many people as possible (they may be unable to update their Acrobat Readers due to company policy).
    Info:
    Version – 1.7
    Dimension – 1190x841 px
    Content creator – Adobe Indesign CS5 (7.0)
    Encoding software – Adobe PDF Library 9.9
    Thanks!

    If you enabled the page curl option when exporting from InDesign you have NOT made a PDF file.
    You have made a SWF file inside a PDF file.
    It will not work on mobile devices, in non-Adobe Reader software, it's not accessible nor searchable and cannot be printed.
    PDF files do not support page curl - turn that off and InDesign will export a real PDF of your document.

  • How can I create a RAWpic-file with header(cluster of 8elements) and 2D Array?

    I have created a cluster with 8 "I32"elements (Header). I also got picture information into a 2D array (i converted information from a ROI into a 2Darray("Image pixels(I16)")
    Now I want to create a RAW picture file (first the header information followed by the picture information.)
    I think I have to convert the Header-cluster into an array with "cluster to array". But even this is not possible(Info:"you cannot combine 2 different clusters"). Then I have to combine the 2 arrays with "insert into array"??? But the header array would be a 1Darray if the "cluster to array conversation" works and the picture information is 2D.
    Can anyone help me please?

    I think this is actually pretty straightforward, barring any byte-order issues. Attached is an image that demonstrates what I think jotthape wants to do.
    The key is to let multiple Write File nodes do the work for you. There's no need to combine all the data into a single structure for the write, and avoiding that makes things easier in this case, because you don't have to worry about some of the data being I32 and the rest being I16.
    Give this a shot,
    John
    P.S. It does seem likely that you will run into byte-order problems if you want to read your custom RAW file in using some other piece of Windows software. You can check the forum and the NI site for info on byte order, then ask a new question if you're still having a problem.
    Attachments:
    writeRaw.png ‏8 KB

  • Can't batch process opening files with certicate encryption

    Using Acrobat 9.0 pro.
    I am unable to batch proces files that are certicate encrypted.
    When batch processed a dialog message appears that reads;
    Cannot open document
    No files were processed
    I have used the instructions that adobe has for using the associated digital id and ensuring this is logged in.
    And also have set preferences for batch processing  security method to certificate security, no password and, password security.
    FYI: I Don't have livecycle so can't try this.
    Can anyone help with a solution for doing this.
    I was able to create certificate encrypted files using batch processing so can't understand why I now can't open and print file created this way, since
    Acrobat help indicates this can be done.
    Adobe instructions indicate this should work??? What's wrong here.
    Thanks in advance
    Regards,
    smurphy

    I may have to do with the name of the folder, such as having periods or slashes in the folder name.

  • Can I deploy a war file with the mixture of JSP and servlet?

    I have a project, which the JSP has been created for view page, and the servlet was created to retrieve the database, but we have trouble to pass the session variable from servlet back to JSP, it is NULL, with different session ID.
    Now, I try to add the servlet into the same JSP project, and deploy them as one war file, so, it will be called under the same subdirectory (Tomcat).
    It failed to call the servlet, with the error message
    Servlet FirstServlet is not available
    I wonder whether this is valid, if it is, what I may lost, if it is not, how to pass the session variable between them.
    Thanks.

    I double checked the web.xml file, the FirstServlet was defined as servlet class, and the FirstServlet class was found under WEB-INF/classes/FirstServletPackage directory.
    Here it is the web.xml file
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <servlet>
    <servlet-name>FirstServlet</servlet-name>
    <servlet-class>FirstServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>FirstServlet</servlet-name>
    <url-pattern>/FirstServlet</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    and here it is the message from Tomcat log
    May 28, 2009 5:09:43 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Allocate exception for servlet FirstServlet
    java.lang.ClassNotFoundException: FirstServlet
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1094)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:808)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:129)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:595)
    I will try to rename it, then test it again.

  • Multi-folio app with both portrait and landscape orientation

    Can we create a multi-folio app that contains both portrait and landscape orientation folios?

    A multi-folio app can have any mix of portrait, landscape, or dual-orientation folios in it. The only requirement is that for a specific folio all articles in it share the same orientation setting.
    Neil

  • Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path

    Snow Leopard 10.6.2 CS4 InDesign can't open files with a "#" in file path using any of these perfectly normal methods:
    1. double-click file in the Finder (e.g in a Folder on your Mac or on your Mac desktop etc.)
    2. select file and choose "File... Open" command-o in the Finder
    3. drag file to the application icon in the Finder.
    4. Select file in Bridge and double-click, choose File.. Open.. or Drag icon to InDesign icon in dock.
    If you try to open an ID file named with a "#", you will get an error message "Missing required parameter 'from' for event 'open.'"
    This happens to any InDesign file that has a "#" (pound sign, number sign, or hash) in the filename or in the file path (any parent folder).
    To reproduce
    Name an InDesign file Test#.idd Try to open it in the Finder or Bridge (as opposed to the "Open" dilaog of InDeisng itself).
    "Solution"
    The file WILL open using File... Open... command-o while in InDesign application.
    Rename the file or folders that have a "#" (shift-3) in the filename.
    Report to Adobe if it bugs you.
    This does not occur in "plain" Leopard 10.5 nor Tiger 10.4
    Untested in Panther or before and
    Untested with CS3 and earlier in Snow Leaopard.
    Anyone have those and want to try this... ?

    In case this really bothers you: we've added a workaround for this into Soxy. If you enable the option, these documents will open fine on double-click.
    You need Soxy 1.0.7 from:
    http://www.rorohiko.com/soxy
    Go to the 'Soxy' - 'Preferences' - 'Other' dialog window, and enable 'Open InDesign via Script'
    (Irrelevant background info (it's all invisible to the user): the workaround works by special-casing how Soxy opens documents in InDesign: instead of using AppleScript, Soxy will use ExtendScript to instruct InDesign to open the document - which works fine).

  • Can I batch print PDF files with Adobe Acrobat Reader X

    can I batch print PDF files with Adobe Acrobat Reader X?  I have tried from Windows Exploer (Windows XP) and it looks like the files are opening but they do not print.
    Pat

    Very strange!  What is your installed Reader version?
    Try disabling Protected Mode in Adobe Reader [Edit | Preferences | Security (Enhanced)].

  • How can I quickly toggle through all of my open files in an application?

    How can I quickly toggle through all of my open files in an application? For instance, if I want to bounce back and forth between three documents that I have open in Microsoft Word?

    You use a combination of OS X Spaces with Exposé to be able to accomplish this.
    Or in your case,  look at using Mission Control
    http://support.apple.com/kb/HT4689

  • Why can't I open some of my documents on Pages even though I created them all on the same IPad with the same Pages ap?

    Why can't I open some of my documents on Pages even though I created them all on the same IPad with the same Pages ap?

    I think I know the problem because I've had it myself. I didn't upgrade iWorks on my iPad, but after Apple made changes to iCloud (concurrent with Mavericks) any docs passing through it were modified and made unreadable. Even though, as you say, they were created on my iPad using the previous version of iOS Pages, which I didn't upgrade.
    iCloud is the culprit, if your iPad settings had iCloud>Documents & Data enabled, the docs were modified and disabled in the cloud.
    I made a further mistake. After I saw this happening, I didn't think to turn off auto updates, and Apple pushed the new version of iOS Pages onto my iPad. The result was that ALL my docs disappeared from the iPad, and from iCloud.com also. I have not been able to recover them.
    I've been talking to the Pages engineering team about it. If they come up with an answer, I'll post it here. Meanwhile, get those older files backed up somewhere safe if you can.

  • How can I print a file with mixed page orientation in windows 8.1?

    I have a win 7 and a win 8.1 computer.  I have a file which contains both landscape and portrait pages.  The file prints correctly with the mixed orientation from the win 7 pc, but will only print with either landscape or portrait on the win 8.1 pc. 
    I am using Adobe reader XI on the win 7 pc and adobe touch on the win 8.1 pc

    ส่งจาก จดหมายของ Windows
    จาก: Pat Willener
    ส่งเมื่อ: จ. 5 มกราคม 2558 6:15
    ถึง: thang dinhvan
    How can I print a file with mixed page orientation in windows 8.1?
    reply from Pat Willener in Adobe Reader Touch for Windows 8 - View the full discussion 
    I have a win 7 and a win 8.1 computer.  I have a file which contains both landscape and portrait pages.  The file prints correctly with the mixed orientation from the win 7 pc, but will only print with either landscape or portrait on the win 8.1 pc. 
    I am using Adobe reader XI on the win 7 pc and adobe touch on the win 8.1 pc
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7064031#7064031 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7064031#7064031
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Reader Touch for Windows 8 by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

Maybe you are looking for

  • Office intergration - run as background job

    Hi,   I have a word template merged with data using "Desktop Office Integration".   Currently word template will be opened before data merging is done.   Is it possible to run as background job, which word template can merge with data in backend? If

  • Executing WINWORD from both Windows and linux using Java

    Dear All, I have a problem when trying to use Runtime class to execute a winword document. My code is as follows. Runtime r= Runtime.getRuntime(); try{ r.exec("rundll32"+" "+"url.dll,FileProtocolHandler"+" "+"WINWORD"+ " "+"file://C://welkom.doc"); c

  • Servlet to servlet communication in the same server

    Hi everybody! I have two .wars in the same JBoss + Tomcat web server. Both .war have their own login system throught j_security_check. I'm using Struts for development and Win 2003 for OS. I want to login into .war 1 and "use" Action class of .war 2.

  • Temporary change of default language/keyboard layout

    I've started learning Arabic and I would like to be able to use Pages to type out written work. I'm aware that I'll have to figure out which keys correspond to which letter in Arabic but I can't figure out how to get to the stage whereby I can write

  • FileDialog

    How do use the FileDialog class to open a FileDialog box in your Java Program or is there something better to use?