Scrollable frame ignores 'horizontal scroll only' on iPad3

Has anyone else come across this issue.. I have a 1024x788 folio article set to PDF. It renders nicely on both iPad 2 and iPad3, but scrollable frames set to 'horizontal scroll only' (which work perfectly on iPad2) still scroll vertically as well as horizontally on iPad3.  The images pasted into the scrollable frame are cropped top and bottom. Making the frame the same height as the images works, but doesn't explain the difference between the two iPads.

Hi Felipe,
There are multiple reasons for choosing HTML articles instead of indd.
1. size. imagine around 20 pages of this content. the background pattern alone is in html one 4x8px gif repeated from HTMLResources, whereas in indesign it would be a picture of the whole canvas on each page on every 20 pages.
2. stylesheets. If i feel that the headers need to be in a different font or size, i can change the one stylesheet in my HTMLResources instead of opening 20 indd files.
3. Speed in desking job. It takes me not even a quarter of the time to insert all the content into the html articles compared to indd. Indesign is a much clunkier and heavier program to use than notepad.
I could go on, but I guess its no point in this thread..

Similar Messages

  • Hyperlinks in a scrollable frame moving on scroll

    Context:
    Application for iPad, created in inDesign with DPS.
    Situation:
    We have a table inserted into a vertically scrollable frame. On top, we have a series of links that correspond to the table text (please see screenshot below).
    Problem:
    When the table is scrolled all the way to the top, the links shift and no longer correspond the text.
    Details:
    The links and the table are grouped. They were cut and placed into a scrollable frame.
              The links work.
              The scrolling works.
              The links correspond properly to the text when the content is in the 'top left'.
              Scrolling partly up, the links are still okay.
              Scrolling all the way up, and the links scroll further than the table, causing them to be off.
    Screenshot below:
    Any advice would be greatly appreciated.              

    Thanks Bob. I think I found the problem -- the new guy hadn't removed the old scrollable frame from the text when he added the links, so the links were in a scrollable frame, and the text table was actually inside two scrollable frames.
    Sorry to have wasted your time with something that turned out to be an error on our side.

  • JTABLE - horizontal scrolling only for some columns

    Hi all,
    In my JTABLE I have to scroll the horizontal scrollbar only from column 5 to the last, the columns 0 - 4 should be fixed ! Is this possible ?
    Thanks in advance,
    Arpana

    Please see
    http://www.senun.com/Left/Programming/Java_old/Examples_swing/JTableExamples1.html
    http://www.senun.com/Left/Programming/Java_old/Examples_swing/src/examples/FixedColumnExample.java

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    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: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Vertical scroll ONLY

    Hi,
    I'm trying to make a JTextArea scrollable in vertical direction only. I've not found even one solution on this forum and many others.
    AWT version of JTextArea (ie TextArea) allowed vertical or horizontal scroll only, simply with constants given to the constructor. But in Swing version (ie JTextArea), nothing... :-o
    My JTextArea used word-wrap, so that's why I don't want a hrz scroll, cause when i've got such a both-direction-scroll, word-wrap is no more required since JTextArea width increased...
    I tried this :
    JScrollPane scrollPane = new JScrollPane(textArea,
         JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
         JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);of course, even if the horz scrollbar was no more visible, the jtextarea width was still extended.
    I just want something like a Word document, like a simple textarea on a web page, and so on...
    so I tryed to force the textarea width to match the viewport width with a "resize-listener" :
    scrollPane.addComponentListener(new ComponentAdapter()
      public void componentResized(ComponentEvent e)
        Dimension dim = new Dimension(scrollPane.getViewport().getWidth(),
         (int)textArea.getPreferredSize().getHeight());
        textArea.setPreferredSize(dim);
        textArea.revalidate();
    });it looks better but now my vertical scrollbar doesn't scroll the entire document (the scrollpane thinks textarea is smaller than it is) this is surely due to the line wrap, but I don't know how to deal with it...
    please help !
    many thanks in advance :)

    This is what i do, and it usually works:
    list = new JList(aListOfItems);
    scrollPane = new JScrollPane(list);
    scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);          
    scrollPane.setMaximumSize(new Dimension(160,200));
    I've sometimes found that if i fail to set the scrollpane's size, it does not come up on screen properly, so maybe that's your problem.
    By the way, there are 6 arguments that the setHorizontalScrollBarPolicy / setVerticalScrollBarPolicy method can take:
    JScrollPane.HORIZONTAL_SCROLLBAR_NEVER
    JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS
    JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED
    JScrollPane.VERTICAL_SCROLLBAR_NEVER
    JScrollPane.VERTICAL_SCROLLBAR_ALWAYS
    JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED
    It's pretty obvious what they mean.

  • Sidecar.xml and horizontal scrolling

    Just followed the documetation and just uploaded a folio with a sidecar.xml file with
    set to never and  set to true. This should have set the articles to Horizontal swipe only but it never. I had to go into the folio producer tools and set it there. Am Idoing something wrong?

    Christian,
    the syntax for using the "horizontal scrolling only" feature in a sidecar
    file is
    it can be "true" and "false".
    You mixed up with the values for smoothscrolling articles, wich can be
    "portrait", "landscape", "always", never.
    —Johannes

  • Swipe to next article in horizontal scroll. frame

    Hi,
    If the reader reaches the end of an horizontal scrollable frame, the swipe to the next article does not work (neither does two finger swipe work). Instead, swiping to the next page on the end of an vertical scroll. frame works fine (v29 viewer).
    One more thing to fix.
    Kind regards,
    Yves

    Yves,
    Are you testing in Adobe Content Viewer or a custom viewer? We specifically did work to make swiping to the next article work inside a horizontal scrollable frame.
    Neil

  • Failed to load the folio. Pan Only, Scrollable Frame Overlay

    Hello All,
    I get the error "Failed to load the folio." when previewing a page in the Content Viewer with a scrollable frame overlay using this technique described here:
    Create scrollable frames using Pan Only:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f605e8ea44412b13edc5ec-80 00.html
    I checked the KB but the solution to remedy the problem is vague. I am not using any offending characters and what's odd is that I can pan and zoom images without a problem. When I try to scroll the text I get the error.
    The folio I am testing is a new document, there is no other content other than this text frame. I've compiled other folios without a hitch but this is the first instance I am using this technique. The workstation I am working on had the prerelease tools on it then upgraded to the most current version about a week ago.
    I am guessing that maybe the prerelease tools were not properly removed and that could possibly be a problem? If so what files am I looking for or is there a link someone can provide?
    Or maybe the current tools/Content Viewer need to be removed and installed again? Again, what files need to be removed?
    Thanks for your help, I really appreciate it.
    D.

    Hey Peter,
    Thanks for the link. I have tried both techniques, the layer and the paste into and both yeild the same result with the "Failed to load the folio." error. I also forgot to mention that I am using CS5.
    D.

  • When I put in a scroll in fcx, I get a single frame of the scroll flashing on the screen about a second or two before the scroll appears. There is nothing on the timeline and this only appears after I have made the quicktime or dvd. Any thoughts?

    When I put in a scroll in fcx, I get a single frame of the scroll flashing on the screen about a second or two before the scroll appears. There is nothing on the timeline and this only appears on the quicktime or dvd. Any thoughts?

    '''I fixed mine by removing the Ask.com extension.'''
    Tools
    Add-ons
    Settings icon
    View Recent Updates
    Ask.com '''DISABLE'''
    Running FF 8.0 on Windows 7 (64-bit)

  • I have created apps on facebook for the canvas width 810px, the horizontal scroll is coming only on mozilla

    I have created the apps on facebook to the width 810px , the horizontal scroll is coming only on mozilla .
    No scroll is coming on safari, google chrome, please give me the feedback how it will be resolved .
    the url is:http://apps.facebook.com/315190438545222/

    It looks like your app's content is 810px wide, but its container in the facebook page is only 760px wide in all browsers. (In Chrome, the right side of your content is just cut off, so you can't see the end of your header image.)
    If you want your whole content to fit on this page, it must be 760px, not 810px.

  • How do I view the Horizontal Scrolling bar and status bar at the bottom of the screen. I can only see the top menus, toolbars and vertical scroll bar?

    Before the most recent upgrade, the bottom horizontal scrolling bar and status bar appeared on my screen. Now since upgrading, I cannot see the. Anyone ideas how to restore them?

    If you haven't already, you could force-quit Quicktime by using the menu option from the desktop (finder) and choose Quicktime.
    Not sure what you have frozen on the screen, be it a failed movie, or some unusual screen shot. If you can find by date (created) you may be able to look for .mov or quicktime suffix name or other video file content to delete it.
    And you may have to restart your computer and perhaps run repair disk permissions from Disk Utility's first aid on the hard disk drive in your computer.
    Not sure if all that would help now, but it is something a few days late...!
    Good luck & happy computing!

  • How do you disable text cursor movement when scrolling horizontally with a tilt wheel or touchpad; or rather, how do you make these horizontal scrolling actions only scroll horizontally and nothing else?

    Frequently when I use a touchpad or tilt wheel mouse to scroll horizontally, the web page does not scroll at all. Instead, the text cursor moves left or right. If the text box is off-screen, the page will jump to it, losing the spot on the page I was reading. This happens way too often given the sensitivity of touchpads and tilt wheel mice.
    I'd like to just disable the cursor movement function of the horizontal scroll. I don't feel that it is useful and it actually hurts my web browsing experience. I do not want to disable horizontal scrolling though; I just want it to always scroll horizontally and do nothing else.

    You would make this a little easier if you posted a link to the page.
    Most of the jump seems to be some extra padding or margin between the tabs  when you rollover, but I am not able to find it.  Is there any other css that is governing this page? I did remove a couple of <p></p> set of tags you had  and it improved the jump, but it is still there.
    If the page is live, run it through the validator http://validator.w3.org/ , fix whatever errors it finds, if you still have the jump, post a link to the page and the issue might get found.
    Gary

  • Scrollable Frame issue on iPad 'Adobe Viewer'

    I'm wondering if anyone else has this issue when previewing a folio with the iPad viewer.
    The issue is when I have a full (or even part) page scrollable frame on a page and once I have vertically swiped/scrolled to the end of the scrollable frame, then the next vertical swipe seems to stick much more than usual and requires a much longer/sustained swipe to get it to move on to the next page.
    This issue is only occuring when previewing a folio on the iPad viewer. It behaves as expected (short normal swipes) when previewed on the Desktop 'Content Viewer'. It also behaves as expected when simply previewing from the Folio Overlays panel – both on the Desktop viewer and iPad viewer. It also behaves if I import the article as PNG format into a folio, however I am requiring vector quality/display for this project so can't ignore the issue.
    It also does not fix the issue to select 'raster' rather than 'vector' in export options within the 'scrollable frame' folio overlay panel.
    My first thought was that maybe this is just a quirk of the iPad viewer, but the fact that the behaviour works in most other scenarios has me guessing. Maybe i am missing something somewhere which may explain this. I see the use of Scrollable Frames in this manner within many apps (in vector/PDF) without experiencing this issue, hence why I am leaning towards it being a quirk of the viewer when as a folio with a PDF scrollable frame.
    I am using the latest viewers (Desktop and iPad app). The folio's tested trying to resolve this issue have been in both v26 and v27. Using InDesign CS6 on Mac. Same issue happens whether iPad is horizontal or vertical.
    Please let me know if you need any further details on my setup or what i have been testing if that will help.
    Thanks
    Ross

    i had this problem once, in the folio producer have you given the folio a name, number and description?
    also in the viewer on the ipad they are not nessecarily in the right order - so scoot about on it
    if all else fails, delete the folio and re-upload, we had a glitch once and the only solution was to re upload
    Tim

  • Can't swipe to next article on scrollable frame?

    Hi,
    I'm not sure what's happening here. I've got a page with a scrolling frame which covers the whole page, frame is set to scrolling, scroll direction is vertical only. I've just updated some of the scrollabe content and now when I view on iPad I can't swipe to the next article, the swipe to next article worked fine yesterday, all content and links work OK I just can't get off the page now... any suggestions?

    So Okay,
    Excuse the lame design (only 10 minutes of my lunch break left)
    So I quickly mocked up a 768x1024 doc (Horizontal)
    Made a Scrollable frame 732x952px to sit on the page bleed at the bottom and within left and right margins
    Created 4000px Deep worth of fake content (Grouped and pasted into the scrolling frame)
    Set to vertical scroll only
    Popped a stickly overlay on top and a background image underneath
    All in seperate layers.
    Imported as a PNG article
    and here are the results.
    All images are screen grabs and the last demonstrates that even with a scrolling frame this long - if you import as png you can still horizontally swipe off it
    All's good!
    Tim

  • Scrollable Frames bugs

    Hi,
    I got some errors with drop 19 while creating my first magazine....
    1. Horizontal slider, placed on the left side. On the right side is an image with a contour and a textflow (nor sure whats the name for that n english...). If you scroll the text horizontally to the left, the textflow is as if the image is placed in the text. The issue is, that theres a bug with the overlay and placed mages on top of it, it thinks it is placed within the scrollable text
    2. You cannot leave a page without a button when the scrollable text area is too big. I think at the end of the srollable text the page should flip. Users might be confused if nothing happens. This must be fixed soon. As i have a single license and a tight time frame, i cannot fix it later (without paying for it again..). Drop 19 is nearly useless with.scrollable frames, i read a couple of ther reports naming that issue...
    Hope to get some jelpfull answers. In my opninion, the whole dps is in early beta. I started using it with drop 9, the handling is better now, but some fetures are still missing...
    Kind regards
    Simon

    Another issue: scrollable text withn a scrollable text is working, but only if the scrolling frame is visible. If it is not visible on lage load, the font site s reduced and not scrolling, it is repeatsble, i can provide indd files if required

Maybe you are looking for