Jumping Scenes From Movie Clip
I tried searching the Help Forums first, but I kept getting errors so I'm just gonna ask for help here.
I have a navbar for my flash site, and its in its own movie clip. What I need to happen is when the user clicks on a button in the navbar the whole thing jumps to a different scene. I tried using the basic on release goto and play scene name, but that doesn't seem to work.
Does anyone know what I can do to make this work if it can be done at all??
Thanks!!
FlashKit > Flash Help > Flash ActionScript
Posted on: 04-16-2004, 01:55 PM
View Complete Forum Thread with Replies
Sponsored Links:
Jumping To Scenes In Another Movie
In a particular SWF I am working on, I have a preloader and an intro screen as one SWF, and then the main part of the piece as another SWF - I want a link that would "jump to" a particular scene in the other SWF - I have tried the gotoandplay command but I cannot get it to work to connect to an outside movie. I have been searching different Flash forums and have not had any luck finding any information.
- Bill
View Replies !
View Related
Jumping Around In A Clip That's In A Movie
Hope I make more sense than my subject title!
OK, just for reference, you are welcome to go to my web site and launch the site....http://www.bluengrey.com/
The whole site is one main movie and when you click on one of the links at the top-right, an external swf is loaded into an invisible clip "myClip"
I'm trying to update the Portfolio section to make it a but easier to use. In the new version (not uploaded) I want each of the buttons in the timeline to (when clicked on) jump forwards or backwards in the timeline of that scene to various frames.
But, I seem to have a problem, whenever I have any instruction that says "goto frame 10" for example, it works the first time, but the next time it triggers the whole of the swf loaded into "myClip" to play through again from the start.
How do I target (for want of a better word) the movie clip in the middle of the page (myClip) to say that I don't want it to go to the start and play through again...I want it to go to a certain scene and a certain frame.
I've tried things like...
on release....
this.gotoAndPlay(scene,frame)
or
_root.myClip.gotoAndPlay(scene,frame)
But to no avail...how do I tell the buttons which are part of that movie clip, to keep things at that scene and just go to the frame I want?
Cheers,
Phil
View Replies !
View Related
Movie Clip Action - Jumping To A Frame
Hi,
Why is it that if I have a movieclip in my main timeline with the action:
on (press) {
_parent.gotoAndPlay(2);
}
it works fine.
BUT
if I want this movieclip's action to jump to the nextScene, it doesn't work:
on (press) {
_parent.nextScene();
}
Sooo
Seeing that Scene 1 is only 2 frames long, I change it to:
on (press) {
_parent.gotoAndPlay(3);
}
it jumps to Scene 2 fine.
Okay what I am asking is.. why doesn't _parent.nextScene(); work? Why doesn't flash know where to jump to, but when a button is in the main timeline with:
on (press) {
nextScene();
}
it works?
anyone have any idea? or is this just one of the many wonders of flash?
View Replies !
View Related
Jumping To A New Scene, But To A Label In A Movie Clip..
hi. i have a flash movie with three scenes. in the 2nd scene, "icons", i want to jump to the third scene, "images". i have a button in the 2nd scene that does this. but the 3rd scene is just one frame long and has a movie clip in it with the instance name "gallery". in the gallery is 40 frames long and has 4 frame labels. i want the button in the 2nd scene to jump to the 3rd scene, then go into the gallery movie clip and play the 2nd frame label called "harvard"..
how do i do that?
i tried this:
on (press) {gotoAndPlay("images","_root.gallery.harvard");
}
but it just goes to the "images" scene but not into the movie clip.
mikey
View Replies !
View Related
Jumping From Movie Clip, Back To Scene
wussup people?
arite, ive got a flash site in which i have a scene wit a movie clip. now, thing is that i have a back button in the movie clip which when u click, it is suppose to jump back to a navigation bar that is in the scene. but keep in mind at all times that the movie clip is in a layer which is in the scene. i thought it'd work just fine by using the goto and play option for the end of the clip when it finishes, and make it go back to the scene, but instead of going back to the scene, the clip just repeats itself, and goes to the frame within the clip, which is actually meant for the scene frame that it is suppose to go to..
sounds confusing, but... yea.. any suggestions?
View Replies !
View Related
Jumping To A Scene From A Buton Inside A Movie Clip
i need to make a button that is contained in a movie clip instance jump to another scene, but i can't seem to get it to work. this is the first time i decided to get organized and use scenes, so i dont really know how to do this. please help =)
so the action on my button (which is in a moviec clip) looks like this:
on (release) {
gotoAndPlay ("scene3", 1);
}
but obviously that doesn't work when the button is inside of a movie clip. any help is very much apreciated!
View Replies !
View Related
Urgent::movie Clip Help Jumping To A Frame Label
I need help with my actionscript because I am unable to embed movies and then once they are finished playing have the script take me to the main timeline and play a new movie or play a new frame label.
Here is the layout of my movie:
In scene 1 I have frames 1-9 labeled "why" and frames 10-19 labeled "experience."
Under the "why" label, there are two layers, each containing a movie clip: "background and "why." Once the "why" movie clip is finished playing, I want to have the movie start playing at frame 10, labeled "experience."
I tried putting the following script at the end of the "why" movie:
stop();
gotoAndPlay("Scene 1", "experience");
but all that does is play my movie -- the background and why clips play, but then the why clip repeats over and over again instead of stopping and jumping to the main timeline's frame 10, labeled "expereience"
Can someone help me quickly please.....I'm working on a project that I need to move ahead on ASAP. Thanks so much.
View Replies !
View Related
URGENT: Jumping From One Scene To Another By Closing A Movie Clip
Ive got slight problem with my flash...
I am trying to jump from one scene which has a move clip..
In this movie clip is the structure of every graphical element except background and when I try and go onto another scene Via a button inside this move clip.. the movie clip does not close and the score starts from the beginning of the same scene totally ignoring the action script I put inside the button??
Here is the code I use for the button:
on (release) {
tellTarget(_root) {
gotoAndPlay("Scene2", "go");
}
}
Can somebody PLEASE HELP!
Thanks in advance
View Replies !
View Related
Jumping From Scene To Scen With Buttons Embedded In Movie Clip
I could do this in Flash 4 but it isn't working in Flash 5. I'm trying to get from scene to scene with a button that's embedded in a movie clip. In the first scene the movie clip begins to play and the button appears. I want to be able to click that button and move to the next scene.
Here's my code:
on (release) {
gotoAndPlay ("scene2", 1);
}
What am I doing wrong here?
View Replies !
View Related
Jumping Between Scenes
hi- I'm trying to jump to scene 2 and play a movie clip at label (f_nst). Here's what I have on my button action:
on (release) {
_root.featured_MC.gotoAndPlay("scene 2","f_nst");
}
Can anyone help me figure out why this isn't working? I also tried it without _root. and it still didn't work? thanks allison
View Replies !
View Related
Jumping To Other Scenes
i have a button with the following actions:
on (release) {gotoAndPlay("about", 10);
}
"about is the name of the scene, but the movie just doesn't change to this scene but instead jumps only to frame 10 in the very same scene. WHY?
THX for help!
mykael.
View Replies !
View Related
Jumping B/w Scenes
Hi.
I'm averagely new to Flash but I'm sure this is simple enough. I have a fla app that has two scenes. scene1 has a movie from the library and scene2 has another movie. wat i want is when the first movie finishes playing i want the second movie in the second scene to start playing automatically. like u'll see in my source file i've written the followign code for the first scene movie
onClipEvent(load){
if(scene1Movie._currentframe == 25){
gotoAndPlay("Scene 2",1);
}
}
but all i see is that the first movie keeps playing thru .. the second movie is not being played .. can anyone help me plz..
THankx
.swf
View Replies !
View Related
Jumping Scenes
Hi there,
in order to jump around between scenes within my movie, I have been using the following bit of code.
_root.gotoAndPlay("theFrameLabelYouUseGoesHere");
I have added a frame label and it is working fine.
However...
I now want to jump to a specific frame number within a different scene, so how can I do that?
I thought that it might be something along the lines of
_root.gotoAndPlay("theFrameLabelYouUseGoesHere", 3);
but that doesn't seem to be working.
So what's the secret???
Thanks for your time
Damaged
View Replies !
View Related
Jumping To Scenes
i'm new to flash, just wondered if anyone could help...
i want to jump to another scene through a button ive created. is it possible? what would the script be? thanks a lot.
View Replies !
View Related
Jumping Between Scenes
im trying to play a movie in scene 1 which depends on what menu button u press. then it plays a movie relevant to the button pressed and at the end of the movie im trying to get it to automatically skip to another scene at a perticuliar frame. i can doit by using a button by using the code:-
on (release) {
gotoAndPlay("Scene 2",1);
}
however if i want it to play a movie and automaticallly jump to a scene and frame it wont do it. if any1 can help witht hte script i would greatly appreciate it.
thkx
G
View Replies !
View Related
Jumping To Scenes
Hello, I'm trying to use button actions to jump around 3 scenes...
scene 1 to scene 3, Then back to scene 1. Scene 1 to scene 2, and then back to scene 1.
The script I'm using:
on (release) {
//Movieclip GotoAndPlay Behavior
gotoAndPlay("Scene 3");
//End Behavior
}
but what's happening is that it goes to scene 2 instead of scene 3.
Can someone help out?
thanks!
View Replies !
View Related
Scenes Are Jumping
Hey everyone.
I'm building a website in Flash and I'm putting each seperate page on it's own scene. So then each page links back to Scene 1, which is the home page. From there you can go from Scene 2, 3, 4, and 5. So far, I have two pages plus the home page, so 3 scenes. When I click to go the first page (scene 2) it jumps to scene 3 which I just built. It didn't do this before I had scene 3 built, however. How can I stop this??
View Replies !
View Related
Jumping Between Scenes.......NOT?
Could somebody please help a beginner......
I have put this script on the buttons i´ve used to jump between scenes:
on (release) {gotoAndPlay( "scene1", "1" );
}
but one of the buttons doesnt go to the frame i reffer to, it goes to the first frame instead of number 2 that i want it to go to
on (release) {gotoAndPlay( "scene2", "2" );
}
is ther a action that prevents it from going to frame 2, i have a stop script in frame 1 and frame 2 in the second scene but that souldnt be a problem or is it???????
View Replies !
View Related
Scenes Are Jumping
Hey everyone.
I'm building a website in Flash and I'm putting each seperate page on it's own scene. So then each page links back to Scene 1, which is the home page. From there you can go from Scene 2, 3, 4, and 5. So far, I have two pages plus the home page, so 3 scenes. When I click to go the first page (scene 2) it jumps to scene 3 which I just built. It didn't do this before I had scene 3 built, however. How can I stop this??
View Replies !
View Related
Jumping Between Scenes.......NOT?
Could somebody please help a beginner......
I have put this script on the buttons i´ve used to jump between scenes:
on (release) {gotoAndPlay( "scene1", "1" );
}
but one of the buttons doesnt go to the frame i reffer to, it goes to the first frame instead of number 2 that i want it to go to
on (release) {gotoAndPlay( "scene2", "2" );
}
is ther a action that prevents it from going to frame 2, i have a stop script in frame 1 and frame 2 in the second scene but that souldnt be a problem or is it???????
View Replies !
View Related
HELP...jumping Between Scenes.
OK guys and girls, I need help.
I have a movie with two scenes.
In scene 2 I have a button within a clip (because I need to hide the button when the user 1st accesses the page).
When the button does appear in frame 1 of scene 2, and I click it, it keeps taking me
back to frame 3 of the first scene rather than frame 3 of the current scene (2).
I thought I hade to use:
on (release) {
_parent.gotoAndStop(3);
}
because the button is embedded within a clip. But no......
Im desperate.....please help!
thanks
View Replies !
View Related
Jumping Between Frames/scenes
Hi All,
I've create a small "find the 7 differences".
It's 1 scene and 1 frame long. The number of differences found is alse shown.
The code behind the "secret area's" is:
----------------------------------
on (press) {
if (Click1 <> 1) {
Aantal = int(Aantal)+1;
}
}
on (release) {
Click1 = "1";
}
----------------------------------
The frame action is:
----------------------------------
Mouse.hide();
startDrag ("Arrow", true);
----------------------------------
Here's my problem..
When I add a second scene which shows "bravo, bla bla...", I can't get the movie to wait on the first frame of scene1 till the var Aantal = 7 ..
I'm very new to flashscripting (started yesterday) so it's probably a small function I'm overlooking.
The current-application (without scene2) can be seen on:
http://www.altijdfeest.com/various/7verschillen.asp
Thanks in advance!
View Replies !
View Related
Jumping Scenes At A Certain Time
is there a way to tell the animation to jump to a final scene at a certain time- without the use of a button.
I want to have a interactive part of the animation only to last a certain amount so the animation will end with the music correctly. any ideas?
View Replies !
View Related
Problem With Jumping Between Scenes
Hi everyone, I'm a complete newbie to Flash and am working on a project where you have multiple choices, and with each choice you jump to a different scene. The problem I'm having is that, regardless of what script I have associated with my buttons, it jumps to the next scene in the list instead of the scene I provided in the script.
For example, I have this as the action script on a button:
on(release){
gotoAndPlay("BlueOrange",1);
}
And instead of jumping to the scene named "BlueOrange" on click it jumps to the next scene in the list.
This has to be something simple that I just can't figure out! Thank you all for your help!
View Replies !
View Related
Jumping Between Scenes Through Keypress - HELP
Dear all.
I have the following at scene 1, frame 15:
--------------------------------------------------
stop();
keyListener = new Object();
keyListener.onKeyDown = function()
{
if (Key.isDown(Key.UP))
{
gotoAndPlay("Scene 2",1); } else {
stop();
}
}
Key.addListener(keyListener);
--------------------------------------------------
During my first run of the movie, it works well, and goes to scene 2, frame 1 when I press UP.
Now, at Scene 2, last frame, I have the following:
gotoAndStop("Scene 1", 2);
It actually plays from frame 1 till 15..and continues, but doesnt wait for my keypress anymore. It's as if I have already pressed the UP key. Whats the problem?
Please help.. running a tight deadline here. All help appreciated. Thanks!!
View Replies !
View Related
A Button Jumping To Different Scenes
Hey I created my flash website with Multiple scenes for each category/page. The problem I am having is placing the movie inside of a Button. When I put the movie clip inside of the button (I wanted a cool rollover effect) it won't jump to the frame, but before I put the movie clip in the button it would goto the correct frame. Now the code for the Movie clip is:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
and when I remove the section of this.onRollOut and onRollOver the button works fine, but then the button doesn't have a rollover effect. Can someone help me
View Replies !
View Related
A Button Jumping To Different Scenes
Hey I created my flash website with Multiple scenes for each category/page. The problem I am having is placing the movie inside of a Button. When I put the movie clip inside of the button (I wanted a cool rollover effect) it won't jump to the frame, but before I put the movie clip in the button it would goto the correct frame. Now the code for the Movie clip is:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
and when I remove the section of this.onRollOut and onRollOver the button works fine, but then the button doesn't have a rollover effect. Can someone help me
View Replies !
View Related
A Button Jumping To Different Scenes
Hey I created my flash website with Multiple scenes for each category/page. The problem I am having is placing the movie inside of a Button. When I put the movie clip inside of the button (I wanted a cool rollover effect) it won't jump to the frame, but before I put the movie clip in the button it would goto the correct frame. Now the code for the Movie clip is:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
and when I remove the section of this.onRollOut and onRollOver the button works fine, but then the button doesn't have a rollover effect. Can someone help me
View Replies !
View Related
A Button Jumping To Different Scenes
Hey I created my flash website with Multiple scenes for each category/page. The problem I am having is placing the movie inside of a Button. When I put the movie clip inside of the button (I wanted a cool rollover effect) it won't jump to the frame, but before I put the movie clip in the button it would goto the correct frame. Now the code for the Movie clip is:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
and when I remove the section of this.onRollOut and onRollOver the button works fine, but then the button doesn't have a rollover effect. Can someone help me
Edited: 10/27/2007 at 05:39:33 AM by Souljah242
View Replies !
View Related
[fmx] Jumping Scenes Problem
Hi,
I am trying to jump from one scene called main to other named tutorial 1-6 here is my code to jump to tutorial 2 as an example
on (release) {
_root.gotoAndPlay("Tutorial2");
}
I've tried every variation that I can think of, no _root gotoAndStop and also putting in _root.gotoAndStop("Tutorial 2", 1);
i dont know if it makes a difference but the navigation buttons are on a movie clip which pops up over the main stage...if that makes sense, that flash file is huge i didnt want to attach the whole thing...
please if someone can help it'll be really appreciated
Matt.
View Replies !
View Related
XML Menu - Jumping To Different Scenes
I've been playing around with this one for a while, but I'm not a programmer and seem to be going around in circles.
I'm trying to use the XML dropdown menu to jump to different scenes within the flash file, but all I seem to be able to get it to do is reload the movie from the start.
This is a line from the XML file -
Code:
<item name="Line" action="loadScene" variable="line"/>
And this is the bit I added to the AS -
Code:
Actions.loadScene = function(sceneVar){
gotoAndPlay("sceneVar" , 1);
};
Not really sure why this is not working.. Any suggestions??
View Replies !
View Related
[fmx] Jumping Scenes Problem
Hi,
I am trying to jump from one scene called main to other named tutorial 1-6 here is my code to jump to tutorial 2 as an example
on (release) {
_root.gotoAndPlay("Tutorial2");
}
I've tried every variation that I can think of, no _root gotoAndStop and also putting in _root.gotoAndStop("Tutorial 2", 1);
i dont know if it makes a difference but the navigation buttons are on a movie clip which pops up over the main stage...if that makes sense, that flash file is huge i didnt want to attach the whole thing...
please if someone can help it'll be really appreciated
Matt.
View Replies !
View Related
XML Menu - Jumping To Different Scenes
I've been playing around with this one for a while, but I'm not a programmer and seem to be going around in circles.
I'm trying to use the XML dropdown menu to jump to different scenes within the flash file, but all I seem to be able to get it to do is reload the movie from the start.
This is a line from the XML file -
Code:
<item name="Line" action="loadScene" variable="line"/>
And this is the bit I added to the AS -
Code:
Actions.loadScene = function(sceneVar){
gotoAndPlay("sceneVar" , 1);
};
Not really sure why this is not working.. Any suggestions??
View Replies !
View Related
Scrollpane And Jumping To Scenes
I had on a page about 6 logos with invisible buttons over, which when pressed jumped to a new scene. My partner said why can't you make it tidier and make them scroll? can't be that difficult!!!
So now I pulling my hair out. The logos are now in a movie clip in the library (not in a folder), then placed inside a scrollpane, the scrolling works ok but the buttons that worked ok before now don't?
Sample button actionscript that work previously:
on (release) {
gotoAndPlay("webOCF", 1);
}
"webOCF" is the scene name
"1" is the frame number
I've tried
on (release) {
gotoAndPlay("_root.webOCF", 1);
}
but that doesn't work either.
Has anyone got any suggestions before I go totally bald.
--
View Replies !
View Related
Problem Jumping Between Scenes
Hey,
I'm having some trouble getting my movie to jump between scenes. I have two scenes (imaginatively called Scene1 and Scene2). I have the following code:
Code:
onClipEvent (data) {
_root.imName = image;
if(image == "") {
_root.gotoAndPlay("looper");
}
else {
_root.imName = "I'm in the else -- But Not going to the next scene :(";
_root.gotoAndPlay("scene1", 1);
}
}
The dynamic text field shows the message "I'm in the else..." so I know it's definitely getting there, it just wont change scene. I have tried:
Code:
nextScene();
_root.nextScene();
gotoAndPlay("scene1", 1);
gotoAndPlay("Scene1", 1);
_root.gotoAndPlay("scene1", 1);
_root.gotoAndPlay("Scene1", 1);
and none of these seem to work!! Anyone have any idea where I'm going wrong?
View Replies !
View Related
[CS3] Help With Flash Jumping To Wrong Scenes
Hey guys,
I was just wondering why my flash file is jumping to the wrong scenes. The buttons are pointing to the correct scenes, but it just aint working!! Here's the file...
https://rcpt.yousendit.com/633767440...a5ca3adb8314a0
In the main window, I'm using buttons nested within a MC and code pointing to the nested buttons. It will then jump to completely different scenes than where I wanted it to point to!! It's not happening to all the buttons, but the images button definitely isn't working.
Any help would be greatly appreciated!
View Replies !
View Related
Jumping Scenes And Playing Frames-urgent
can anybody explain this to me?
i've got a little cut-scene in the end of my main scene where a "shutter" closes over my interface.
the nav. buttons on the bottom of my interface let you go from scene to scene...
I want the a particular nav button to advance the main scene to the next set of frames (the cut scene) and then load the scene that corresponds to it.
this is what i have for the button right now... it doesn't work... maybe it's not correct actionscript, maybe it's going down the wrong path altogether....
on (release) {gotoAndPlay(81);
if (_currentframe=108) {gotoAndPlay(login,1);
}
HELP!!!!!
-thanks in advance for your input
View Replies !
View Related
Simple Question About Jumping Frames/scenes
Hello. I was hoping if anyone knows how to solve my dilemma- here's the scenario:
I wish to have a button which, when clicked on, gets told to jump to frame 15 and play for 5 frames, then jump to scene 2. The problem is, I need the actionscript to reside in only the frame that contains the button (no actionscript at frame 20, you know)
Is this possible?
Cheers for any help passed my way
View Replies !
View Related
Problem With Scenes Jumping Back To The Start
im making an rpg style game and have a part where the main character collides with a telephone mc which ive set to jump to another frame later in the scene which is a telephone convo. when i test the scene on its own it works fine although when i test the whole movie it jumps back right to the begining of the game when i collide with the telephone. the scene im working in is scene 2 and the scene its jumping back to is scene 1 frame one.
heres the script ive used:
if (_root.phone.hitTest(_x, _y, true)) {
_root.gotoAndPlay(120);
}
i dont understand why its doin that?
any suggestions?
cheers
View Replies !
View Related
Is GotoAndPlay A Problematic Function Jumping To New Scenes?
I am creating a flash piece with multiple scenes. When I jump using the gotoAndPlay function, it jumps to the scene but the playhead stays at frame 1 instead of playing on from frame 1 of the new scene. I have been using gotoAndPlay jumping to labelled frames often with little problems. But not to scenes. Is there some problem with using gotoAndPlay function to jump to new scenes?
TIA
View Replies !
View Related
Is GotoAndPlay A Problematic Function Jumping To New Scenes?
I am creating a flash piece with multiple scenes. When I jump using the gotoAndPlay function, it jumps to the scene but the playhead stays at frame 1 instead of playing on from frame 1 of the new scene. I have been using gotoAndPlay jumping to labelled frames often with little problems. But not to scenes. Is there some problem with using gotoAndPlay function to jump to new scenes?
TIA
View Replies !
View Related
From Movie Clip To Different Scenes
To anyone that can help me...
The problem that I have is that I have made an animated menu w/ buttons fading in..now this is part of a demonstration..and I need the menu to jump to different parts of the demonstration...What I have done is put these different parts in different scenes..
Now I came to the realization that I cannot jump from withing a movie clip to a different scene..what can I do to make this work out! this is very URGENT..grateful to anyone that can help me...
If you need to see the file..i'll show it to you if need be..THANKS!
View Replies !
View Related
Movie Clip Over Various Scenes
I have a movie clip that is animated and it runs over numerous scenes. I need this clip to play as if it were one animatiuon. At present the movie clip restarts on every scene.
Can anyone suggest a way to correct this?
Thank you
View Replies !
View Related
Movie Clip Won't Navigate To Other Scenes
I have a navigation bar made up of several buttons. This navigation bar is a movie clip that resides in the root movie.
Each button has the following code attached to it:
on (release) {
_parent.gotoAndPlay("Logging On", 1)
}
where "Logging On" is the name of the scene and is different for each button.
Anyways, the problem is that it isn't working at all. If I place a button and similiar code by itself in the main movie, it works, but not when nested in this navigation bar.
I've also tried _root as well, no luck.
Am I missing something completely obvious?
View Replies !
View Related
Triggering Movie Clip Run To Run Over 3 Scenes
Hi there, I was wondering if anyone can help. I have a Flash movie that contains 3 scenes; each scene has only 5 frames. Is it possible to trigger a 12 frame movie clip from within the first scene and have it play uninterrupted on top of the 3 scenes? At the moment the clip is stopping when the main movie goes from scene1 to scene2.
Thanks very much.
K.Rice
View Replies !
View Related
|