Scrollable Frame solution for EPUB Fixed Layout
Copy link to clipboard
Copied
Hi,
I have found a solution (or, rather a hack) which allows us to create scrolling frames for EPUB Fixed Layouts.
You can find the exported EPUB, as well as my InDesign file on my Dropbox: EPUB scroll.
This solution has some weak points and has only been tested in iBooks on an iPad with iOS 8, but here's how it works:
- Create two text frames (one as big as your text requires, and one which will be the container [tip: make the container a bit wider than the text frame])
- Cut the big text frame, select the smaller container frame, and Edit->Paste into
- Right click on the container, select Object Export Options, choose EPUB and HTML and enter "subchapter" as epub:type:
- Open a text editor and create a new CSS file. For CSS code, see below
- Export as Fixed layout EPUB. In the export dialog box, select the CSS tab and add the previously created CSS file
- Done!
CSS code:
div[*|type = "subchapter"] {
position: relative;
}
div[*|type = "subchapter"] > div {
overflow: auto;
}
As you see, steps 1 and 2 are essentialy the same as for creating a scrollable frame folio overlay.
It’s not perfect, and this solution is just a proof-of-concept, but it should get you going.
An obvious problem is that we use basic HTML scrollbar, which is not being displayed in e-book readers such as iBooks on the iPad. Hence, the user has now idea how long the scrollable content stretches. This could probably be solved with a more complex, JS-based solution.
Also, the gradient feather at the bottom (which is intended to create a "fade-out effect) seems not to export well. This one should be easy to solve, placing another rectangle with a gradient in it. But I’m not sure if transparency exports well, and haven’t tested it.
Feel free to use, and improve, this hack!
Thanks,
/Jacob
Copy link to clipboard
Copied
Not only can you make a scrolling frame, you can create workable hyperlinks in the frame
Copy link to clipboard
Copied
I got the gradient feather to work fine as long as it's white with a gradient feather.
Copy link to clipboard
Copied
Thank you so much, for this. Sounds really-really cool.
But can you please tell me what the text editor is and how to open it? I stuck at the fourth step
Very very grateful,
Elena
Copy link to clipboard
Copied
Great! Thank you so much.
Copy link to clipboard
Copied
Hi Jacob, this does work really well but can't get it to work horizontally, is there an idiot's guide somewhere to do this? Do I need to change the coding?
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Thanks bob, I signed up for the newsletter but nothing happened?
Copy link to clipboard
Copied
Check your spam folder.
Copy link to clipboard
Copied
Hello Bob,
I used Universal Scrolling Frames and it works great except when I am using a two state MSO each with a scrolling box. On Mac iBooks it works perfectly, but on iOS iBooks it's erratic. Sometimes one will work and with the other I can see the scrollbar indicator move but the content doesn't. I've tried rebuilding several times but there always seems to be an issue.
Should I simply avoid doing scrolling frames inside MSOs? Or maybe the technique described by the OP in this thread would work better...
Copy link to clipboard
Copied
Without seeing the files it's really difficult to answer that.
Copy link to clipboard
Copied
OK, I made a simple test that shows the problem.
To reproduce: after the page loads, the initial scroll works fine.
Tap the yellow button to see the second state. Scrolls OK. Then use the pink button to go back to the original state, and the scrolling breaks. It appears that you are still scrolling the content from state 2 even though you are looking at a static state 1.
Thanks for any insight you can provide!
Copy link to clipboard
Copied
mewgrasshopper wrote
… To reproduce: after the page loads, the initial scroll works fine.Tap the yellow button to see the second state. Scrolls OK. Then use the pink button to go back to the original state, and the scrolling breaks. It appears that you are still scrolling the content from state 2 even though you are looking at a static state 1.
…
Hi,
tested your test2.epub with iBooks app v 1.2 on OSX 10.10.5.
I can confirm, that I see no problem with scrolling the frame after getting back to state 1 from state 2.
Cannot test currently on any iPad or other iDevice.
If there is a difference, I cannot see that we could do something about the problem.
Sorry. It might be a bug with iOS or a caching problem…
Regards,
Uwe
Copy link to clipboard
Copied
Thanks Uwe, I should have mentioned again that it works fine for me too in iBooks on the Mac. It's only on iOS where there's a problem.
Maurice

