A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Delay inbetween frames for self running demo.

  1. #1
    Junior Member
    Join Date
    Feb 2003
    Location
    India
    Posts
    4

    Delay inbetween frames for self running demo.

    Hi Guys,

    I require your great help in one area. I am making slide show of the presentation of .PowerPoint and to be converted into Flash. It will be self running demo or may be keyboard input.

    1. I have imported 15 metafiles, which are creted thru PowerPoint

    2. I want that to play in flash, But yes I also need to keep some delay in between 2 frames and thats where I need your help.

    Following Action Script I have been using, But does now work.

    var Delay;
    Delay = 2;
    call ("/Count:Up");
    gotoAndPlay ("frame 2");

    I request you to help in this matter.

    Thanks in advance

    Best Regards

    nikul.com

  2. #2
    Registered User nunomira's Avatar
    Join Date
    May 2002
    Location
    portugal
    Posts
    7,003
    searching before asking is a good practice

    http://www.flashkit.com/board/search...by=&sortorder=

  3. #3
    Junior Member
    Join Date
    Feb 2003
    Location
    India
    Posts
    4
    Hi Nunomira,

    I too have tried your code, but doesnt work, Also file is not getting opened in Flash 5.0, Is the file opens in Flash MX?

    Thanks for the help.

    nikul.com

  4. #4
    Senior Member Wisnuadi's Avatar
    Join Date
    Feb 2001
    Location
    Jakarta, Indonesia
    Posts
    147
    i think this should work,

    make an MC and put it on stage and give action:

    onClipEvent(load)
    {
    delay=0;
    }
    onClipEvent(enterFrame)
    {
    delay++;
    if(delay>=100)
    {
    gotoAndPlay("frameLabel");
    }
    }

    put stop() action in the frame where you put the MC
    terima kasih,
    Xno

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