Linux 中的 Flex 支持

发布于 2024-10-11 19:12:13 字数 252 浏览 5 评论 0原文

我正在使用 RTFMP 和 flex 开发 p2p 应用程序。我正在使用 adobe cirrus 服务器对此进行一些研究,并在 Windows 上开发了 Flex 客户端应用程序及其正常工作。 现在我想在Linux机器上使用flex创建客户端。限制是客户端应该运行所有类型的Linux Red hat、Ubuntu等。

所有Linux系统是否都支持flex开发?

Linux下的flex开发需要哪些开发?

有没有适合flex开发的IDE?

I am developing p2p application using RTFMP and flex.I am doing some research on this using adobe cirrus server and developed flex client application on windows and its working correctly.
Now I want to create client using flex on Linux machine.the constraint is client should run all type of Linux Red hat, Ubuntu etc.

Will flex development is supported on all for of Linux or not?

What development is required for the flex development on Linux?

Is there any IDE available for flex development?

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

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

发布评论

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

评论(2

讽刺将军 2024-10-18 19:12:13

您可以使用 Flex SDK。

Flash Builder(Adobe 的基于 Eclipse 的 IDE)在 Linux 上不受支持。但是,您可以搜索替代 IDE。 FDT 是一款支持 Linux 的软件。我认为 IntelliJ 也这样做了。 IntelliJ 中的 Flex 支持已在 Max 上进行了演示,非常棒。

You can develop with Flex on Linux using the command line compiler available in the Flex SDK.

Flash Builder, Adobe's eclipse based IDE is not supported on Linux. But, you can search out alternate IDEs. FDT is one that has linux support. I thought that IntelliJ did too. The Flex support in IntelliJ was demonstrated at Max and is pretty awesome.

暗恋未遂 2024-10-18 19:12:13

Emacs 有一个 ActionScript 3 模式 和一个 Flex 调试器。用于配置 mxmlc 的 Makefile 非常简单:

MXMLC = /home/foo/flex_sdk/bin/mxmlc
MFLAGS =

TARGETS  = hello.swf

all: $(TARGETS)

clean:
        $(RM) $(TARGETS)

.SUFFIXES:      .as .swf
.as.swf:
        $(MXMLC) $(MFLAGS) 
lt;

这是一个示例 Rakefile:

task :default do
  DEV_ROOT = "/Users/base/flex_development"
  PUBLIC = "#{DEV_ROOT}/bin"
  FLEX_ROOT = "#{DEV_ROOT}/src"
  system "/Developer/SDKs/Flex/bin/mxmlc --show-actionscript-warnings=true --strict=tr
ue -file-specs #{FLEX_ROOT}/App.mxml"
  system "cp #{FLEX_ROOT}/App.swf #{PUBLIC}/App.swf"
end

和Ant 任务示例:

<target name="compileMain" description="Compiles the main application files.">
    <echo>Compiling '${bin.dir}/main.swf'...</echo>
    <java jar="${FLEX_HOME}/lib/mxmlc.jar" fork="true" failonerror="true">
        <arg value="+flexlib=${FLEX_HOME}/frameworks" />
        <arg value="-file-specs='${src.dir}/main.mxml'" />
        <arg value="-output='${bin.dir}/main.swf'" />
    </java>
</target>

参考

Emacs has an ActionScript 3 mode and a binding for the Flex debugger. A Makefile to configure mxmlc is simple enough:

MXMLC = /home/foo/flex_sdk/bin/mxmlc
MFLAGS =

TARGETS  = hello.swf

all: $(TARGETS)

clean:
        $(RM) $(TARGETS)

.SUFFIXES:      .as .swf
.as.swf:
        $(MXMLC) $(MFLAGS) 
lt;

Here is a sample Rakefile:

task :default do
  DEV_ROOT = "/Users/base/flex_development"
  PUBLIC = "#{DEV_ROOT}/bin"
  FLEX_ROOT = "#{DEV_ROOT}/src"
  system "/Developer/SDKs/Flex/bin/mxmlc --show-actionscript-warnings=true --strict=tr
ue -file-specs #{FLEX_ROOT}/App.mxml"
  system "cp #{FLEX_ROOT}/App.swf #{PUBLIC}/App.swf"
end

and a sample Ant task:

<target name="compileMain" description="Compiles the main application files.">
    <echo>Compiling '${bin.dir}/main.swf'...</echo>
    <java jar="${FLEX_HOME}/lib/mxmlc.jar" fork="true" failonerror="true">
        <arg value="+flexlib=${FLEX_HOME}/frameworks" />
        <arg value="-file-specs='${src.dir}/main.mxml'" />
        <arg value="-output='${bin.dir}/main.swf'" />
    </java>
</target>

References

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