1

我正在尝试使用 FlexPaper 来显示 Pdf 文件。我也将pdf转换为swf,并通过按下按钮将其加载到flexpaper控件中。它显示 100% 并且文档无法在 FlexPaper 控件中显示。

protected function button1_clickHandler(event:MouseEvent):void
{
    myViewer.SwfFile="test1.swf";
}

<s:Button x="84" y="491" label="Button"  click="button1_clickHandler(event)"/>
<flexpaper:FlexPaperViewer id="myViewer" x="10" y="26" width="892" height="284"  >
</flexpaper:FlexPaperViewer>
4

1 回答 1

1

你的代码对我有用。我认为问题可能出在 test1.swf 文件上。

请参考以下网址并将pdf正确转换为swf。

http://flexpaper.devaldi.com/docs_converting.jsp

如果你有任何问题问我。

于 2012-12-20T09:50:43.010 回答