AIR中打开PDF
发布时间:2020-12-15 01:21:46 所属栏目:百科 来源:网络整理
导读:??xml version="1.0" encoding="utf-8"? s:WindowedApplication xmlns:fx=" http://ns.adobe.com/mxml/2009" ??????? xmlns:s="library://ns.adobe.com/flex/spark" ??????? xmlns:mx="library://ns.adobe.com/flex/mx" ??????? creationComplete="creationC
?<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx=" http://ns.adobe.com/mxml/2009" ??????? xmlns:s="library://ns.adobe.com/flex/spark" ??????? xmlns:mx="library://ns.adobe.com/flex/mx" ??????? creationComplete="creationCompleteHandler()" ??????? resize="onResize()"> ?<fx:Script> ??<![CDATA[ ???import mx.core.UIComponent; ???private var htmlWin:HTMLLoader; ???protected function creationCompleteHandler():void ???{ ????var ref:UIComponent = new UIComponent(); ????htmlWin = new HTMLLoader(); ????htmlWin.width = width; ????htmlWin.height = height; ????ref.addChild( htmlWin ); ????addElement( ref ); ????htmlWin.load( new URLRequest( 'Flex 4 in Action.pdf' ) ); ???} ???private function onResize():void ???{ ????if ( htmlWin ) ????{ ?????htmlWin.width = width; ?????htmlWin.height = height; ????} ???} ??]]> ?</fx:Script> </s:WindowedApplication> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |