Be a Supporter!

Question For Ng Pre-loader

  • 522 Views
  • 22 Replies
New Topic Respond to this Topic
MadC
MadC
  • Member since: Sep. 16, 2002
  • Offline.
Forum Stats
Member
Level 03
Art Lover
Question For Ng Pre-loader 2005-09-26 12:41:55 Reply

i got a simple question for the latest NG preloader download..

can i run this through an older version of flash..

as in.. flash 5?

it's the only one i like using, MX isn't for me

lil'help plz an thx..

Darkaxl
Darkaxl
  • Member since: Oct. 23, 2004
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 13:33:27 Reply

still using flash 5 ^^; thats kinda rare to find someone like that. Anyway No i dont think the NG pre-loader would work becuase of the actions used in MX and 5 i may be wrong tho.

*enter intellegent person*


BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 13:34:25 Reply

it doesn't work in flash 5... I'll try and whip you up in liveSwif, it uses Flash 5 AS, gimme 20 minutes

Logo
Logo
  • Member since: Jul. 21, 2005
  • Offline.
Forum Stats
Supporter
Level 16
Animator
Response to Question For Ng Pre-loader 2005-09-26 13:36:33 Reply

At 9/26/05 01:34 PM, Inglor wrote: it doesn't work in flash 5... I'll try and whip you up in liveSwif, it uses Flash 5 AS, gimme 20 minutes

*Humps inglor's leg*


Ignorance is bliss.

BBS Signature
Darkaxl
Darkaxl
  • Member since: Oct. 23, 2004
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 13:50:04 Reply

Lol inglor dya know someone has robbed you're Sig...lol.


BBS Signature
liam
liam
  • Member since: Dec. 11, 2004
  • Offline.
Forum Stats
Member
Level 22
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 13:51:13 Reply

At 9/26/05 01:50 PM, Darkaxl wrote: Lol inglor dya know someone has robbed you're Sig...lol.

His sig? He stole that from Denvish.


Sup, bitches :)

BBS Signature
byteofthat
byteofthat
  • Member since: Jun. 7, 2004
  • Offline.
Forum Stats
Member
Level 14
Programmer
Response to Question For Ng Pre-loader 2005-09-26 13:51:46 Reply

You got always search the NG portal for a pre-loader download. How I learned how to make one way back.

Darkaxl
Darkaxl
  • Member since: Oct. 23, 2004
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 13:53:38 Reply

liam i nvr knew that ^^; anyway this aint a genral topic lets all hush and be quiet.

*starts to prey*


BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 14:01:13 Reply

onClipEvent(load){
booleanflag=false;
}
onClipEvent(enterFrame){
if((_root.getBytesLoaded() == _root.getBytesTotal()) && !booleanflag){
_root.nextFrame();
booleanflag=true;
}
}

put that on a movieclip on the frame you want the preloading to happen

Fim
Fim
  • Member since: Apr. 19, 2005
  • Offline.
Forum Stats
Supporter
Level 47
Audiophile
Response to Question For Ng Pre-loader 2005-09-26 14:07:40 Reply

I dont care what the question was! - webwasp always has the answer!!


BBS Signature
Afro-Ninja
Afro-Ninja
  • Member since: Mar. 2, 2002
  • Offline.
Forum Stats
Moderator
Level 44
Game Developer
Response to Question For Ng Pre-loader 2005-09-26 14:17:28 Reply

At 9/26/05 02:01 PM, Inglor wrote: onClipEvent(load){
booleanflag=false;
}
onClipEvent(enterFrame){
if((_root.getBytesLoaded() == _root.getBytesTotal()) && !booleanflag){
_root.nextFrame();
booleanflag=true;
}
}

put that on a movieclip on the frame you want the preloading to happen

why use a boolean?

onClipEvent(enterFrame){
if(_root._framesloaded==_root._totalframes
)
_root.nextFrame();
}

you could probably do this too, although I've never tried it

onClipEvent(enterFrame){
_root._framesloaded==_root._totalframes ? _root.nextFrame() : 0;
}

=)


BBS Signature
liam
liam
  • Member since: Dec. 11, 2004
  • Offline.
Forum Stats
Member
Level 22
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 14:18:55 Reply

At 9/26/05 02:17 PM, Afro_Ninja wrote: (_root._framesloaded==_root._totalframes)

Or use just one equals sign, as you did before.. he he.. God it would be good to be able to fix my mistakes like that.

<3

Sup, bitches :)

BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 14:22:16 Reply

At 9/26/05 02:17 PM, Afro_Ninja wrote: why use a boolean?

