Splash screen in flash mx 2004

is there any way to make splash screen [ means ist frame should stay sometimes and should jump to another frame] in flash mx 2004. need really help

Hello and welcome to Sitepoint! :slight_smile:

If I understand you want to make a splash screen using flash and then have it goto another frame in the same movie? Or do you want it to open another web page? Or what do you want to have happen after the 1st frame is displayed?

Do you want this to happen automatically or upon user interaction?

i am extreemly happy for your great reponce thanks, i want in flash mx 2004 project the ist frame should be as an introductory page, the first frame should stay for a specific time and should jump to another frame. hope i will get again the responce.
thnx

You should have 2 frames in your flash document.
Design your elements on both frames, frame1=splash, frame2=whatever

On frame1 in your actions panel you can add the following code:
stop();
setTimeout(this,‘shownextframe’,1000);
function shownextframe() {
gotoAndStop(2);
}

On frame2 in your actions panel you can add the following code:
stop();