Content Viewer disables buttons + scroll direction

Hello, I am facing two problems in trying to make an interactive magazine for the iPad which is supposed to be seen by my teachers in Content Viewer.

(1) on a single page, I have a large number of thumbnails, which shows a larger version next when you click on the thumbnails. Each picture is a button which shows/hides the other buttons. When I have the page convert an interactive PDF, they work perfectly. However, they do not work in Adobe Content Viewer, and I have no idea why. I just changed the event of buttons to be "click" instead of "tap or release" without success.

Any suggestions why this is happening?

(2) whenever I Discover magazine in its entirety on my iPad, it seems good, but for some reason any that it scrolls left/right. I forced to shown vertically, so it does not change every time that I turn the iPad, but I want it to scroll to the top and bottom, do not side to side. There is already a little slide show in the magazine that requires you to drag to the right or left, so do not be confusing.

Show/hide the buttons does not work in DPS. How much reading and studying all DPS have you done?

I don't know that yet, I understand what you're talking to number 2. Particular items scroll upwards and down. Article of articl scrolls from left to right unless you set it to horizontal scrolling only.

Bob

Tags: Digital Publishing Suite

Similar Questions

  • Navto links does not work in the content viewer

    When I consult my folio in Content Viewer, the buttons I created to navigate to other articles in the folio do not work. I chose the option of hyperlink and typed navto://articlename in the field, so I'm not sure of what could be the problem. Has anyone else had this problem using CS5?

    Should be. All I can say is that I had no problem with navto: / / buttons.

    Check the spelling and make sure that the buttons are on top of everything else.

    Bob

  • Connect button in the web content viewer.

    Issue, within the web content viewer is there a way I can add the sign in button in the header, I noticed washingtonian has done this, and I searched everywhere and couldn't manage to find information about it.

    I've provided the link for your reference.

    http://www.Washingtonian.com/Tablet/index.php?WV=s%2FWashingtonian%2F0 5bd042e967b4b25a5e0942b4f879a5a%2FJuly_2013%2FCover.html

    The "Sign In" feature in the web viewer is currently only available to DPS Enterprise Edition with active direct payment accounts and only allows access to the readers who have purchased subscriptions or questions directly from the Publisher (for example, not on the app store). This feature is not available in the Professional Edition accounts.

    To enable the connection to the web viewer, you must provide the team DPS with the 'Integrator ID' and 'ID' of each production account where you want this feature is enabled. The DPS team will establish a preference in the back-end systems that display the Sign In link to these accounts, the next time the page is loaded by the web viewer. The best way to provide this information to the DPS team is through your Adobe representative or the customer service.

  • Adobe Content Viewer: Vertical presentation General-button disappeared

    Hello

    Does anyone know why, in the field of the top navigation (at the top right), the Preview button has disappeared in the content viewer? Since a few days, it is possible to see a horizontal overview of the chapters. Or it has to do something with the folio? (It has not changed anything in InDesign)

    Thanks a lot for your help. Best, Robin

    This is part of the changes we made in the communiqué of 25 IU. Instead of tapping this button just drag the horizontal scroll bar along the bottom of the screen. This will take you in navigation mode.

    Neil

  • Disable the scroll bar when the content is less than the viewport?

    Hello

    I have a vertical scroll bar has always shown (JScrollPane.VERTICAL_SCROLLBAR_ALWAYS).
    but I want that it should be disabled when the content in the display is lower at the height of the viewport.

    For example, browser Chrome in Windows: when you open Google, the content of the page is fairly low in height and scrolling in Chrome bar will be disabled. As soon as you have enough content on the page of the scrollbar will be active.

    How can I achieve this?
    Thank you

    Hello

    It isn't really a problem, I just know that it is a limitation of the SWING, (...)
    Almost all app have this behavior; It is not very nice visually.

    I don't have Chrome and haven't seen this problem until now, anywhere (but it is true, I'm way behind in terms of GUI mode).
    The behavior that I'm used to (and which Swing designers apparently supposed to be standard too), which is a scroll bar disappears when the width of the view does not justify it ( SCROLLBAR_AS_NEEDED ). Using SCROLLBAR_ALWAYS implies that you want to the scroll bar, no matter if the width of the merit. How the scroll bar looks like in this case sounds like a look and feel selection instead (I don't have older OSs, but maybe you know an operating system where this behavior is the norm? In this case, Yes, this is a limitation of the corresponding Swing L & F).

    Maybe there is a work around.

    Because this isn't the OS Lebanese armed forces, which can be "manually coded", by listeneing to resize events and thus change the appearance of the ScrollBar.
    Assuming that the "disabled" appearance scroll bar is what you are looking for (no idea, it's just an example, if that do not meet your needs, you can do something else in the placeholder code), here is one, certainly dense enough, workaround.
    Notice how the vertical and horizontal scroll bar is different (I applied workaround only to the latter).

    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    
    public class TestDisableScrollBar extends JPanel
    {
        private static final String SHORT_TEXT = "text";
        private static final String LONG_TEXT = "texttexttexttexttexttexttexttexttexttexttextte";
    
        private static void createAndShowGUI()
      {
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea textarea = new JTextArea(5, 5); // just to take up some space.
            final JLabel label = new JLabel(SHORT_TEXT);
            JPanel view = new JPanel();
            view.setLayout(new GridLayout(2, 1));
            view.add(label);
            view.add(textarea);
            final JScrollPane widget = new JScrollPane(view, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
            widget.getHorizontalScrollBar().setEnabled(false);
            widget.getViewport().addChangeListener(new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    widget.getHorizontalScrollBar().setEnabled(
                            widget.getViewport().getWidth()<
                            widget.getViewport().getView().getWidth());
                }
            });
            frame.getContentPane().add(widget, BorderLayout.CENTER);
            JButton alternateText = new JButton("Switch width");
            alternateText.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    label.setText(label.getText().equals(SHORT_TEXT)?
                        LONG_TEXT : SHORT_TEXT);
                }
            });
            frame.getContentPane().add(alternateText, BorderLayout.SOUTH);
            frame.pack();
            frame.setVisible(true);
          }
    
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
                  }
              });
        }
    
      }
    
  • Video does not play in Adobe Content Viewer App if offline

    Hello world!

    I integrated into my folio of videos and when tested on Adobe Content Viewer, they do seem to work if I'm not connected to the internet.

    I tried to generate items jpg and pdf, no change.

    I tried to place the video first and qualifying with a button, without change.

    I tried a simple video overlay, no change.

    All of these work very well if I'm online, do not work if my wi - fi is disabled.

    Anyone facing the same problem or has a solution?

    Thank you!

    It's the same problem reported in this thread: videos do not play in application in the Adobe viewer offline. We're investigating.

    Neil

  • Unable to show the browser option in Adobe Content Viewer

    Hello

    By mistake I upgraded my OS iPad for iOS to iOS 5.1 6. After the installation of the content unable Adobe viewer to see the option of browser where I can see the title, byline, information description and kicker.

    Please suggest if is it possible to see these articles without outsider of the operating system.

    Thank you.

    Pub in DC

    You also update Adobe Content Viewer? In the last version, the Browse button at the top right was abducted and combined with the action of scroll down bar. You can still see the title, author, description, and kicker when you use the scroll bar. That's how readers will see R25 folios. It has nothing to do with iOS.

  • Possible to open a PDF file in Content Viewer on iPad

    I was asked to include several PDF Datasheet in a folios existing presentation for some of our sales people. In the past, PDF files have been loaded on the iPad and to access, they close the content viewer application, open acrobat and open the PDF file. They asked if there is an easier way for them to access the PDF files. Without adding them as additional articles, is it possible to add a PDF file in the folder of links of a Folio, and then create a button to open this PDF fullscreen?

    Use a HTMLResources.zip file.

  • iPad (Content Viewer) shows more folios then I see in the producer of Folio. Nothing is downloaded.

    Hi, my iPad (Content Viewer) shows more folios then I see in the producer of Folio. Nothing is downloaded. Can I somehow remove these slips, with as an "account restore" - button? There are two folios published, even if I see three in my iPad (Content Viewer), which two of them should not be there. Any solution to this?

    Hi Andreas,

    You should contact the company's support and they can help you with this. You can find contact information by logging on http://digitalpublishing.acrobat.com/ and looking at the Middle bottom of the screen.

    Neil

  • Content Viewer application

    Well, here's my first question. Just signed up for beta and not really still digging but I was wondering. What is the problem with the content viewer application. It will go away? I have a selection of DPS mags that I created for my last magazine that 'closed shop '. I lose access to the journals (Fly & Light Tackle Angler) I stroke? Half of my problems have been lost in my application in the official version, which has been in the App store ater, they shot on the app. Can't retrieve them. I was wondering if I'll lose my entire collection.

    Hi Ronald,.

    You can migrate folios that exist in Folio Producer on a solution of digital publication. It is a migration on the portal tool to do this. If the folio is a folio local (i.e. not saved in Folio Producer) then you will need to push them to the producer Folio and migrate, or export InDesign documents as files .article and download directly into the new dashboard.

    Neil

  • Remove previous Adobe Content Viewer numbers

    We do not have licensed DPS yet, but the process to get the company to register, we have created a few example docs in InDesign and shared directly with decision makers.

    We now want to delete some of these examples and "not shared" folios, but they always appear in the content viewer?  If I delete the question, the thumbnail remains with the possibility to download again.

    Help?

    If they choose to archive the content on their ipad, then it will be gone forever, but they must explicitly check it. There is no way to delete a downloaded piece of content to the device of someone remotely.

    Neil

  • Folio is not opening in adobe content viewer

    A year ago, I created a magazine with Digital Publishing Suite for a college course and downloaded on my ipad in Adobe Content Viewer. It was a computer at school and the version of Indesign, so I don't think I'd be able to reload the file on the application Viewer happy if I needed to. When I open the content viewer, I see the cover of my magazine alongside file "Adobe" that says "Release". This Adobe file is newly, and is therefore a blue icon in the corner of my magazine. When I click on my magazine, the bit of info 'i' turns into a symbol of the spinning, as if it were loading. However, nothing will load and nothing happens. I left it for hours and nothing happened. When I click to open the Adobe output file, it opens a clear grey screen with no content, buttons or whatever it is. There is nothing I can click on or make it forces me to exit and quit the application.

    Can someone help me please determine the cause do not open? I am frustrated at this point and I'm nervous to delete and redownload the app where my file is lost. Like I said, don't know if she would always be there or if I could pick up again. (I also logged into the app with my Adobe ID, if that helps)

    Thank you!

    Unfortunately, you have to uninstall and reinstall the application Adobe Content Viewer, and this would lead to the loss of the folio that see you because you added to the device using glimpse on the device. Since you did a year ago, there has been several changes IOS that requires updates to the application. There is really no way to fix this problem without uninstall, reinstall, or then put the content on your device again.

    Neil

  • How to fix the broken in the content Viewer Web items

    Hi, I have a Folio that was released and is now available on embedded Web content viewer. Some items are, courses down, broken and moved out to the right, expanding the content too. I noticed that this happens only on items to scroll smoothly, both with images and text. Is there something wrong with the publication, or coating that causes this? Thank you.

    Here is the folio online. Digital edition | Counsel for the company

    And here is the page of one of the items for a glance.

    Screen Shot 2014-10-29 at 12.33.39 PM.png

    Is this the reason (under "known issues with social sharing / web viewer")? Digital Publishing Suite help | DPS Bug Fix Release Notes

    I do not use V32 on this folio.

  • Hyperlink does not work in Adobe Content Viewer?

    Hey

    I'm trying to link a photo to another page in InDesign. No matter how I do it, it is especially important that it works .

    So far, I managed to create an active hyperlink from a photo to a page, and it works on my computer. But as soon as I test in Adobe Content Viewer, nothing happens when I press the photo.

    Is this possible to do?

    Thank you!

    Here is the link to the help documentation navto as well as a screen shot on how to put in place.

    Digital Publishing Suite help | Hyperlink and button overlays

    navto://ArticleName#page is the format. #0 and ArticleName ArticleName # you will bring them both to the first page of the article.

    Here is the link to Hypertext documentation and help buttons Digital Publishing Suite | Overlays of hypertext link and button

  • white label content viewer

    I wonder it would be possible to send customer material through our company branded content viewer. I saw this kind of solutions in the App Store lately.

    Basically, we would need several app question, then server for distribution right? Or is it more simpler method for this kind of solution?

    Thank you


    Niko

    You build an application of several question and add direct, correct payment. This would require a company DPS agreement.

    Neil

