- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从本教程 http://www.brighthub.com/internet/web-development/articles/11010.aspx
我找到了下面的代码。有没有办法解决这个问题,所以 mxml 文件只有 mxml,脚本标签之间的代码放在 actionscript 文件中?
谢谢。
-缺口
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
width="600"
height="400"
frameRate="100"
creationComplete="CreationComplete()"
enterFrame="EnterFrame(event)">
<mx:Script><![CDATA[
public function CreationComplete():void
{
}
public function EnterFrame(event:Event):void
{
}
]]></mx:Script>
</mx:Application>
最佳答案
在 Flex 中有几种方法可以实现这一点:
<mx:Script source="yourfile.as" />
includes="yourfile.as"
带有脚本标签的声明:
<mx:Script
<![CDATA[
include "yourfile.as";
//Other functions
]]>
</mx:Script>
Application
的主 MXML 文件): package {
public class MainAppClass {
//Your imports here
public function CreationComplete():void {
}
public function EnterFrame(event:Event):void {
}
}
}
<component:MainAppClass xmlns:component="your namespace here"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
width="600"
height="400"
frameRate="100"
creationComplete="CreationComplete()"
enterFrame="EnterFrame(event)">
</component:MainAppClass>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
width="600"
height="400"
frameRate="100"
creationComplete="model.CreationComplete()"
enterFrame="model.EnterFrame(event)">
<mx:Script>
<![CDATA[
[Inject]
[Bindable]
public var model:YourModelClass;
]]>
</mx:Script>
</mx:Application>
<mx:Application blah,blah,blah>
<component:YourComponent />
</mx:Application>
<component:YourComponentCodeBehind creationComplete="model.creationComplete()"...>
//Whatever MXML content you would have put in the Main file, put in here
</component:YourComponentCodeBehind>
package {
class YourComponentCodeBehind {
//Whatever AS content you would have put in the Main .as file, put in here
}
}
关于apache-flex - 分离 MXML 和 Actionscript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4632490/
我想做的是:创建一个带有一些子组件的 MXML 组件,然后通过 MXML 扩展它以创建一个具有更多子组件的新组件,而不会丢失原始集合。 换句话说 创建一个组件 bc.mxml 然后将其
正如标题所暗示的,“组件”(New –> MXML 组件)和“模块”(新建 –> MXML 模块)有什么区别? 谢谢, 大卫 最佳答案 模块被编译成 SWF 并在运行时使用 ModuleLoader
我一直在尝试创建一个自定义 mxml 组件来扩展另一个自定义 mxml 组件(即 MyMXMLComponent -> BaseMXMLComponent -> Group)。 我一直在读到,尝试向
在我的应用程序中使用 Flex-Blazeds-java...,在我的 Flex 应用程序端有两个 mxml 文件 Main.mxml 登录.mxml 在 Main.mxml 文件中有一个名为 Log
你好 我有一个正则表达式的问题。我在 MXML 中有一个 RegExpValidator,我希望它在源包含 a 或 b 时无效 我的 RegExpValidator 是 我的表达式是expressi
如果在 MXML 中可以完成的所有事情也可以在 ActionScript 中完成,而且很多事情在 ActionScript 中更容易完成(循环、条件等) 为什么要花时间学习 MXML? 我在这一点上的
我有一个宽度设置为 100% 的组合框。但是,当其中一个元素变大时,组合框也会变大,从而在我的应用程序中产生滚动条和其他丑陋之处!如何将组合框包含在其父项中? 注意,如果下拉列表较大,只要关闭的组合框
这是我尝试使用 MXML 库解析的 XML 文件: REQ 4567 192.168.1.1
我有一个可以运行的视频电话应用程序,但我现在正在尝试从数据库中获取一些数据。我对 PHP 最满意。 我正在尝试从名为“chat”的数据库中的“users”表获取 1 个值,其中 status=1(状态
我想在 AdvancedDataGrid 中提供我自己的 sortItemRenderer,如下所示: MyRenderer 是我编写的一个类,但 Flex 没有看到它并给出“未找到定义”错误,因为
当我在 MXML 组件中定义自定义属性时,我还想定义该属性的一组可能值,以便在调用代码完成函数时让 Flex Builder 显示(自定义属性的可能值)。 知道怎么做吗? 最佳答案 使用 [Inspe
我有一个只能在 classA 中使用的 classB。但是,classA 被编写为 mxml,而不是 actionscript 代码。是否可以在 MXML 中嵌套类或在同一个 .mxml 文件中的根标
我正在学习 Flex 并发现了一些奇怪的行为。当我尝试编译我的代码时,我抛出了这个错误 - 错误:调用可能未定义的方法 updateStory。我以前以这种方式使用过方法调用,但在这种情况下无法发现问
在我的MXML文件,我有一个带有三个 vbox 的选项卡导航器。
我怎么说 MXML 组件在某个包中?好吧,它在不同的文件夹中......我知道怎么做 ActionScript......但是当我在 MXML 中这样做时,我没有明确声明包,因为我不知道如何以及何时将
这是类(class): package fnc { import mx.containers.Canvas; public class Deck extends Canvas {
跳出框框思考... 可以采取哪些可能的基本方法来创建可以运行 Java 的 Flex 组件? 我知道我可以轻松地使用 Flex 浏览或启动 Java 应用程序,但有些事情只有当我可以从 MXML 组件
我有一个带有表单的 MXML,里面有两个 TextInput。我讨厌在 MXML 文件中包含任何代码(我来自 JavaScript 格式)所以我使用了 mx:Script source="extern
从本教程 http://www.brighthub.com/internet/web-development/articles/11010.aspx 我找到了下面的代码。有没有办法解决这个问题,所以
是否有一种简单的方法可以在 MXML 图形中绘制不涉及贝塞尔曲线的圆弧?或者我应该创建自己的组件? 谢谢! f 最佳答案 我最终创建了自己的 mxml 图形组件来绘制弧线。我覆盖 Ellipse Sp
我是一名优秀的程序员,十分优秀!