红联Linux门户
Linux帮助

在Ubuntu下使用vim+flex sdk开发AIR应用

发布时间:2015-04-24 10:38:57来源:sban.biz作者:linux人

本文假设阁下已浏览过关于设置air sdk的文章,且已安装,配置好Ubuntu LTS系统。


1,安装vim与配置flex sdk

安装vim:

sudo apt-get install vim

从Adobe labs下载flex sdk 4.1,解压至任一目录下,如/usr/share/flex/sdks。

vim ~/.bashrc

在此配置文件尾部添加PATH=$PATH:/usr/share/flex/sdks/flex_sdk_4.1/bin


2,AIR Hello World

Alt+F2,打开gnome-terminal

echo $PATH

看到flex sdk 4.1的路径,说明配置已成功。

cd ~/$user/flex
mkdir helloworld
cd helloworld
vim helloworld.mxml

编辑helloworld.mxml的内容如下:

<?xml version="1.0" encoding="utf-8"?>
<!--
sban 2010
http://sban.biz/
-->
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" title="Hello World" backgroundAlpha="0.5">
<mx:Label text="Hello World" horizontalCenter="0" verticalCenter="0"/>
</mx:WindowedApplication>

新建hellworld-app.xml文件

vim helloworld-app.xml

其内容如下:

<application xmlns="http://ns.adobe.com/air/application/2.0">
<id>sban.flex.helloworld</id>
<version>0.1</version>
<filename>helloworld</filename>
<initialWindow>
<content>helloworld.swf</content>
<visible>true</visible>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<width>400</width>
<height>300</height>
</initialWindow>
</application>


3,编译与运行

amxmlc helloworld.mxml
adl helloword-app.xml
在Ubuntu下使用vim+flex sdk开发AIR应用

注:以上图片上传到红联Linux系统教程频道中。