Maybe you are looking for

  • Increase the RAM memory

    Hi all... I use hp envy 4 1201tx ultrabook. I plan to upgrade my RAM memory. I have 4 gigs of RAM with maximum possible memory to 16 gigs. Can I contact HP for the upgrade. Still on warranty.

  • Snow Leopard for my 2.2 GHz Intel Core 2 Duo

    Hello I want to upgrade my Macbook 2.2 GHz Intel Core 2 Duo 4 GB 667 MHZ DDR2 SDRAM 10.5.8 to Snow Leopard. But my Macbook says that it s is not possible. I Don t know where is the problem. Could someone help me, please?

  • new owner, old computer: how to change the property?

    I get back from a near-fatal brain injury. A friend gave me his old laptop and permission to try to help in my rehabilitation. I am trying to appropriate, without losing access to his files (which I'm currently collecting and unload on other media),

  • Pentium 4 running software that requires a 64-bit, etc.. Is this possible?

    I have a Pentium 4:992.9 > MiB memory.> (2) 3.o GHz CPU;> 21.4 available disk space (with Linux installed, which I could not remove).I want to run the software requiring:> XP (64 - bit compatible) (told me that the computer would go very slowly if I

  • speakers of HP pavilion dv6-7020us has stopped working

    My speakers stopped working at some point, but I don't remember programs or updates that may have caused this. I uninstalled everything I know has recently been installed. I ran an update driver for the items pertaining to the audio device manager.