Actionscript 和查询字符串问题

发布于 2024-09-15 06:48:03 字数 261 浏览 2 评论 0原文

目前在 Flash 中,我尝试根据查询字符串提取一个值。示例..

Html 代码:

myVideo.swf?video=ThreeGuysOneBall.flv

Flash 代码:

_textbox1.text = video;

这适用于主 Flash 动作脚本,但我需要在我创建的类构造函数中使用查询字符串。如何将查询字符串传递到单独的动作脚本文件?

Currently in Flash I am trying to pull in a value based on the querystring. Example..

Html code:

myVideo.swf?video=ThreeGuysOneBall.flv

Flash code:

_textbox1.text = video;

This works in the main flash actionscript, but I need the querystring in a class constructor that I created. How can I pass the querystring to a separated out actionscript file?

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

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

发布评论

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

评论(2

遇到 2024-09-22 06:48:03

尝试
loaderInfo.parameters.video

一旦 swf 已加载/ready 您应该能够通过 参数对象。

try
loaderInfo.parameters.video

Once the swf is loaded/ready you should be able access flash vars through the parameters object.

唔猫 2024-09-22 06:48:03

好的。我解决了我的查询字符串问题。感谢乔治帮助我更详细地思考我的问题。

外部动作脚本必须将父级转换为影片剪辑,以便我能够获取参数。

var par:MovieClip = MovieClip(this._parent);
_textbox1.text =  par.video;

Ok. I solved my querystring issue. Thanks you George for helping me think about my issue in more detail.

The external actionscript had to have the parent converted to movieclip for me to be able to grab the parameter.

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