Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Preloder



needhelp with setting for preloder to go directly to amin page, I have everything working in my flash movie, the only part i'm having trouble with is when it says accesing site in my movie - I can't get to go to main page smothley. Can anyone help??????



FlashKit > Flash Help > Flash MX
Posted on: 07-14-2003, 02:03 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Preloder Like This...
hey, just wondering if anyone can direct me to a tutorial or paste in some script on how to do a preloader like on this site:

http://www.gridplane.com

basically i'm after a really smooth preloader, as i'm having problems with mine being too clunky and also my loadbar doesn't reach 100% properly—i've just fudged it for now.

http://www.atype.com.au

here's the currect script i'm using:


Quote:




onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
percentage = per+"%";
loadBar._width = per*9.43;
if (percent>99) {
_parent.gotoAndPlay(2);
}
}




cheers
iota.

Preloder
does any one know how to add a swf movie after a preloder loads if you can tell me the action script that would be cool and where to place it thank you

Preloder
whats up everyone i had a problem with some preloders not playing the movie right and i was asked to put the swf files here . one has the preloder and the other has the movie it is supposed to plane any help would be great thanks

Please Help With A Preloder
Preloader
Hi!
I wonder why this code don't work?
Here's the code:

Code:
onClipEvent (enterFrame) {
_height+=_root.getBytesLoaded()/_root.getBytesTotal()*79;
}

Can it be something with that that the code is in a movieClip in a mask?

thanks Albert
Love this smiles

How 2 Add A Preloder ?
hies
my prob is simple but i can't get itz ans anywhere
okies so hope i get it here
i don't know how to add a preloader into my movie
i used to make a loadin' sequence and then the main page comes
but tatz not right
i want people 2 see the loadin' clip while the site is loadin'
plz iif u know do reply
thanx

Really Simple Preloder
is there a really easy preloder script which takes up about 2 frames? ill put an MC in for the animation, i just want somethin simple cos its only for a web page, not the entire site.

Thanks

How Would It Be Possible To Make A Preloder Appear....
How would it be possible to make a preloder appear before the rest of the movie, and have it show loading.... or something so that the people waiting to see it know that it is loading?

Preloder 3 Movies
I've got on one page 3 different movies, now I want to have 1 preloder in front of that page because it takes an different amount of time to load the movies.

How can I create a preloder that doesn't stop before all other 3 are loaded?

External .Jpg Preloder
Hey, the tutorials and other question i have found here haven't really helped. I want to create a preloader that can be duplicated (not necessary yet) and loads an external images.

Can any one get me of the ground with this one?

any help would be greatly appreciated, thanks.

Preloder Question
hi,
I want to do a preloader and are a bit confused. some use different scenes and some place the preloader in the first keyframe. some use a own swf-file for the preloader. I wonder whats the difference? Is one solution better than the other?

I really want to know what you think before I decide in what way I do my preloader.
I also wonder if you have to use ifFrameLoaded because all in my mainmovie is in one frame. it must be possible to load the movie without counting the frames.

/vicky

Percentege Preloder
Could somebody please point me to a percentege preloader component? without a loadbar etc, only the percentege preloder.

Percentege Preloder
Could somebody please point me to a percentege preloader component? without a loadbar etc, only the percentege preloder.

Preloder Problems( Not Showing)
I made a prealoder, my code is pretty simple and it works perfect with the file were I have a static image in second scene. But when I place the prealoder into more complicated file were I also have two scenes (all my second scene movie clips sitting in library and actions calling them to play) Preloder not showing up.The movie plays (after download completed) but ignores the preloader... there is some conflict.
Here is my preloder:
first frame action-

total_bytes = _root.getBytesTotal();
loaded_bytes = _root.getBytesLoaded();
percent_done = int((loaded_bytes/total_bytes)*100);
bar.gotoAndStop(percent_done);
ifFrameLoaded ("Scene 2", 60) {
gotoAndPlay ("Scene 2", 1);
}

and my next frame, same scene:

gotoAndPlay (1);

