When my megazine demo is viewed on a monitor big enough to accommodate the width/height of my book, everything works as expected, but when the monitor is small, the book can't be viewed completely, so I configure in megazine.asul the scrollpane with id="pagecontainer" with mousemode="mouse_move".
Then, the horizontal axis (x) is moved with the mouse, but the vertical axis (y) don't moves. Here is my definition:
<scrollpane id="pagecontainer" anchors="0,50,pw,pageh+50" clipchildren="false" mousemode="mouse_move">
<box name="$viewport$" anchors="0,0,0,0" width="pagew*2" height="pageh" clipchildren="false" />
</scrollpane>
So I went to ScrollPane.as and added this line to updateConstraints(), about line 413, before constraints = new Rectangle...
if (stage && (viewport.height > 0) && (stage.stageHeight < viewport.height)) dy = -(stage.stageHeight/2);
Then, everything works as expected. I'm not sure if this is a fix or I'm configuring something wrong on my megazine.asul...