Actionscript 和查询字符串问题
目前在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
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.
好的。我解决了我的查询字符串问题。感谢乔治帮助我更详细地思考我的问题。
外部动作脚本必须将父级转换为影片剪辑,以便我能够获取参数。
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.