and in second scene there is no actions in the Timeline( only "stop()" at the last frame were it has to be anyway.


Do you thing I'm missing something?Maybe You know anybody who could help.
Thanks in advance
Irina

Preloder Works In Simulation But On The Web
A while ago I found on another board a nice piece of preloading code for multiple images. It seemed to be working great until I've actually posted the swf on the web. The text field displaying the loading progress in % started showing NaN until about 85-90% of the totalbytes were loaded. This would coincide with the first image actually popping up. This does not happen in a simulation mode: the first image shows up at the same point but the percentage is displayed correctly way beforehand and grows steadily from ~5 to 100%. I think the reson behind this behavior are dynamically created emptyMovieClips that are being used for loading images. Preloader must be getting confused every time the new one pops up and resets itself to NaN. I tried to include a line of code that would correct it but it doesn't seem to be doing anything. I'm not emotionally attached to this script so if anyone has suggestions for a preloader that would grab images from the external folder while displaying the progress in percentage I would appreciate.




code:
//number of images to be displayed:
srcL = 10;
//source of Images for a gallery:
imageFolder = "Graphics/Gallery_1";
var Images = new Array();
for (i=0; i<=srcL; i++) {
Images[i] = [imageFolder+"/image"+i+".jpg"];
}
// create one clip for each movie
// and load the movie into each one.
for (var i = 0; i<Images.length; i++) {
var tmp = this.createEmptyMovieClip("clip"+i, i);
tmp.loadMovie(Images[i]);
}
// now set up an onEnterFrame event
// to continually check the load progress
// and update the bar clip
this.onEnterFrame = function() {
var stat = 0;
// initial status
for (var i = 0; i<Images.length; i++) {
var tmp = this["clip"+i];
stat += (tmp.getBytesLoaded()/tmp.getBytesTotal())*100;
}
stat /= Images.length;
// get the average status value
if (isNan(Stat) || tmp.getBytesTotal()<8) {
return;
} else {
this.bar._xscale = stat;
// set the width of the bar to reflect the load status
this.txt.text = Math.round(stat)+"%";
trace(stat);
// if the load is complete, cancel the onEnterFrame
if (stat == 100) {
delete this.onEnterFrame;
}
}
};
stop();

Preloder - Macromedia Style
hi all,

i'm looking for a preloader like the one macromedia have (or used to have?) - the arrow circling around with a slight fade in it's tale end.

i'm wondering if anybody has ever come across one like this?

thanks!
jose

Preloder, Cartoon, Home
hey!

well i got an annoying prob:

there are 3 swf datas preloader, intro cartoon and the actual homesite.
i´d like the preloader keep on going till the cartoon (not that small) is fully loaded.

has anybody an idea?

greetz from germany!

preloader swf-->cartoon swf--> homesite swf

How To Get The Flv Files In Preloder Method?
please how to get the flv files in preloder method?

any example given to me urgent requirement?

with example for coding ..........

Help With Second Preloder Inside Main Movie
Hi guys.
Ive followed some tutorials and got my main preloader running correctly, still needs a tidy up but works.
There is a movie in the root folder of the site that is called by the spec sheets button...it is a big ish movie so ive used the identical preloader for it with some taxt changes.......it works fine on my system but when online the bix of the preloader appears but it runs incorrectly.....im realy puzzled....??
If any one can help the site is located at

http://www.deveronside.co.uk/staffy/
and the button in question is the one for spec sheets
Thanks in advance fpr any suggestions
Les

Preloder Headache - Dynamic Preloader
OK, What I`m doing is,this:
I have a movie which creates serval movieclips which then will be used by a controller Movieclip to load other external swfs into them.
This controller movieclip is itself effectively a preloader. Actually everything works fine, save one problem:

The preloader pops up, doesen`t show any loadingprogress, the target movie in whom the external swf is being loaded disapers, there is nothing for a moment. Then according to connection time the requested movie appears.

What might be the reason of this ? All suggestions / ideas / Xtremly welcome !!!

You might watch the effect at spade-trading.com

Unfortunately I'm not at Work (it`s 1 O Clock in the Morning in Germany) right now, but rather keept from sleep by this Problem.
This Is why I can`t post any code right now...

How To Make A Preloder Inside Of A MovieHolder
Hi,
all pro..in flash. im a newbie and want to explore the capability of
flash MX .i want to learn how to create a preloder inside of MovieClip. like when you make a loadmovie inside of MovieClip instead of level. hope for your respond.
and thanks a lot .q^_^p

Preloder For Multiple Movie Clips
Hello there.
I'm building a website where i have 9 thumbnails on the main time line
What i want to achieve is to press on the thumbnail which will redirect to
a movie clip each time fairly big in size and have a preloader for each thumb. Load the content before it enters the first frame of each movie clip since the content is fairly big in size.(3d animation)
Can you suggest something please

Thx:)

Attach Sound, Export In First Frame And Preloder
Hello. i use MX (6) ver. of Flash and I am working on slide show with sound background. I use attache sound method to play sounds. But.

Attached sound work only when i allocate
-Export for ActionSript and
-Export in first Frame.
And problem is all lincked sounds starts loading in very begin. So my preloader doesnot work well. Cuz preloader starts work only when sounds are loaded. To escape this problem i could not allocate -Export in first Frame. But in this case attache sound method doesnot work.

I see only one exit now. Create preloader and main movie in different swf but it is not i really want. How to use attach sound method with linked sounds but do not allow them load in first frame?

Thanks

Preloder ScaleX Property And X Property
Hi!

within the loader listener's progressevent I had my preloader mc update the scaleX property and works fine, thus, it moves and scales just like a preloader does until it reaches 100. My only concern is when scaleX updates the preloader mc 'x' location seems to be moving as well making the preloader clip looked liked it scales on both sides (both ends of the line). As i examined the preloader mc 'x' property it stays the same all throughout. This is weird.

anyone?

thank you in advance.

Copyright © 2005-08 www.BigResource.com, All rights reserved