Preloader From Main Timeline
I'm having trouble setting this up...please help how do i set up a preloader that does not reside on the timeline of the movie being loaded? I have lots of external swf files being loaded dynamically into a holder_mc and i dont want to put a preloader on each file. How do i set it up so my preloader operates from the main movie timline from which i'm loading the external files into my holder_mc. Im trying the enterframe below but it gets hung up for some reason! Any help would be much appreciated
loadMovie(newimage,"_root.holder.subholder"); _root.holder.bar._visible=false bytesTotal = _root.holder.subholder.getBytesTotal();
onEnterFrame=function() { // get current amount loaded bytesLoaded = _root.holder.subholder.getBytesLoaded(); percentLoaded = Math.round(100*bytesLoaded/bytesTotal);
// if there is still more if (bytesLoaded < bytesTotal) { _root.holder.bar._visible=true // display text _global.displayText = "Loading: "+percentLoaded+"%";
// set scale of bar _root.holder.bar.barFill._xscale = percentLoaded;
// no more left } else {
// display complete _global.displayText = "Loading Complete.";
// fill out bar _root.holder.bar.barFill._xscale = 100; _root.holder.bar._visible=false onEnterFrame=null
} }
FlashKit > Flash Help > Flash ActionScript
Posted on: 07-08-2003, 01:21 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Having More Than One Preloader On Main Timeline
Hi all,
Basically i have created a flash file on the main timeline is the links (home, aboutus) on frame 1 and i have create a movieclip being on frame 2.
In the movieclips i have created a preloader on frame 1 with this code:
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int(loaded/total*100);
percen1 = ""+percent+"%";
gotoAndStop(percent);
if (loaded == total) {
homepage_mc.gotoAndPlay(2);
}
}
this is on the preloader.
The problem i am having is that the links have the code:
on (press) {
gotoAndPlay(2);
}
But when i create a another preloader on the main scene on frame 19, so the button is saying on (press) {gotoAndPlay(19);}. It goes straight to the image/copy than showing a loading bar.
Any one got any ideas how i can fix this to show the preloader when u select the about us button which goes to frame 19 where the preloader starts?
thanks
bythescruff
AS3 Main Timeline Preloader
Hey all,
So I've researched first before posting this question and wasn't able to actually solve my issue.
I've created a document class that acts as a main timeline preloader, but when I compile and test, I get error codes like the ones below:
Code:
**Error** Scene 1, Layer '// actions', Frame 2, Line 419: 1046: Type was not found or was not a compile-time constant: BlurFilter.
var blur:BlurFilter = new BlurFilter();
**Error** Scene 1, Layer '// actions', Frame 2, Line 419: 1180: Call to a possibly undefined method BlurFilter.
var blur:BlurFilter = new BlurFilter();
**Error** Scene 1, Layer '// actions', Frame 2, Line 422: 1120: Access of undefined property BitmapFilterQuality.
blur.quality = BitmapFilterQuality.MEDIUM;
**Error** Scene 1, Layer '// actions', Frame 2, Line 584: 1046: Type was not found or was not a compile-time constant: Point.
var origPoint:Point = new Point(0, 0);
**Error** Scene 1, Layer '// actions', Frame 2, Line 585: 1046: Type was not found or was not a compile-time constant: Point.
var globalPoint:Point = currentLink.localToGlobal(origPoint);
**Error** Scene 1, Layer '// actions', Frame 2, Line 584: 1180: Call to a possibly undefined method Point.
var origPoint:Point = new Point(0, 0);
**Error** Scene 1, Layer '// actions', Frame 2, Line 70: 1120: Access of undefined property StageScaleMode.
stage.scaleMode = StageScaleMode.NO_SCALE;
Total ActionScript Errors: 7, Reported Errors: 7
Since these classes are imported in my second frame (where all my code sits), I don't understand why I'm getting the error immediately. When the document class constructor is called, I immediately call a this.stop() to avoid any attempts to load anything until the whole timeline is loaded in. Am I wrong in thinking that it defeats the purpose of a preloader if, in the end, I have to load all these classes in at the preloading stage?
Any help on this is appreciated. I've looked at a lot of AS3 preloader tutorials, but none of them seem to deal with this sort of issue.
Thanks guys (and girls),
Jim
Preloader For All External Swf's Plus Main Timeline?
I haven't been able to find anything that does a really good job of getting the combined total bytes and the combined loaded bytes of my flash movie along with all the external swf's that I'd like to load.
Where can I find a good script or sample movie that accomplishes this?
Ideally, I'd like have some clipLoader movie clip that I can put in the first frame of my main timeline, have it load everything up with a progress bar and go onto play the next frame when it's done.
I have 4 external swf's that I'd like to preload:
swf_1.swf, swf_2.swf, swf_3.swf, swf_4.swf
I have a movie clip (clipLoader_mc) that I've placed on the first frame of my main timeline.
On the first frame of the clipLoader_mc:
Code:
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
var clipInstance_array = new Array();
externalSWFs = new Array("swf_1.swf","swf_2.swf","swf_3.swf","swf_4.swf")
externalSPath = "swf_import/"
// load all your movies up onto different movie clips
loadAllClips = function () {
for(var i=0; i<externalSWFs.length; i++) {
//create empty clips
clipInstance_array.push("clip_"+i);
this.createEmptyMovieClip(clipInstance_array[i], this.getNextHighestDepth());
//load the clips up
my_mc.loadClip(externalSPath + externalSWFs[i], clipInstance_array[i]);
trace(externalSPath + externalSWFs[i]);
//setProperty(clipInstance_array[i],_alpha,0);
//clips_array[i].getBytesTotal;
}
};
loadAllClips();
This loads everything up nicely, but not sure where to go from here.
Any links or help would be much appreciated.
This is a good link, but there's a lot of extraneous functionality that I'm not sure how to cut out:
http://flash-creations.com/notes/dynamic_loadjpg.php
This link works well, but the bytes are traces and I don't know how to add it together and get it to display properly in my flash.
http://www.tek-tips.com/viewthread.c...1271807&page=7
Thanks
Preloader, Main Timeline, Not Export First Frame
Hi all
I was checking out the Preloader options on this informative website:
http://www.senocular.com/flash/tutorials/preloading/
I chose to try a the approach where I do not "Export in First Frame" in the Linkage of the many sounds that I have in my file.
As noted in the web page about Preloading, having the Export in First Frame checked will cause the sounds to load BEFORE a Preloader can even appear making the user wait and wonder what's happening.
So it says to un-check the Export in First frame and load the sounds on the frame that follows where your preloader, but before the main movie starts.
Now I've unchecked the Export in First frame, but exactly how to I force those sounds to load in that second frame?
Any help appreciated.
bdemil
Problems Transferring Preloader Script From Clip To Main Timeline.
I have taken the following preloader script off a movie clip that contained a dynamic text field populated via a variable called kingtxt.
code: onClipEvent (enterFrame) {
var bytes = _parent.getBytesTotal();
var bytes_loaded = _parent.getBytesLoaded();
if (bytes_loaded == bytes) {
_root.gotoAndPlay(2);
this.kingtxt = "movie loaded";
} else {
_root.gotoAndStop(1);
this.kingtxt = "loading (" + bytes_loaded + "/" + bytes +")";
}
}
Although the above set up (using a clip containing a text field to give preloader info) works fine I wanted to see if I could move the whole thing to the main time line. So I have changed the reference for the variable “var Bytes” from “_parent.getBytesTotal();” to “this. getBytesTotal();” My thinking being that _root would be the _parent time line for the clip so a reference to “this” would reference the same time line as the code now sat on the main time line. Obviously, I have changed the clip event function to work for _root, as follows
code: _root.onEnterFrame = function() {
var bytes =this.getBytesTotal();
var bytes_loaded =this.getBytesLoaded();
if (bytes_loaded == bytes) {
_root.gotoAndPlay(2);
kip_mc.kingtxt = "movie loaded";
} else {
_root.gotoAndStop(1);
kip_mc.kingtxt = "loading ("+bytes_loaded+"/"+bytes+")";
}
};
Problem is this does not work now when loading in a movie – The movie loads fine & plays, but I ain’t getting any loading info from the text fields. Any help please.
Referencing Clips On Main Timeline From My Main Document Class
Hi All,
I'm trying to reference clips on the main timeline either in or via my main Document class, but if I declare any clips as public in the class body as I would have done is AS when linking an external class, I get:
Code:
1151: A conflict exists with definition tfLength in namespace internal.
If I don't declare the clip, then I can reference it from within the same class with this.tfLength, but other classes complain it the Document classes tfLength variable doesn't exist!
So how do I reference a clip on the timeline in my class?
Thanks,
Dave
Controlling A Movie Clip's Timeline Separately From Main Timeline
I've got a problem here that I've been trying to figure out for a while now, and it seems like it should be way easier than this. Here's what I've got:
I'm trying to make a neato little flash swf with lots of buttons that you can push and another little movie clip will show some little animation.
I thought I could get this done pretty simply by making a bunch of buttons, giving them an over, down, hit, sound, etc. and then having one single movie clip do all of the animations, but cleverly use stop(); and gotoandplay();
I have tried a few different ways, searched through the help & tutorials, looked all over forums on the internets, and I still can't get this to work. The main timeline is really just 1 frame, and its only purpose is to just hold all of the buttons. I have given all of the buttons instance names (ending with _btn). There is a separate layer in the main timeline for the actionscript alone, and was hoping to put all of the gotoandplay commands there. The code that I am trying to use in that frame is:
Code:
this.WV_btn.onRelease = function(){this.productzmovie_mc.gotoAndPlay(2);
};
The productzmovie_mc has a command to stop(); in the first frame, and I am trying to get a button to skip to the next frame to get it going. I put a stop(); on the last frame of that animation so that it won't run through the whole thing on the first button press. If I remove that stop(); on the first frame, the whole animation just runs whenever I test it and the button has no effect.
I thought this would be way simpler than making 25 separate movie clips and hiding them or spawning them. Does anyone know what I could be doing wrong here? This seems like a pretty simple operation, and I am probably screwing up some mundane detail (I always do that). Be gentle, I am trying to learn Flash and I am a bigtime n00b. I can post the .fla if you need to see it, but it's pretty simple so far, just lots of buttons.
Thanks!
ActionScript Differences Between Main Timeline And Movie Timeline?
Hello,
Could someone explain the difference if Action Script is on the main timeline or in a movie clips time line which is on the main timeline?
I guess I mean is with regards to referring to other items or movie clips or external scripts etc.
To try and clarify what i'm going on about....
I have a form that uses a php script. The form.swf is brought into my main movie with 'loadmovie' action script.
When the form.swf is run on its own it works. When someone enters the info and hits 'send' the form gets what it needs from the php script and then goes to a 'sucsess' frame. Great.
But..
When the form.swf is run from within my main movie and someone hits 'send' the form goes to my 'fail' frame (even though it is sending the email), the php script is returning a 'fail - invalid email entered' message to the flash form (the email was valid though!!).
Because the form.swf works on its own I'm guessing that, when loaded into the main movie, i need to add something to make it talk to the php properly.
The odd thing is that it must be talking to the php as it is sending the email!!! So why is the php sending back a 'fail' and not a 'success'.
It could be that the form.swf is just not getting a response from the php and so it going to the fail frame. In which case, if my form movie is within my main movie what do i add to the php (or action script) to receive the info to the nested movie.
I cant work it out.
Thanks soooo much for your help.
Julian
Play Movie In Timeline But Keep Main Timeline In Place
Hello,
Scenerio: You are at frame 1 of the timeline and it's stopped, you hit a button and it jumps you to frame 20 and then at frame 20 a movie clip plays.
Question. Can I have that movie play for however long I want (let's say it's a 100 frame movie) BUT have my main timeline still sit on frame 20? And then when the movie is done playing it goes to frame 21 of the main time line? Currently I have to make my main timeline be the same length as any movie I have in it, and so my main timeline ends up being an absurdly long.
Just a general answer will help - which action scripts would I be looking to use (I'm using Flash 8 Pro)?
Thanks
Movie Clip Timeline Vs. Main Timeline
Ok, i have made a movie clip in Swift 3d and have imported it into Flash MX. Now it is in the first frame as flash will place it there and what i would like to have happen is to tell frame 1 that when the movie clip's timeline ends and stops(frame 90) to then move the parent timeline to continue with stuff
If any one reads this please help or refer me to a MX book that is worth the valuble time we think we have!
Mike
Movie Symbol Timeline & The Main Timeline
Hi guys,
There is the frame in my main timeline which has a movie symbol and when the timeline heads reaches & stops at this frame & start playing the movie symbol timeline, i want that when the timeline head reaches at the end frame of the movie symbol timeline, it should take me to the any frame number/label of the main timeline i want.
I tried adding the action to the end frame of the movie symbol to take me to a different frame of the main timeline but it doesn't do anything. It remains at the same frame of the main timeline.
Is there any way out?
Regards, Rohit
Loading A Movie From A Movie On Main Timeline, To A Specific Frame On Main Time Line
I need help loading a movie from a button in a movie on the main timeline. To a specific frame on the main timeline.
i.e. I have a navigation movie, in it is a load of buttons. I want to load separate movies to a blank movie on a specific frame on the main timeline.
I guess I am having target problems, I can load the movie in the main timeline, but not the frame i want it or the the blank movie in that frame.
Main Timeline Vs Mc Timeline Smackdown
I've made a little animation in a mc several instances of which sit looping on the main timeline.
I want these mcs to load at intervals on the main timeline, frame 1, 5, 10 etc. (a kind of twinkling stars thing if you must know.)
The problem is the main timeline overrides the mc's timeline.
I was able to sort of fix this by shortening the main timeline, but I can see this solution is not satisfactory for any number of reasons, and even at the most basic level it seems erratic.
Obviously my understanding of this issue is too theoretical and not practical enough, or the other way around.
How can I force the main timeline to really accept the mc timeline instead of just pretending to?
A Value From The Main-timeline To A Moviclips Timeline
Hi!
I have a movieclip on the scene. I also have a button on the scene and when I press the button I want to send a variable-value to the movieclip. I have a variable set in the actual frame on the main-timeline but the movieclip doesn´t catch that, when traced I get undefined. Can I send a value from the main-timeline to a moviclips timeline?
A Value From The Main-timeline To A Moviclips Timeline
Hi!
I have a movieclip on the scene. I also have a button on the scene and when I press the button I want to send a variable-value to the movieclip. I have a variable set in the actual frame on the main-timeline but the movieclip doesn´t catch that, when traced I get undefined. Can I send a value from the main-timeline to a moviclips timeline?
Control Of Main Timeline From Another Timeline
Working in Flash Pro 8 (on a Mac), I've got a movie clip on the main timeline. Within the movie clip is a button which, upon pressing, reveals a series of three more buttons.
My objective here is that when you press any one of those given buttons that are within the single button that is within the movie clip an instance of which is on the main timeline that it will take you back to a specific frame on the main timeline.
I am having a devil of an unsuccessful time with the concept of connecting back to the main parent timeline from a child timeline.
Any words of direction on how this is accomplished would be, as usual, appreciated.
Christian Seaborn
seaborn.christian@gmail.com
Conflict Between Main Preloader And Load Movies Inside The Main.
Greetings.
I am able to make preloaders for my individual .swf files and have them loadmovie into target into my main movie, however if I also want to preload my main movie (the parent that contains all the swf files) I get conflict. Essentially I want to preload the main movie, once there the viewer upon clicking certain buttons can view other swf movies each of which have there own preloader. It appears that the preloaders I have tried are "either one or the other" choice i.e. preload main or preload the swf files inside main.
I am sure it's in the coding....anyone have a preloader or a tut' for preload main (with % be nice) and then still able to have preloaded swf inside.
Thanks!
Main Timeline From MC
Hello,
From now on I think I may avoid using scenes...
__________________________
When my bad guy dies,(_root.energy2.bbar._width<10)
I want my movie to goto the Scene named "level2_intro" and play.
The following script continues to bring me back to the start of the whole movie 2 scenes back.
Actions on the MC:
Code:
onClipEvent (enterFrame) {
if (_root.energy2.bbar._width<10) {
this.gotoAndPlay(9);
_root.gotoAndPlay(4);
}
Actions on Main Timeline (3rd scene) Frame 4
Code:
gotoAndPlay ("level2_intro", 1);
Mc's In Main Timeline
Sometimes when i put a movie clip in my main timeline i can see the movie clip play. But sometimes i can't and it stays on the 1st frame of the mc.
does anyone know why i can sometimes and not other time?
THANX
Main Timeline Or MC?
Hi,
thank you for reading this.
Would you use the main timeline or Movieclips for creating a simple slideshow in Flash MX? What would be the advantages and/or drawbacks to not use the main timeline? Notice that I am choosing not to use the template.
Thanx!
regards
ik.
MC And Main Timeline
I usually prefer to have only one frame on the main timeline or at least just a few.
what is the best way to have movieclips load on the main timeline one after the other so it is like a presentation without using a next button?
Main Timeline
Hi guys,
how do you call the main time line in AS3,
I have an animaition on the main time line that i want to stop from within an event listener function.
I was expecting it to be like:
Code:
function stopAni(e.Event):void {
if (true) {
_root.animation.stop();
}
}
AS3 doesnt seem to like _root though, :S
Cheers
Chris
Main Timeline Var In A Mc?
What was once an easy project has turned upside down.
I need to refer to a variable on the main timeline from within a movieclip.
I'm just defining a variable outside a class on a single frame like this:
Code:
var vid:String = new String;
Later on, I'm assigning a value that needs to be read inside a movieclip:
Code:
var videoPath = this.parent.vid;
It's been a long week and brain hurts. What am I doing wrong?
Thanks!
:grimey
MC Timeline & Main Timeline
Hi all,
This is going to sound very simple, but I'm having some trouble understanding exactly how the timelines work. I've tried searching online but I haven't found what I'm looking for.
I have two animated movieclips. The first one is 50 frames long and the second one is 200 frames long.
On the main timeline, I want to the first clip to play and when that has finished I want the second clip to play. But I put them onto the main timeline, each on a different layer, they play at the same time.
I understand MC's play independently of the main timeline, but I've tried placing the second MC on the 50th frame of the main time line so it will play after the first MS has finished but it doesn't work.
Placing them both on the first frame of the main timeline obviously makes them both play at the same time...
How/where would I position the animated movie clips on the timeline so one plays first then the second one plays?
Can anyone please explain this or maybe point me towards a tutorial?
Many thanks.
Function On Main Timeline
I have a created a function on the main timeline and I am now trying to reference thats function from a child movie. How do I go about this?
Can't Control Mc From Main Timeline
I am having a huge problem getting a button on the main timeline to control a mc I have placed along side it.
I think it has something to do with sytanx:
on (release) {
tellTarget (targetName) {
_root.lib-folder.symbol.gotoAndPlay("mc-label");
}
play ();
}
Is this wrong? I've tried several different variations, all with no results.
Please help!
MC Talks To The Main Timeline.
I am using a tutorial .FLA file. It's got a horizontal motion menu. Anyway, the MC's that hold the buttons are so deep in MCs that i can't talk to the main timeline. I can't even move frame to frame from the buttons that are moving. I've tried the thing that people say to go from the MCs to Scenes. but i just want the main timeline. thanks.
Superhue.
Target The Main Timeline
Hey Guys & Gals,
Need a little advice, I have an MC on the main timeline that allows the user to reset a game once complete. How do I target the first frame of the main timeline/scene from within the MC? Ive tried using _root but that always returns me to the first frame of the MC and not the Main Timeline/Scene.
Thanks in advance!
LEE
Telltarget And Main Timeline
Ok... i have a preloader which sets the variable loaded = "false" in the first frame... at the last frame it sets it to true...now i have a MC which has the following script.
if (loaded == true) {
tellTarget ("/") {
nextScene ();
}
} else {
gotoAndPlay (1);
}
which is supposed to let the MC continue to do it's fade so it doesn't just jump into the rest of the movie... but the logo repeats indefinately and never advances.... HELP PLEASE!
Copying From Main Timeline To MC
I really need some help here, i hope this is possible. I have made an animation that is 90 frames long in my main timeline. I have realised that i may be using this animation many time throughout my movie and i was wondering if there was any to convert/copy those 90 frames to a movie clip. If it's possible could you please let me know, and if it's not possible could you please let me know as well. Thank you very much for your replies.
Jason
Controlling Main Timeline ?
Hi,
I'm having serious problems in trying to control the main timeline (as in scene 1, where you start from) from within a movie clip. The scenario at the moment is that I've got a list of buttons in a movie clip, that clip is within another movie clip which is placed on the main time line. So basically what I'm trying to do is that when any of those buttons are clicked it should play that movie clip and at the end of it should jump to a corresponding scene depending on which button was pressed. I tried using variables but couldn't get it working.
Does anyone here have any ideas how I can make it work?? By the way this happens to be an urgent problem so any quick responses would be majorly appreciates !
Thanks,
Usman.
Why All Of My Mcs (in The Main Timeline) Are In The Same Level?
hello everybody,
I tryed move one of my mc in the scene1 (by action script in a button at the scene 1) but everything move with together!
my script was:
setProperty(_level1, _x, 20);
I tryed "_level0", "_level10", "_level2" instead of "_level1", it didnot make difference!
would anybody please help me? I 'll be appreciated.
Targetting The Main Timeline
I have a movie clip on the main timeline, and it is held on a stop action... now how do I tell the main timeline from within the movie clip to advance past the stop action?
Help and thanks!
Chris
Stoping An MC From The Main Timeline Without Stoping The Main Timeline
My problem is i have a MC that i need stoped or better yet paused when the user puts the cursor over it, and then started again when the cursor leaves the clip. What i have done so far is this: Put a button within a movie clip, then put the movie clip on the main timeline.
The only thing i could think of to get it to stop would be something like:
on (rollOver) {
movieClip.stop();
}
It doesnt work so any help on this is appreciated..
Movieclips And The Main Timeline
Have a preloader in a movieclip placed on the timeline.
Now it calculates the percentage which is fine and works.
Now when the movie loads and percentage gets to 100 there
is a button placed within the movieclip to continue to a label named MUSIC on the main timeline.
the button is not working. What is the correct code
to be used for this script to get the moviclip to recognize the label "MUSIC" on the main timeline.
sorry not at home unable to give the code......
Control Main Timeline With MC?
Can I place a MC on my main scene and control the scene frame with some action script in that MC? Can someone please post a little sample code. I am having issues getting this to work.
Swf Talking To Main Timeline
on the second frame of my main timeline i have a loadMove command.
loadMovieNum ("MyMovie_intro.swf, 1)
this loads my intro.swf. however, once my intro swf is playing it continues to loop my intro mc, which is on the second frame of my intro.swf. at the end of this movie i have tried
_root.gotoAndPlay(3);
which i thought would tell my main timeline to play the third frame (another swf by the name of MyMovie_loadbg.swf)
any suggestions?
C-
Playing MC's In Main Timeline
This is a really basic question:
If I have an MC that has a timeline of 50 frames and I place it in frame one of the main timeline - is there a simple way of having the MC play to the end before it goes on to the next frame in the main timeline or do I have to assign it 50 frames and then place my next MC after that?
Thanks for your help
Controlling An Mc From Another Mc - Not Both On The Main Timeline
Below is a link to what started this -
http://board.flashkit.com/board/show...hreadid=312161
What I want, is to know how I can control an mc within an mc on the maintimeline from within another mc also on the main timeline...
Do I go back to _root and then up again, or just directly access the mc I need to?
MC Reference To Main Timeline
Hi, hope someone knows how to solve this...
I need a script located at the last frame of a MC to tell the main timeline to go to frame 119.
_root.gotoAndPlay (119);
On that frame lies another script that goes to the next scene.
But instead of doing so, I goes back to the first scene, I don't understand why...
Thanks for your help, Simon.
[Edited by Vazio on 06-05-2002 at 05:27 PM]
Targeting The Main Timeline.....
Im having trouble altering which frame the main timeline is on via a button thats within and mc on the main timeline.
So yeah, ive tried having a telltarget that points simply to "_root." and then says gotoAndPlay (260)
I also tried something like
On release
_root.gotoAndPlay (260)
and still it doesnt work.
So how, from a button inside an mc on the main timeline, do i change the frame that the main timeline is on?
Grexen
Go To Next Frame On Main Timeline From Mc
hi people
i'm inside a mc and it's just finished playing. now i want the playhead to go to the next frame on the main timeline and play on
can anyone help me?
cheers
Main Timeline Problem
Hey,
How does one prevent a preloader in scene 1 being played when targeting the main timeline from scene 2?
(i.e. tellTarget ("_level0") or tellTarget ("_root") gotoAndPlay (10)) etc.
Help!
Cool.
D.
Referring To Main Timeline Within Mc?
(Flash MX)
Is there a way to refer to the main timeline from within a Movie Clip? Like find out what the current frame of the main timeline is from inside an MC?
|