Go to http://demo.quietlyscheming.com/book/app.html and download the
source. The demo allows you to jump to any page you wish. The function
you are probably looking for is "turnToPage".

>From what I can see "_turnDuration" is the property that sets the page
turn speed. It does not appear to be exposed so you may want to add
the following function to qs.controls.FlexBook.as so you can set the
page turn speed.

public function set turnDuration(newTurnDuration:Number):void
{
    _turnDuration = newTurnDuration;
}
                
There appears to be a click event exposed in the FlexBook custom
component - just add an event listener to do what you want. You may
have to inhibit the current event listener to stop the pages turning.


--- In [email protected], "oneproofdk" <[EMAIL PROTECTED]> wrote:
>
> Hi all!
> I'm currently building a intranet app - I'd like to use Ely's FlexBook
> component to show our employee's manual.
> 
> Is it possible to "jump" to specific pages without having to animate a
> flip page by page - in the app I have a index that allows the user to
> see chapters in the manual - so I need to be able to jump to a
> specific page without flipping 50 pages first.
> 
> Is it possible to set the flip speed somehow ? I'd like it to flip a
> bit faster :-D
> 
> I'd like to be able to show a larger version when the user click the
> page - if the user click anywhere on the page (as it works now) the
> page turns - I'd like to only make it turn if the user click either
> upper/lower corner - anywhere else I need a click event to occur -
> then I'd make a canvas appear and load a larger jpg - or even a
> FlashPaper I've been thinking :-)
> 
> Any clues and or examples would be greatly appreciated !
> 
> Besides that - Ely made a great component - thanks Ely :-D
> 
> Thanks,
> Mark
>


Reply via email to