Flash 中导入的 SWF 时间轴控件

发布于 2024-08-24 10:51:23 字数 323 浏览 10 评论 0原文

如何控制导入的.swf时间线?

   var introLoader:Loader = new Loader();
    var introReq:URLRequest = new URLRequest("intro.swf");
    introLoader.load(introReq);

    introLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);

function onComplete(e:Event){
    addChild(introLoader);
 }

How to control imported .swf timeline?

   var introLoader:Loader = new Loader();
    var introReq:URLRequest = new URLRequest("intro.swf");
    introLoader.load(introReq);

    introLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);

function onComplete(e:Event){
    addChild(introLoader);
 }

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

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

发布评论

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

评论(1

傲性难收 2024-08-31 10:51:23

使用 loader.content 访问加载的内容内容。

//store it in an instance variable for conveniently 
//accessing it from outside.
public var loadedmc:MovieClip;
function onComplete(e:Event)
{
  addChild(introLoader);
  if(introLoader.content is MovieClip)
    loadedmc = introLoader.content as MovieClip;
  else
  {
    trace("its not even a movie clip - no timeline for you");
    return;
  }
  loadedmc.gotoAndPlay(4);
}

//Once loaded (once Event.COMPLETE is fired),
//you can always access it using:
MovieClip(introLoader.content).gotoAndStop(3);

Use loader.content to access the loaded content.

//store it in an instance variable for conveniently 
//accessing it from outside.
public var loadedmc:MovieClip;
function onComplete(e:Event)
{
  addChild(introLoader);
  if(introLoader.content is MovieClip)
    loadedmc = introLoader.content as MovieClip;
  else
  {
    trace("its not even a movie clip - no timeline for you");
    return;
  }
  loadedmc.gotoAndPlay(4);
}

//Once loaded (once Event.COMPLETE is fired),
//you can always access it using:
MovieClip(introLoader.content).gotoAndStop(3);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文