the answer is simple my friend :) because your script keeps doing nextFrame instead of doing it once,

Afro-Ninja
Afro-Ninja
  • Member since: Mar. 2, 2002
  • Offline.
Forum Stats
Moderator
Level 44
Game Developer
Response to Question For Ng Pre-loader 2005-09-26 15:26:43 Reply

At 9/26/05 02:18 PM, -liam- wrote:
At 9/26/05 02:17 PM, Afro_Ninja wrote: (_root._framesloaded==_root._totalframes)
Or use just one equals sign, as you did before.. he he.. God it would be good to be able to fix my mistakes like that.

<3

ssssshhhh =O

the answer is simple my friend :) because your script keeps doing nextFrame instead of doing it once,

not if you if delete the MC on that nextFrame. Or just forget the mc and put the script on the timeline : )


BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 15:31:48 Reply

At 9/26/05 03:26 PM, Afro_Ninja wrote: not if you if delete the MC on that nextFrame. Or just forget the mc and put the script on the timeline : )

you can't onEnterFrame=function or function onEnterFrame in 5 I believe

gorman2001
gorman2001
  • Member since: Aug. 18, 2002
  • Offline.
Forum Stats
Member
Level 14
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 15:35:23 Reply

At 9/26/05 03:31 PM, Inglor wrote:
At 9/26/05 03:26 PM, Afro_Ninja wrote: not if you if delete the MC on that nextFrame. Or just forget the mc and put the script on the timeline : )
you can't onEnterFrame=function or function onEnterFrame in 5 I believe

i hate Flash 5 :p


website :: hugostonge.com
my job :: we+are

Recep-Lan
Recep-Lan
  • Member since: May. 1, 2004
  • Offline.
Forum Stats
Member
Level 10
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 15:36:39 Reply

you still using Flash 5 OOOH FOR FFS !!
i have the new flash you should try it it's really cool !


I rule you

BBS Signature
Logo
Logo
  • Member since: Jul. 21, 2005
  • Offline.
Forum Stats
Supporter
Level 16
Animator
Response to Question For Ng Pre-loader 2005-09-26 15:50:18 Reply

You guys talking AS turns me on...

I so wish i knew AS...


Ignorance is bliss.

BBS Signature
Darkaxl
Darkaxl
  • Member since: Oct. 23, 2004
  • Offline.
Forum Stats
Member
Level 08
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 15:51:08 Reply

wtf how can AS turn you on. O yeah and the topic has been answered dont re-new old topics.


BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Question For Ng Pre-loader 2005-09-26 15:52:54 Reply

At 9/26/05 03:50 PM, LogoPresents wrote: You guys talking AS turns me on...

I so wish i knew AS...

Wow! it's almost like you can enter a thread (AS: Main) and learn it! Woah?

At 9/26/05 03:51 PM, Darkaxl wrote: wtf how can AS turn you on. O yeah and the topic has been answered dont re-new old topics.

how about no. We are still on the subject

Question For Ng Pre-loader

MadC
MadC
  • Member since: Sep. 16, 2002
  • Offline.
Forum Stats
Member
Level 03
Art Lover
Response to Question For Ng Pre-loader 2005-09-28 13:38:36 Reply

At 9/26/05 03:36 PM, FinalZero wrote: you still using Flash 5 OOOH FOR FFS !!
i have the new flash you should try it it's really cool !

i've downlaoded MX with all plugins.. i do have it, i did try it..
it's different thats for sure..

I had to search far and wide for flash 5..

my next question is....

this preloader..

onClipEvent(load){
booleanflag=false;
}
onClipEvent(enterFrame){
if((_root.getBytesLoaded() == _root.getBytesTotal()) && !booleanflag){
_root.nextFrame();
booleanflag=true;
}
}

any discription on what type it is?
and do i need to make a picture for it?
me confused..

MadC
MadC
  • Member since: Sep. 16, 2002
  • Offline.
Forum Stats
Member
Level 03
Art Lover
Response to Question For Ng Pre-loader 2005-09-29 05:07:33 Reply

bump

Logo
Logo
  • Member since: Jul. 21, 2005
  • Offline.
Forum Stats
Supporter
Level 16
Animator
Response to Question For Ng Pre-loader 2005-09-29 05:10:37 Reply

At 9/26/05 03:52 PM, Inglor wrote:
Wow! it's almost like you can enter a thread (AS: Main) and learn it! Woah? & I'm gay

Yeah, if i wasn't too busy complaining about making 002...


Ignorance is bliss.

BBS Signature