将 Omniture ActionSource 与 Flash IDE 结合使用
我有一个使用文档类在 ActionScript 3 中内置的 Flash 应用程序。
我按照文档实现 Omniture ActionSource 跟踪,将 ActionSource 组件添加到我的 fla 库中,然后将其导入到文档类中并运行配置代码。但是,应用程序无法编译,因为它无法解析组件 (com.omniture.ActionSource) 的路径。
我的类路径包含一个 com 目录(包),我在项目中使用的大多数类都驻留在其中。
有人以这种方式成功实施 ActionSource 吗?
谢谢
I have a flash app built in ActionScript 3 utilizing a document class.
I have followed the documentation for implementing Omniture ActionSource tracking by adding the ActionSource component to my fla's library, and then importing it into the document class and running the configuration code. However, the app fails to compile because it cannot resolve the path to the component (com.omniture.ActionSource).
My class path contains a com directory (package) where most of the classes I use in my projects reside.
Has anyone had success implementing ActionSource in this manner?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Alpinista - 确保您在 DocumentClass 中导入该类
并确保通过使用 mxp 功能将 ActionSource 类添加到项目中:
命令菜单 > Omniture - 将 ActionSource 添加到库
或者
如果您有 CS4 或更高版本,您可以将 ActionSource SWC 文件添加到您的发布设置:
文件 >发布设置>闪光>设置...按钮>库路径选项卡>单击 (+) 按钮 >点击红包按钮>选择 SWC 文件,然后单击“确定”。
如果您仍然无法发布,那么您可能忘记了一些更简单的事情,或者有打字/语法错误。
Alpinista - make sure you are importing the class in your DocumentClass
And make sure you are adding the ActionSource class to the project by either using the mxp feature:
Command Menu > Omniture - Add ActionSource to Library
OR
You can add the ActionSource SWC file to your publish setting if you have CS4 or later:
File > Publish Setting > Flash > Settings... button > Library Path Tab > Click (+) button > Click Red Envelope button > Select the SWC file, then hit okay.
If you still can't publish, then you probably forgetting something even more simple, or have a typeo/syntax error.