A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: working with download against swf timeline?

  1. #1

    working with download against swf timeline?

    hello ill try explain this the best i can.
    i have a main swf which i load external swf files into
    on my main timeline i have my splash file _level4 load in at key frame 4.
    at the end of my splash file i have
    "
    stop();
    _level0.play("menu");
    "
    So that it goes to key frame 6 on the main swf timeline and plays my menu swf file _level6. the problem is, is that i want it to go to frame six when my splash swf has finished playing rather than when it has downloaded all the files.
    If anyone can help me with tis i would be eternally grateful
    For freeadvertising and 100 per cent profit
    http://www.freeaddsgalore.me.uk

  2. #2
    Senior Member
    Join Date
    Aug 2000
    Location
    Montréal
    Posts
    14,141
    play() doesn't accept parameters.

    so it's either:
    _level0.play(); // asks the main timeline to play form where it currently is
    or
    _level0.gotoAndPlay("someLabel"); asks the main timeline to go to the label in the parens and start playing from there

    gparis

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center