Be a Supporter!

Preloader

  • 530 Views
  • 11 Replies
New Topic Respond to this Topic
Barbaro666
Barbaro666
  • Member since: Mar. 8, 2006
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Preloader 2006-12-07 13:48:25 Reply

Ive been trying like a freak to do the simplest preloader and..no...i cant...can someone just tell me the AS to use??? becuz those tutorials are not helping....

madmanfrommarZ
madmanfrommarZ
  • Member since: Jun. 29, 2006
  • Offline.
Forum Stats
Member
Level 06
Blank Slate
Response to Preloader 2006-12-07 13:49:54 Reply

I would suggest using newgrounds preloader.
and if you smart you can mod it.

Barbaro666
Barbaro666
  • Member since: Mar. 8, 2006
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Preloader 2006-12-07 13:50:53 Reply

thats the problem... i do not want to use the ng preloader:
reasons:

1- i dunno how to use it XD

expired
expired
  • Member since: Dec. 5, 2006
  • Offline.
Forum Stats
Member
Level 03
Blank Slate
Response to Preloader 2006-12-07 13:55:08 Reply

all you do is open > then click the FIRST thing (the image of the tank) ctrl copy

place in the FIRST frame of your movie/game

Nicholas-Deary
Nicholas-Deary
  • Member since: May. 12, 2006
  • Offline.
Forum Stats
Member
Level 39
Animator
Response to Preloader 2006-12-07 14:18:42 Reply

Just download the preloader, open it, right click on the keyframe it's on, then press copy. Go onto your movie and paste the keyframe into the first keyframe of your flash. If you already have things in you first keyframe, move your entire movie along one space.


BBS Signature
HandsomeJake
HandsomeJake
  • Member since: Feb. 10, 2006
  • Offline.
Forum Stats
Member
Level 18
Blank Slate
Response to Preloader 2006-12-07 14:35:13 Reply

it's really simple. basically (you can figure out the code on your own, but it's REALLY simple), have two frames. Then in the second one, have script that takes you back to the first frame if the movie's not loaded yet or that starts to play the movie when it's loaded (or takes you to a menu of some sort. it's up to you). I don't have flash and don't remember my code, but you can do it man.

Barbaro666
Barbaro666
  • Member since: Mar. 8, 2006
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Response to Preloader 2006-12-07 14:35:15 Reply

WHERE DO I DOWNLOAD IT?

SanForD476
SanForD476
  • Member since: Dec. 22, 2005
  • Offline.
Forum Stats
Member
Level 14
Blank Slate
Response to Preloader 2006-12-07 14:46:58 Reply

clickie


LuLz Sanford?!

BBS Signature
Nicholas-Deary
Nicholas-Deary
  • Member since: May. 12, 2006
  • Offline.
Forum Stats
Member
Level 39
Animator
Response to Preloader 2006-12-07 16:20:14 Reply

If you are wanting a Christmas themed Newgounds Preloader: Click Here


BBS Signature
4Doctodragon
4Doctodragon
  • Member since: Feb. 5, 2005
  • Offline.
Forum Stats
Member
Level 31
Blank Slate
Response to Preloader 2006-12-07 16:21:23 Reply

go get a pre-loader (google/flashkit.com) and modify it to meet your personal needs


BBS Signature
Nicholas-Deary
Nicholas-Deary
  • Member since: May. 12, 2006
  • Offline.
Forum Stats
Member
Level 39
Animator
Response to Preloader 2006-12-07 16:22:36 Reply

At 12/7/06 04:20 PM, nicholas-deary wrote: If you are wanting a Christmas themed Newgounds Preloader: Click Here

Whoops.... sorry the link is incorrect, you can download a Christmas Preloader from the 2006 Christmas collection page.


BBS Signature
edit-undo
edit-undo
  • Member since: Jan. 17, 2006
  • Offline.
Forum Stats
Member
Level 19
Blank Slate
Response to Preloader 2006-12-07 18:07:35 Reply

It's easy to make your own preloader. Simply make a movie clip with 100 frames, and tween a loading bar or something in it. Then give the MC this AS:

onClipEvent(load){
_root.stop();
}
onClipEvent(enterFrame){
loaded = _root.getBytesLoaded();
total = _root.getBytesTotal();
this.gotoAndPlay(int(100*(loaded/total)));
}

On the last frame on the movie clip, make your play button. Give it this AS:

on(release){
_root.play();
}

Oh, and on the frame that your preloader movie clip is on, make sure it is stop(); 'ed. ok?


...

BBS Signature