There is nothing flashy about preloaders other than loading the content b4 it plays. Its up to you to decide how you want it for the viewers.
Printable View
There is nothing flashy about preloaders other than loading the content b4 it plays. Its up to you to decide how you want it for the viewers.
My preloader seems to work great except for one MAJOR problem. The movie goes to the second frame and STOPS.
See!
I used this tutorial to make the preloader.
Anyone have an idea why this would happen?
Thats wierd...if you refresh the page, it goes... post your actionscript, the tutorial link dosen't seem to be working.
~Sportzguy933
I've got a simple animation-140k-flashmx-on a mac. using the 3 frame prelooader:
http://www.glowdesignhouse.com/cooluloid_index3.8.html
first scene-
frame 1-if (_framesloaded == _totalframes) {
gotoAndPlay(3);
}
frame2-gotoAndPlay(1);
frame3-nextScene();
in the next scene everything is in a movieclip in the first frame. I've synced up the sound. It is embedded in an html page that centers the content. It seems to work fine in firefox but not in netscape or safari. I'm just getting a blank screen. Any ideas or suggestions?
Thanks a ton
Do you have any content on frame 1?
Scene 1, Frame 1 - The Loading bar movie clip:Quote:
Originally Posted by sportzguy933
Scene 1, Frame 1, the "Loading" text movie clip:Code:onClipEvent (enterFrame) {
_root.stop();
mctotal = _root.getBytesTotal();
mcloaded = _root.getBytesLoaded();
percent = Math.round((mcloaded/mctotal)*100);
load = percent+"%";
progress_mc1._xscale = percent;
if (percent == 100) {
_root.play();
}
}
Scene 1, Frame 2Code:onClipEvent (enterFrame) {
_parent.loaded = _parent.getBytesLoaded();
_parent.total = _parent.getBytesTotal();
if (_parent.getBytesLoaded() == _parent.getBytesTotal()) {
_parent.nextFrame();
}
}
I then start the rest of the movie at frame 2.Code:stop();
I've tried removing the stop(); part of the preloader @ frame 2 to see if it would go.
I have all the content in frame 1 of the second scene (1 movieclip)Quote:
Originally Posted by sportzguy933
thanks for any help
Make sure there is a stop(); action on the first frame in an "Actions" layer.Quote:
Originally Posted by marycallahan
Fungku-
I would probably just delete that preloader, as there are SO many path actions (_parent, _root, etc.), which can be confusing. Try using the one I posted, or follow this tutorial (only I would change the look of the bar...) ;).
~Sportzguy933
Any idea for a funky preloaders that is either bloody and cool? I am doing it for a cool movie I made. :p
You could have a bar with "blood" dripping off of it.
~Sportzguy933
I'm new to Flash and I'm trying to get two .PNG images to become a preloader for my slideshow..... Image one is the outline and image two the fill...now I have tried several tutorial and honestly I'm now REALLY confused :confused: ....PLEASE help...
The movie keeps looping and I don't seem to get the " fill " to load at the same rate as the bytes.....
And to make things even more frustrating when I test my movie it jumps straight into the images and I don't even get to see the preloader
Try this:
Ctrl+Enter Tests the movie,
Ctrl+Enter in testing makes the Preloader load in proper internet speed, change the speed in one of the top-drop-down-menus.
OK maybe your image is too small sometimes and your content don't need preloading, Only use a preloader for a SWF bigger than 50kb. If its below that most ppl finish loading it in about 2 to 3 seconds and that is just an waste of time.
Hey. Post your FLA, I should be able to fix this :cool: :D. Also, a good way to build a site is to work from the bottom up, make the preloader first, and then put a big image in place of what will be your site. Then test it, like Tongxn said, at internet speed, and see if it works, if it does, then start building the actual contents of the site, if it doesn't work, then tweak it ;).
~Sportzguy933
You there Digicam?
:( been sick since I posted the question...I tried to send you the FLA but it's 600k and won't let me upload :thumbsdow
mmm... store it on an online web storage and give us the link here.. maybe then ...
hey.
i am trying to create a preloader in flash
i have a logo, and basically i want that logo to gradually change colors.
lets say fex it will be programmed to last for 10 sec.
and the color will fade from ex pink to grey.
is that very difficult to set up in flash?
hope someone can help me out here...
cheers
I've managed to solve 90% of my problem...but now the progress bar (which is masked) only "grows" about half way and stops even though the % counter carries on 'till it reaches 100% and then carries on with the scene
@Brit-
Try using the script I posted, but instead of having a progress bar, have it change colors. This may look a little choppy though...
@Digicam-
Please post your FLA, or email me it here:
[email protected] and I will upload it to my server, and post the link here ;).
~Sportzguy933
I always wandered how do you make something change colours... i mean Random colour that are similar with each other i mean..
so if you have : #FFFF00, so can you make system recongnise that and just get random numbers on #FFFF00? and could you change the other ones as well?
Its just that I don't understand the basic concept of HEX color values...