Flexpaper API 请求示例

发布于 2024-10-19 12:27:34 字数 266 浏览 2 评论 0原文

我正在尝试使用 Flexpaper API,但我不太明白如何实施它们。

http://code.google.com/p/flexpaper/wiki/API

我想在用户进入或通过 pdf 第 10 页后运行一个函数。

如何使用 Flexpaper API 的 getCurrPage 来运行函数。

谢谢!

I'm trying to use the Flexpaper APIs but I don't really understand how to go about implementing them.

http://code.google.com/p/flexpaper/wiki/API

I'd like to run a function once the user is on or passed page 10 of the pdf.

How do I go about getting a function to run using the getCurrPage of the Flexpaper API.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哀由 2024-10-26 12:27:34

基本上与向任何对象添加事件侦听器相同,以下工作正常:

    <fx:Script>
        <![CDATA[
            import com.devaldi.events.CurrentPageChangedEvent;

            import mx.controls.Alert;
            import mx.events.FlexEvent;

            private var _pageToWatchFor:int = 3;

            private function onCreationComplete(event:FlexEvent):void
            {
                flexPaperViewer.addEventListener(CurrentPageChangedEvent.PAGE_CHANGED, pageChanged);
            }

            private function pageChanged(event:CurrentPageChangedEvent):void{
                if(event.pageNum == _pageToWatchFor){
                    Alert.show("Page 3 now being viewed");
                }
            }

        ]]>
    </fx:Script>

Basically the same as adding event listeners to any object, the following works fine:

    <fx:Script>
        <![CDATA[
            import com.devaldi.events.CurrentPageChangedEvent;

            import mx.controls.Alert;
            import mx.events.FlexEvent;

            private var _pageToWatchFor:int = 3;

            private function onCreationComplete(event:FlexEvent):void
            {
                flexPaperViewer.addEventListener(CurrentPageChangedEvent.PAGE_CHANGED, pageChanged);
            }

            private function pageChanged(event:CurrentPageChangedEvent):void{
                if(event.pageNum == _pageToWatchFor){
                    Alert.show("Page 3 now being viewed");
                }
            }

        ]]>
    </fx:Script>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文