我可以在我的 Flash 网站中嵌入 YouTube 播放器(带控件)吗?
我希望将带有 YouTube 控件的 YouTube 视频嵌入到我的 Flash 网站中。这可能吗?
更新了解决方案:
var loader:Loader = new Loader();
loader.load(new URLRequest("http://www.youtube.com/v/zIcx_rxTstc"));
addChild(loader);
I am looking to embed a YouTube video with the YouTube controls into my Flash website. Is this possible?
UPDATED w/ SOLUTION:
var loader:Loader = new Loader();
loader.load(new URLRequest("http://www.youtube.com/v/zIcx_rxTstc"));
addChild(loader);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来这篇文章将为您提供所需的解决方案:
http://www .actionscript.org/forums/showthread.php3?t=122501
It looks like this post will provide you the solution you need:
http://www.actionscript.org/forums/showthread.php3?t=122501
这是我为此制作的基本课程。
当然,您必须创建按钮。
并启用/禁用其某些功能。
希望有帮助
沙尼
包{
导入 flash.system.Security;
导入 flash.display.MovieClip;
导入 flash.display.Loader;
导入 flash.events.*;
导入 flash.net.URLRequest;
}
this is a basic Class i made for that.
off course you will have to create the buttons.
and enable / disable some of its functions.
hope it will help
shani
package {
import flash.system.Security;
import flash.display.MovieClip;
import flash.display.Loader;
import flash.events.*;
import flash.net.URLRequest;
}
我的简化工作解决方案(复制和粘贴宝贝!):
参考资料:
非常好的API参考
很棒工作演示
自定义 chromeless 播放器的详细代码示例
使用和自定义嵌入式播放器的简单代码示例
My simplified working solution (copy & paste baby!):
References:
Very good API Reference
Great Working Demo
Detailed code example for customizing the chromeless player
Simple code example for using and customizing the embedded player