ActionScript 2.0 :: Scenes - Clip That Is A Loading Bar And Percentage?
Mar 25, 2002
This is just a tad difficult to explain but here goes. You start out in the intro scene and it plays a movieclip (the intro) and below it is another clip that is a loading bar and percentage. Now on the main timeline it is checking to see if the percentage is 100 or greater. When it does it goes to the main movie. This all works fine. It's when you get to the main movie that it messes up. All the buttons and a/s work fine but 3. Its sorta hard to explain... Um ok here is the a/s that is on each button unless they dont open another menu.
[Code]...
Now I probably could use a for statement for the first bunch but that's not the point of this explanation now is it. Normally the movie is in frame 1 but when you click a button that opens a new menu it goes to frame 2 and makes sure all menus already open get closed. Hence the reversal of any open m/c's. Then if none are open it opens the new menu using the "per" value from the button. Now for the problem. When I click any one of the 3 buttons it sends the whole m/c back to the intro scene. Why? Any how do I fix it? If you need anymore info I'll be glad to post it.
View 12 Replies
Similar Posts:
Mar 10, 2005
i need to do a loading bar for a specific movieclip, not the whole file.
i have 9 clips to load, and i dont load them all at once.
on my main timeline i have 9 movieclips and 9 labels to jump to them but i need to have a loading bar for each..
here is an excerpt of what i used to have the whole movie to load, but it does not work if i use a movieclip in the timeline..
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
[Code].....
View 2 Replies
Aug 4, 2006
I have use percentage loader script with Horizontal progressbar clip. Which shows the % with progressbar here is the code.
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay("Scene 1", 1);
}
Now I change the movie for loader like circle type MC and want to complete 100 % when my Circle Movie completes it's rotation say frm 0 to 360 degree.
View 3 Replies
Dec 8, 2010
I just built a website entirely in Flash Catalyst CS5. After adding a few more states the file size got bigger and the loading time increased. On average, it takes about 10 seconds for the site to load on my connection. Till then all you get is a white page and the spark preloader shows up when you scroll down. All I want is a simple preloader with a percentage indicator, loading bar, and maybe my company logo.
View 0 Replies
Oct 2, 2003
I want to animate the percentage of a loading scene. I just want to move the dynamic text box and fade it as it gets closer to 100%
View 1 Replies
Oct 2, 2003
I want to animate the percentage of a loading scene. I just want to move the dynamic text box and fade it as it gets closer to 100%.
View 1 Replies
Nov 8, 2003
how to add a percentage preloader to this fla?
View 1 Replies
Nov 8, 2003
how to add a percentage preloader to this fla?
View 1 Replies
Jun 9, 2010
Is there a surestarter preloader in AS3 with CS4? Meaning here, showing a progress bar or percentage value before loading the main swf, right away at the start of the loading.I tried 3 different versions:
1- I used the code from a video (and accompanying files), and simply changed the content.swf to my own swf file (rename my swf content.swf), so that the original code would load my swf instead of the original content.swf. (original content.swf was too small to see anything before loading, because my loading speed is too fast).Here is the code from the original preloader (loads a small swf which then loads the main swf file):
var l:Loader = new Loader();l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop);l.contentLoaderInfo.addEventListener(Event.COMPLETE, done);l.load(new URLRequest("content.swf"));
function loop(e:ProgressEvent):void{ var perc:Number = e.bytesLoaded / e.bytesTotal; percent.text = Math.ceil(perc*100).toString();}[code].....
View 5 Replies
May 5, 2010
I have a preloader in my file.At the end of the preloader completion event, i am loading 12 swf files from outside using individual loader. Now problem is, i need to display loading percentage in text for preloader. But, the percentage shoud cover all swf loding also. it mean, from preloader, starts, it has to start from 1 and end of the 12th swf loader completetion,it should display 100%.
View 0 Replies
Feb 20, 2010
I have a listener which traces the Y value of mouse:
stage.addEventListener(MouseEvent.MOUSE_MOVE,f);
function f(e:MouseEvent){
trace(e.localY);
}
I need to make a movie clip play when the localY value is less than .25 of stageY, or even less than 150 would work.
View 7 Replies
Feb 15, 2011
I've been searching to find a simple answer to external preloaders, but it seems there are many ways to accomplish this with ac3.
I am new to as3 and this is what I've come up with so far:
green_mc.scaleX = 0;
black_mc.scaleX = 0;
var loader = new Loader();
loader.load(new URLRequest("zibapistachiointeractivesmfilesize03.swf"));
[Code] .....
Everything else is working except my dynamic text that should also be calculating the % of loading.
View 7 Replies
Feb 2, 2011
I'm very new to flash and have a question for you wizards
I've created a simple slideshow displaying images which are being loaded from a XML file. I wish to have a preloader which displays the % loaded , if possible, while it's preloading the images from the xml file.
View 4 Replies
Feb 6, 2003
I can change my database text, and call it from my flash through php. But it doesn't seem to translate over the '%' sign.
I know this is probably not database specfic.
"Text=Test text&Comment=Take 10% off all products"
The variable Comment only comes out as:
Take 10 of all products.
Do I use an escape character?
View 7 Replies
Feb 14, 2005
in the end of a frame of a movie clip, can i have some kind of action script that makes that movie clip stop, and then play a frame in a scene?
this is what i have-
stop;
gotoAndPlay("Scene 2", 60)
it works, but instead of going to frame 60 of scene 2, it just goes to frame 60 of the movie clip that's still in scene 1.
View 4 Replies
May 10, 2002
I'm writing a simple game with Flash and I need to change the scene from inside a movie clip instance. I know how to change scenes with a button, but I can't seem to get the scene to change when certain criteria are met. For example inside a movie clip object I have this:
if(_root.score > 100)
_root.gotoAndPlay("Congrats", 1)
but the scene doesn't change.
View 3 Replies
Apr 18, 2010
I have a site that has one main file and then another five sub swfs that get loaded in when you click on various buttons. I would like to load these sub swfs behind the scenes, even before they click to open them. Is there a way to load them into some mc without adding it to the stage, but making it so that when they do click to actually load that swf in, it will already be cached? I'd prefer not to do a traditional preloader for each and every sub section. I'd rather just load in all the sub swfs, have them cached and ready to go so that when they do click on a section, it will be good to go.
View 1 Replies
Sep 2, 2010
I'm justing starting to learn some actionscript. I can't figure out why my jpgs are flickering when I go from one scene to another. Do they have to reload each time? Here is a link: http:[url].....I have each animation as a separate scene, and you'll see that the buttons flicker when the new scene loads.
View 4 Replies
Mar 7, 2009
I'm currently working on a portfolio site, which, among other things, loads external swf files into the stage. The problem starts when I load a 400x300 swf file into the stage, which is 900x800. The result is that I get all objects which are outside the stage area in the loaded swf, on my main stage. I tried everything from changing the width and the height to loading it into a movieclip. It's always the same, I get all the elements from outside the stage of the loaded swf (if I try to change the width/height, the objects outside the scene still remain) This is the code I'm using to load the external AS2 swf:
[Code]...
View 2 Replies
Apr 29, 2011
I'm having some problems controling my site. I have a movie clip and inside this movie clip I have an action script to take me to a diferent scene but the button isn't working
[Code]....
When using this code in the main timeline it works great but when I put the code inside a movie clip it won't work
View 3 Replies
Jul 3, 2009
whenever I set my sound to stream and continue to make a movie with multiple scenes. The audio and video get disgustingly out of sync sometimes even off by 30 seconds. I just started an animation its only 10 seconds long with two scenes and the AV is already off by about 5 seconds. Ive worked around this by avoiding scenes altogether but i really don't want to have another 5000 frame scene. I discovered this problem in Flash MX and Im quite annoyed that it still has't been fixed 3 years later!
View 1 Replies
Dec 4, 2002
I have several buttons, that link to several scenes, containing swf files. Using the loadmovie command I can get these swf's playing on-screen. That's good.
-How can I control where they appear on my document (I'd guess these require some x or y values, but not sure how this is done) as they all appear in the top left-hand corner.
- When I mouse over another button (link to scene/swf) how can I remove the previous swf from the page, then load the new swf -as they all appear in the same spot/all over each other? Is this an unload movie command?
I was hoping to counter this problem by using different scenes (no luck there) and all I really need to do is remove the previously loaded swf, when the new one is loaded.
View 6 Replies
Nov 7, 2009
I have 2 scenes. In both scenes, I have a movie clip that moves via keyboard control. If the goto next scene is triggered by the movie clip in the first scene the keyboard control works in the second. However, if I use a button to move to the next scene then there isn't any control over the movieclip in that scene. I've traced the keyCode in the second scene and it is picked up but the switch statement doesn't run. I'm migrating to Actionscript 3.0 and updating something I created in 2.0. I would like to do it without writing a class.
[Code]...
View 5 Replies
Feb 26, 2011
I have an interactive story divided into scenes. At the end of each scene a button appears. This occurs on a frame on the timeline.
There are two different buttons that might appear based on whether a prior scene has been viewed or not.
For example, there are Scene_1 and Scene_2. At the end of Scene_2 one of two buttons will appear. The buttons will be either "Go see Scene_1" or "Return to Main Menu".
If the user has already seen Scene_1, Flash will know that and automatically go to the frame in Scene_2 that contains the button "Return to Main Menu".
Conversely, if the user has not seen Scene_1, Flash will know and automatically go to the frame in Scene_2 that contains the button "Go see Scene_1".
I imagine there would be an action frame at the end of Scene_2 that will contain the as2 code to enable this action.
Perhaps something like, but probably not at all like the following:
if ("Scene_1", last frame == true){gotoAndPlay("frame#");}else{gotoAndPlay("frame#");}
View 1 Replies
Jun 2, 2010
I am working with a project that has many scenes. Each scene has a movie clip attached to it. The first scene is simple...just a couple of buttons and that is it. My worry is that when I add all of the videos that correspond with each button and publish the SWF will be a huge file. THE QUESTION: Does flash load ALL scenes of a movie or does it load the first scene and then load the other scenes when the user needs to view them?
My ultimate goal is to just have the first scene load and then when the user clicks on the buttons contained within that scene that only upon release does the corresponding scene load. Maybe I am doing this completely wrong and should look at doing it another way.
View 6 Replies
Feb 18, 2009
I've been trying to load a movie clip from a movie clip that has been loaded. I am trying to provide a simple means to change the look / feel of the flash application by placing the graphics and controls into a second swf. Each different screen is represented by a different movie clip that is in the second swf. So I've got app.swf loading ui.swf. I want to load screen1_mc from ui.swf.
The app.swf is loaded by a master swf. There may be multiple copies of the app.swf that can be loaded by the master.swf and each app.swf could be configured differently. For each "unique" app.swf it is stored under a unique folder that is not known to me in advance. Since I don't know the unique folder in advance, I can't use import / export for runtime sharing. Is there any way to load the movie clips from the loaded movie clip? (Basically, I want to treat the ui.swf as an extension to the library.)
View 0 Replies
Oct 30, 2009
i have movie clip x (which is blank), and movie clip y, but movie clip is only on the timeline
how do i play movie clip y in movie clip x ??
View 1 Replies
Mar 16, 2005
I'm working on a flash site and I'm having some trouble with the programming for it. I'm not so great at action script, so I'm hoping that my troubles are caused by my own stupidity and that some cool smart person will have an answer for me.
So, I have a main menu flash file that functions like the one in this tutorial:
http://www.kirupa.com/developer/mx/p...transition.htm I set it to load various swf files and it's works just fine. What I want to do is have it load a swf that functions exactly the same (buttons that load external clips with transitions) as the main swf- this is a sub page menu. So, in theory, the sub menu page should load the final content, and three swfs would be seen stacked ontop of each other.
I changed the instance names in the sub menu file to be different than that in the main menu file. This fixed the original problem of it loading the content clip into the clip that the sub menu should stay in. Now, It loads the sub menu just fine, but then it gets stuck and never loads the content. The sub menu buttons will not function at all. Independent of the main menu, the sub menu file works perfectly What can I do??? Does it have anything to do with the "_root"? I never understood the concept, so I'm having trouble with it.
View 5 Replies
Mar 19, 2009
Ok so i'm trying to create a percentage bar that automaticlly adjust depending on data pulled from a XML file. and I'm currently have some problems with the data getting to the second frame.. here is what I havethe xml file code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<myxml>
[code].....
View 1 Replies
Jul 8, 2008
I'm using the code below to fade in a movieclip and I'd like to know how I halt the fade in at 80% say.
onClipEvent (enterFrame) {
this._alpha = _alpha +6;
}
View 2 Replies