how do you make a londing sceen

how do you make a londing sceen

Other Help — Page [1]
DDPOTTER
2005 Sep 25 • 10
28 ₧
how do you make a sceen on flash where it loads the movie
 
 
 
2006 Jan 23 at 09:46 PST
DiXi
Vouched

2005 Nov 17 • 121
26 ₧
i dont know how to make it...
but u can download a pre-loader

on this site:
http://files.swish-tutorials.com/files.php?act=cat&id=24

u can find more there to ;)
verry helpfull site :)
 
 
 
2006 Jan 24 at 06:46 PST
DDPOTTER
2005 Sep 25 • 10
28 ₧
i mean on your own flash movie like superjer dose on mc whats it.
 
 
 
2006 Jan 24 at 07:20 PST
SuperJer
Websiteman

2005 Mar 20 • 6629
But I didn't make my own Loader for McWhatsIt:

 
 
 
2006 Jan 27 at 00:57 PST
DDPOTTER
2005 Sep 25 • 10
28 ₧
can you tell me where i can get help for relaonders for flash 8 and may be where i can download them or have help in making them.
 
 
 
2006 Jan 27 at 07:04 PST
DDPOTTER
2005 Sep 25 • 10
28 ₧
o sorry there is prelodners there
 
 
 
2006 Jan 27 at 07:09 PST
DiXi
Vouched

2005 Nov 17 • 121
26 ₧
i gave u a site
 
 
 
2006 Jan 28 at 01:06 PST
DDPOTTER
2005 Sep 25 • 10
28 ₧
i downlond some and i don't know how to put them on my flash moive.
i try to import them and it don't know the file.
it is not a flash doc
what i do?

i use flash 8
 
 
 
2006 Jan 28 at 10:26 PST
DiXi
Vouched

2005 Nov 17 • 121
26 ₧
okok ... i dunno...
i use a easy Program... SwishMax
try to download it first....
easy to use
 
 
 
2006 Jan 28 at 12:01 PST
DDPOTTER
2005 Sep 25 • 10
28 ₧
then what you do
 
 
 
2006 Feb 2 at 08:44 PST
general_zim
Le Tigre

2006 Sep 1 • 549
16 ₧
Goes in a empty keyframe actions at the beginning of your movie.
[code:1]stop();
MakeBox();
Ready = false;
mouseClicked = true
_root.createTextField("percent", 2, Stage.width/4, (Stage.height/3)+50, 300, 100);
MakeText("Loading....");

function MakeBox() {
_root.createEmptyMovieClip("loadBox", 4);
loadBox.lineStyle(5, 0x000000, 100);
loadBox.moveTo(Stage.width/4, (Stage.height/3)+120);
loadBox.lineTo((Stage.width/4)+300, (Stage.height/3)+120);
loadBox.lineTo((Stage.width/4)+300, (Stage.height/3)+140);
loadBox.lineTo(Stage.width/4, (Stage.height/3)+140);
loadBox.lineTo(Stage.width/4, (Stage.height/3)+120);
}
function MakeLoadBar() {
_root.createEmptyMovieClip("loadBar", 3);
loadBar.lineStyle(20, 0xf99f99, 100);
loadBar.moveTo((Stage.width/4)+8, ((Stage.height/3)+120)+10);
loadBar.lineTo((Stage.width/4)+(percentage*2.9), ((Stage.height/3)+120)+10);
}
function MakeText(textValue) {
_root.createTextField("loading", 1, Stage.width/4, Stage.height/3, 300, 100);
textFormat = new TextFormat();
textFormat.size = "50";
_root.loading.text = textValue;
_root.loading.setTextFormat(textFormat);
}


function onEnterFrame() {
_root.percent.text = percentage+"%";
percentage = (_root.getBytesLoaded()/_root.getBytesTotal())*100;
_root.percent.setTextFormat(textFormat);
if (_root.percent.text == "100%" && Ready == false) {
MakeText("Click To Play");
Ready = true;
} else if (Ready == false) {
MakeLoadBar();
}
}
function onMouseDown() {
if (Ready == true && mouseClicked == true) {
_root.percent.removeTextField();
_root.loading.removeTextField();
loadBar.unloadMovie();
loadBox.unloadMovie();
gotoAndPlay(2);
mouseClicked = false
}
}
[/code:1]
 
 
 
2006 Sep 1 at 18:45 PDT
SuperJer
Websiteman

2005 Mar 20 • 6629
AWESOME.

Thanks, I'm going to use it for McDiddy's 3.
 
 
 
2006 Sep 1 at 20:53 PDT
general_zim
Le Tigre

2006 Sep 1 • 549
16 ₧
no prob.
 
 
 
2006 Sep 1 at 21:09 PDT
Page [1]