Forum Topic: how do i do the mateix thingy

(201 views • 17 replies)

This topic is 1 page long.

<< < > >>
None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/16/06 11:02 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

with making the letters go down like they do in the matrix series.

;D
Sig by me.

BBS Signature

Happy

Beavis-Love

Reply To Post Reply & Quote

Posted at: 5/16/06 11:03 PM

Beavis-Love DARK LEVEL 08

Sign-Up: 04/23/06

Posts: 1,572

You don't =)


None

TheHappySheep

Reply To Post Reply & Quote

Posted at: 5/16/06 11:32 PM

TheHappySheep LIGHT LEVEL 17

Sign-Up: 02/15/04

Posts: 3,147

not funny odoyle. Well, there's probably some AS code you can use to do it, but I don't know AS. Alternatively you can tween MCs moving down the screen but you'll have to tween each one individually and might take some time. You can download the matrix font though which will make it easier.

BBS Signature

None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/16/06 11:37 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

ya but i need my question answered.

which is how do i make the matrix letters scroll down the srceen like in the movie

;D
Sig by me.

BBS Signature

None

TheHappySheep

Reply To Post Reply & Quote

Posted at: 5/16/06 11:41 PM

TheHappySheep LIGHT LEVEL 17

Sign-Up: 02/15/04

Posts: 3,147

At 5/16/06 11:37 PM, KIRBY_LINK wrote: ya but i need my question answered.

which is how do i make the matrix letters scroll down the srceen like in the movie

yeah, i mean it's not like I just answered that or anything. T-W-E-E-N!

BBS Signature

None

Chrispington

Reply To Post Reply & Quote

Posted at: 5/17/06 02:47 AM

Chrispington EVIL LEVEL 31

Sign-Up: 07/02/04

Posts: 1,247

make your movieclips for the numbers, then put something like this on them:

onClipEvent (load) {
movespeed = random(3) + 4
}

onClipEvent (enterFrame) {
this._Y = this._Y + movespeed;

if (this._Y > 500) { /////<----- that 500 is how tall your movie is
this._Y = -30;
}

that will keep them looping, from to to bottom, and their speeds will be slightly different.
also i capitalised the Y's cause they sort of morphed with the"_"

so yeah, that's a simple way to do it

BBS Signature

None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 07:09 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

k but ths came up

**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 5: Statement block must be terminated by '}'
onClipEvent (enterFrame) {

**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 11: Syntax error.

Total ActionScript Errors: 2 Reported Errors: 2

;D
Sig by me.

BBS Signature

None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 07:20 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

???????????????

ummmmmmmm i think it is there

;D
Sig by me.

BBS Signature

None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 07:22 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

here, i came up with this but thier is still one error

onClipEvent (load) {
movespeed = random(3) + 4
}

onClipEvent (enterFrame) {
this._Y = this._Y + movespeed;
}
if(this._Y > 550) {
this._Y = -30;

so what do i do?

should i start all over agian?
}

and the error is

**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 8: Statement must appear within on/onClipEvent handler
if(this._Y > 550) {

Total ActionScript Errors: 1 Reported Errors: 1

;D
Sig by me.

BBS Signature

None

Khao

Reply To Post Reply & Quote

Posted at: 5/18/06 07:22 PM

Khao EVIL LEVEL 19

Sign-Up: 09/20/03

Posts: 2,767

At 5/18/06 07:20 PM, KIRBY_LINK wrote: ???????????????

ummmmmmmm i think it is there

add another one!


None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 07:26 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

this happened

**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 8: Statement must appear within on/onClipEvent handler
if(this._Y > 550) {

**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 11: Unexpected '}' encountered
}

Total ActionScript Errors: 2 Reported Errors: 2

;D
Sig by me.

BBS Signature

None

Scotttheskaterr

Reply To Post Reply & Quote

Posted at: 5/18/06 07:29 PM

Scotttheskaterr FAB LEVEL 13

Sign-Up: 06/16/05

Posts: 3,721

www.kirupa.com Might Have it


None

teenagegluesniffer

Reply To Post Reply & Quote

Posted at: 5/18/06 07:34 PM

teenagegluesniffer EVIL LEVEL 09

Sign-Up: 02/20/06

Posts: 331

At 5/16/06 11:32 PM, TheHappySheep wrote: not funny odoyle. Well, there's probably some AS code you can use to do it, but I don't know AS. Alternatively you can tween MCs moving down the screen but you'll have to tween each one individually and might take some time. You can download the matrix font though which will make it easier.

I did that once....bad idea.
I spent hours and hours just doing a small amount of text like that.
As I don't know the code for this, I can't help you...but I can suggest you do NOT tween this cause it'd be a b***h to do.


None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 07:39 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

it didn't help. but i NEED this question answered

;D
Sig by me.

BBS Signature

None

TrueDarkness

Reply To Post Reply & Quote

Posted at: 5/18/06 08:11 PM

TrueDarkness EVIL LEVEL 27

Sign-Up: 08/31/04

Posts: 4,718

You did get it answered, now either tween it or learn to learn to script. Yes, learn to learn to, I didn't make a typo.


None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 08:11 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

plz help me.

if u do i will be very thankful

;D
Sig by me.

BBS Signature

None

caseyo

Reply To Post Reply & Quote

Posted at: 5/18/06 08:13 PM

caseyo DARK LEVEL 23

Sign-Up: 05/14/05

Posts: 4,935

onClipEvent (load) {
movespeed = random(3) + 4
}

onClipEvent (enterFrame) {
this._Y = this._Y + movespeed;

if (this._Y > 500) { /////<----- that 500 is how tall your movie is
this._Y = -30;
}
}

You closed the onClipEvent before the if() before.


None

KIRBYLINK

Reply To Post Reply & Quote

Posted at: 5/18/06 08:35 PM

KIRBYLINK EVIL LEVEL 31

Sign-Up: 06/19/05

Posts: 3,511

thank you very much it worked!!!!! ^^

;D
Sig by me.

BBS Signature

All times are Eastern Standard Time (GMT -5) | Current Time: 01:53 PM

<< Back

This topic is 1 page long.

<< < > >>
You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!