Why does Mavericks not allow the "poster" option in Adobe Acrobat anymore?

I'm trying to print "poster" style (i.e. tiled/100% size over multiple pages) in Adobe Acrobat. Everything else in the program works, but that is greyed out.  Is there a workaround? Do I just have to wait for an update from Apple or Adobe? 

Which version of Acrobat Pro are you running? I'm using Acrobat Pro XI and still have the "poster" print option:
Clinton

Similar Messages

  • Why does Apple not allow me to Change "Siri's" name on the I5?

    Why does Apple not allow me to Change "Siri's" name on the I5 (NOT how, but WHY)?

    No one here can address a question as to "why" Apple does anything.

  • Why does apple not allow 3D

    A statement from the Smithsonian: "....iPad. Although these devices technically fully support 3D graphics in the web browser, due to a restriction of Apple it is not currently possible to use the Smithsonian X 3D explorer on iOS devices." Why does Apple not allow Smithsonian X 3D to run on MAC iOS devices? It runs on other OS such as Android etc.

    John,
    If you know so little about the topic why even respond? Just to take sides? How do you even know your on the right side? Because you bought an iDevice and must obey your master?
    Firstly 63% of video on the web is not HTML5. There is no such thing as HTML5 video.
    HTML has a new tag called <video></video>. This tag allows the playback of videos converted to a specific codec. In safari it is h.264, in chrome it is VP8, in firefox it is OGG.
    Each browser can only handle their codec, so a video that runs in the enw <video> tag in safari will not run in chrome or firefox unless another video is also present that has been converted to the correct format.
    Adobe Flash can play all of them, or any one of them in any browser. Or you can just use .flv and have only one video that plays everywhere.
    As such Adobe Flash plays back h.264 video, and has been doing so way before anyone heard of HTML5. Most hardware today has built in support for this codec as well, making it the best performig codec to be used for video.
    With or without HTML5, h.264 is and has been becoming the "standard" codec for all video.
    So to say 63% of video is HTML5 is a half truth. If you only cinsider safari then yes, 63% of the videos that flash plays can also be played in safari. However that same 63% can not be seen by anyone else as they require a different codec.
    This says that h.264 is the dominant codec, because 63% of all video uses it. However you still need to support the other 37% of video which is not h.264, and you still need to support the other 63% of video for those who dont use safari.
    The best option to bring all this together is Flash. It's the one stop shop for all video across all screens.
    And Flash out performs HTML5 players 10 to 1 on every product on the planet except Apples.... where it somehow becomes a huge resource hog.... but then that may have something to do with Apple not wanting any media consumption to come from anywhere than their pocket.

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • HT204406 I have subscribed to match on iTunes and organized my music on my Mac Book.  Why does it not appear the same way on my iPad

    I would like my music to appear organized in the same way on my iPad as I have done it on my Mac Book.  (and on my iPhone as well)  Since it is in the cloud, why does it not appear the same way in all devices?

    The purpose of iTunes match is to make your music library available to all of your devices anywhere. It will sync Playlists, but no other type of organization you may have made.
    If you're having trouble, be sure you are logged into the same Apple ID on all devices but be sure to read this article and pay special attention to associating your devices with an Apple ID. There are important restrictions you should know about.

  • Why does apple not remove the malware Genieo

    Why does apple not remove the malware Genieo - it takes over the Safari browser even with extensions turned off - firefox works fine but the malware is still alive and kicking on my mac.  Should I just uninstall safari and hope the malware is not doing more damage in the background?

    Hi Sickof --
    Apple has never had anything to do with Genio.  It is sneakily installed with other apps you think would be helpful. It is very sickening, IMHO. 
    Here's a thread here -- It's long, I know, but it's got great information for you.
    https://discussions.apple.com/thread/4497906?start=0&tstart=0
    Keep reading.  It's worth it.

  • Why does iPhoto not recognize the .jpg pics from a Kodak C875 now? I can stick my memory card in the iMac and import them that way, but iPhoto will not import the pics from the camera.

    Why does iPhoto not recognize the .jpg pics from a Kodak C875 now? I can stick my memory card in the iMac and import them that way, but iPhoto will not import the pics from the camera.

    There have been many issues reported with Kodak cameras - serach the forums for them
    Actually the best practise is to use a card reader to import your photos, verify that they are imported ocrrectly and wait at least one backup cycle and then use the camera's format command to reformat the card and erase it - this assures no lost photos and always having the card properly formatted
    LN

  • Why does IBA not include the table of contents when exporting to PDF?

    Why does IBA not include the table of contents when exporting in PDF? I can seee the TOC in iBooks Author but when I want to see what it looks like in a regular PDF, the TOC does not show up.

    Strange question you ask here. Not sure why that is relevant to "why" IBA won't publish a table of contents in a PDF.
    But since eyou asked, it's simple, I want to author some books in IBA and also see what they look like - completed - in PDF. Again, any suggestions as to a work around so I don't have to cut and paste back into Pages?

  • TS4022 why am I not getting the Advance options when I am in my iCloud account?

    Why am I not getting the "Advance" option when I am in my iCloud account?

    There is no 'Advanced' option at icloud.com. Is this a question of changing the default email address? I quote:
    In iOS 6
    Go to Settings > iCloud > Account (your Apple ID) >Advanced: Mail.
    Under iCloud Account Information, tap your email address.
    From the list of addresses available, tap the @icloud.com email address you would like to use as the default address for sending mail from iCloud Mail.
    In OS X Mountain Lion or Lion v10.7.2 (or later)
    Go to Mail Preferences > Composing.
    Click the Send new messages from drop-down and select the @icloud.com email address you’d like to use.
    At iCloud.com
    Go to the Mail app.
    Click the Action (gear icon) menu and choose Preferences.
    Under Composing, click the Set a default address drop-down and select the @icloud.com address you’d like to use.

  • Why do I not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document
    link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the
    check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe
    settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    Hi,
    According to your post, my understanding is that you could not get the checkout option for a pdf type document when clicking on the document link in the SharePoint workflow task.
    I try to reproduce the issue, however, no matter when I click the pdf type document in the library or click on the pdf document link in the workflow task email, it download the pdf doucment and then I can open it.
    It will be better if you can descript how you
    get the check out option as expected when you click on the pdf document in the library.
    Then I upload a
    word type document to the library, no matter when I click the word type document in the library or click on the word document link in the workflow task email, I can open the word document directly and get the check out option as expected.
    I recommend to use the other type docuemts to check whether the check out option works.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Why am I not allowed to post here?

    I just tried to post a question and got "You are not allowed to post or edit this content".  What and why ?

    rccharles wrote:
    and have yet to be logged out
    You have pull.  I haven't been so lucky.  I've been logged out even with reloadevery -- reload failed.  I'm now reloading my profile.
    https://discussions.apple.com/people/rccharles?view=discussions
    Robert
    IF I have pull, I sure would like to use it on other stuff. No pull just a regimen that works 100% of the time
    Try this, works 100% of the time, IF you follow this EXACT WorkFlow... (the numbered list assume receiving an email notice)
        Go to your forum of choice Main Page (this will become your 'Base Camp' page)
        click Login, which takes you to the Login page
        Browser Bookmark that Login Page
        click [Sign In]
            you are now logged in and have started a 'timer' in a set cookie
            you will be logged off without notice after ±30 minutes of inactivity
            clicking a Link that is NOT a JavaScript link resets the timer in the cookie
            I use a browser add-on that reloads the Base Camp page every 20 minutes = NEVER logged off by the timer
            - DO NOT close the TAB,    the AutoReloader is tied to the TAB not the page itself
                Safari - SafariTabReloader
                Firefox - ReloadEvery: "Reload web pages automatically"
        Switch to your email client or WebMail page**
        Click the link to Reply
        AutoSwitches to browser, thread page & post to which you are replying = Login State = TRUE
        If you use an AutoReloader, all you need do the rest of your browser session is repeat #5 & #6
    Vary from this WorkFlow by clicking reply in the email FIRST and all bets are off... you will experience login failed on that page but logged in on another... 100% of the time with that particular email notice - I have not found the workaround or cause
    ** OR CMD+click a link on BaseCamp page to open in a new TAB
    https://discussions.apple.com/people/rccharles?view=discussions  = VERY empty below the TAB bar and above the footer
    https://discussions.apple.com/people/rccharles  = normal Bio page
    https://discussions.apple.com/people/ChitlinsCC?view=discussions  = VERY empty below the TAB bar and above the footer
    where did you come up with the "  ?view=discussions  " in the URL? I have never seen this advised... certainly not the plain ol' " /content " addition nor is it tt2's Magic Twangers. Are you trying to force something to happen that never will? It is a wonder you don't get a 404.Not Found error!!
    CCC

  • Why does Canon NOT support the Canon Utilities software?

    The Canon Map Utility software can not detect my Canon GPS Receiver GP-E2.  Over the phone, Canon "Customer Support" had me uninstall all 10 Canon Utilities that I had previously installed, and then let me install only 8 older versions of Canon Utilities.  And, the Canon Map Utility software STILL could not detect my Canon GP-E2. 
    Why doesn't Canon have ANYONE who knows the Canon Utility software?  The first support rep had NEVER used any of the software!  And the second support rep, whom I was transfered to by a Supervisor who told me that this was the most experienced support person for the software, has only used the software ONCE!
    Why does Canon NOT SUPPORT Canon software?????
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

    When I use the GPS-E2 on my camera, the pictures have are geotagged.  It's when I try to use the GPS log that Map Utility has a problem.  I like the idea of recording where I went, not just where each picture was taken.  That way, I can see where I found nothing to take pictures of.
    Calen
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

  • HT3209 Why does apple not allow me to download an hd movie to my pc? Why doesnt apple get it that I simply want to download a hd movie to my computer so that I can repeatedly watch the hd movie via apple tv to my pc as opposed to using isp bandwidth?

    See title.

    This does not answer you question as to "why does apple", because for some reason Apple will treat us like children and try to do everything for you. An unrelated example would be trying to change the IP address of an Airport Extreme Base Station. You cannot. It will always grab the first IP in your subnet whether you like it or not. OK I digress. What I can say is that iTunes, in it's infinite wisdom, will look at your display and decide whether it will playback a HD movie (minimum 1280x800). If not, based upon display settings, it will refuse you the HD download. The "why" I cannot answer other than if you buy the HD movie on any other device like your iPhone 4 or iPad, you cannot share it from your library. So, maybe they get to sell more copies of the movie? That's my best guess. I've been an Apple guy since I first bought my Apple IIe. But honestly, I fume at them for being entirely non-responsive to their customers. Another example is the loss of the scroll arrows starting in OS Lion. Despite thousands and maybe millions of customer complaints, they refuse to listen. (Wow, I feel so much better...)

  • Why does apple not allow iphone to open .rtf word documents

    Before you get lost in my post, please remember this.  I simply want to know how to view .rtf word document files from my mac products.  It's vital.  So there you go, please don't get upset at me because of my love/hate relationship with mac products.....
    I like my apple products in general, but sometimes it seems as if the apple programmers are so stubborn and are not sympathetic to the actual end user.  There seems to be an unnecessary PC vs Mac mindset.  There needs to be a customer mindset.
    People like me have problems seeing certain .rtf word documents that are created at work with a PC, emailed out to the emplyees, and then only those that use non-apple smartphones and computers are able to actually see the original / very important word document.  I (a mac user) am one of those people who gets ostracized because I use an iPhone and Macbook Pro.  Case in point:
    My work prints out the next days schedule in a .rtf word document format.  It's usually an attachment. 
    When I try to view it with the iPhone (the worlds most popular "smart" phone), it can't see this common and very popular file type used by businesses and government employees.  It says "An error occured while reading the document".  Wonderful...I guess I have to call my buddy with a blackberry.
    When I try to view the common file with my $1,200 MacBook Pro, it doesn't know how to open up this .rtf file by default.  I have to select "Open it with: Preview, or Text Edit".  Then, a useless downloads box remains up after the computer has finished downloading...and then it sends the file to an inconvinient destination...somewhere that I have to then go on a hunt for by using the "today" option in finder.  I use the word "useless" because these download windows are always empty and instead of being useful (by actually containing the file that I just clicked to open), it then requires you to go for a time wasting/frustrating hunt.  How hard would that be?  Actually making the experience user friendly?  You tell the computer to download a file, it downloads it, and then shows the file to you in that window? Preposterous!  (sorry, I'm not trying to sound pompous...I'm just frustrated)
    Anyway, sometimes the computer will attempt to translate it (a schedule with peoples names, times, and it's contained within boxes that resemble an excel spreadsheet), but everything winds up all messed up and jumbled.  Instead of reading the .rtf word file...macs resort to a lackluster attempt to translate it for you.
    Maybe I am not seeing things correctly.  I don't know.  I'm just a common man.  I do know this though.  The programmers need to listen to the people and not be different just for the sake of being different.
    How do I get my iphone and macbook to open up a .rtf file as soon as I select it??? I want it to behave like a PC does with respect to being user friendly and logical.  (I don't want to have to save it on a thumbdrive, go to a second computer while jumping on one leg, upload the file, brew a cup of coffee while I wait, translate it, and then send it back to my iphone so that I can view it....I'm only partly joking here)
    Thanks for the help in advance. 

    My iPhone won't view them at all...yet.  I'm hoping that I can figure it out.
    Well when I use pages to open the file on my macbook, it opens up an incorrect interpretation.  Things are mis-aligned.  Think of columns and rows.  If the original document had A1 defined as John Doe and A2 defined as a time of 10:30, then Pages in my Macbook may translate it as A1 - John Doe, A2 - blank, B1 - blank, B2 - 10:30.  The lines that are used to outline boxes wind up different lengths and thicknesses as well.
    For example:
    PC word doc (original)                                                  Mac (translation)
    John Doe  |  10:30                                              John Doe     |
                                                                                                        _______ 10:30
    Above is a simple interpretation, but I hope that it sort of gives you a visual representation of what I'm seeing (if I see anything at all).  Things appear in the wrong places and a one page document turns into 3-4 pages of incorrect "fluff" if you know what I mean.

  • Why do I not get the checkout option when clicking on the document link in the SharePoint workflow task?

    We are trying to use workflows to review and edit pdf files in sharepoint 2010. We are having a couple of issues and am hoping someone has the answer.....
    1)  When myself and coworkers click on the pdf document in the library, we get the check out option as expected.  However when we click on the document link in a workflow task (on the sharepoint site), the pdf opens as a temporary file and we do not get the check out option.  Why does this happen????? 
    2)  The same thing happens when we click on the document link in the workflow task email;   HOWEVER,  one of our co-workers does get the check out option when clicking on the link in the email task.  Why would she get the checkout option using the email and not when clicking on the link in the task list on the sharepoint site ????  We have compared our internet settings and adobe settings to ours and found no differences.
    We are using Sharepoint 2010, Windows 7, IE8, Adobe Reader X or XI.  Some of us have Adobe Pro X and have the same issues.

    No the person who can check out using the link in the email has the same permissions as me.  We have looked at all kinds of settings, profile etc and nothing evident can be determined to explain the reason.  However, one difference we did notice is that this person does not have a default web browser set and thus when clicking on items to open, it always pops up a dialog box asking which program to use to open it with.  This person chooses Adobe Reader and it opens on the Sharepoint server as it should and she gets the checkout option in a dialog box just like clicking on the document in the library.  My theory is that this step of choosing the program to open with is interrupting the typical way a pdf file is handled when clicking on URL links to the document, which is…. it is opened as temporary internet file rather than on the Sharepoint server.   Hopefully someone can figure this out ☺

Maybe you are looking for