fckEditor air内容编辑器的使用以及在air中使用

air下载地址,好像不能安装,看下边

http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Integration/AIR

 

再下载fck所有文件

在目录中的_samples目录下有个adobeair目录,

有个 app.bat

"D:\airSDK\AdobeAIRSDK\bin\adl" application.xml ../../

注意 ""中的改成自己sdk的目录.这是测试运行

 

package.bat

"D:\airSDK\AdobeAIRSDK\bin\adt" -package -storetype pkcs12 -keystore sample01_cert.pfx -storepass 123abc FCKeditor.air application.xml -C ../../ .

 

""中的内容改成自己air sdk目录 ,建议cmd下运行。可以看出错信息.要是不行的话把上边下载的 fckeditor.air拷贝到当前的目录就是同package.bat 同一个目录

会生成一个FckEditor.air文件。就可以安装了

 

在air中使用,很简单在bbs.actionscrip3.cn中看到,具体网址忘了,原来air可以之间切入html

<mx:HTML
            //这个就是adobeair目录下的sample01.html,
		location="fckeditor/_samples/adobeair/sample01.html" width="100%" height="90%"
		id="fck">
	</mx:HTML>
	
	<mx:Button label="FCK" click="getHtml();"/>
	<mx:Script>
		<![CDATA[
			import mx.controls.Alert;
			private function getHtml():void{
				mx.controls.Alert.show(this.fck.htmlLoader.window.FCKeditorAPI.GetInstance('FCKeditor1').GetHTML());//得到html代码
				trace(this.fck.htmlLoader.window.FCKeditorAPI.GetInstance('FCKeditor1').GetHTML());
			}
		]]>
	</mx:Script>
 

 

你可能感兴趣的:(html,fckeditor,Flash,bbs,AIR)