00:00
00:00
Newgrounds Background Image Theme

Slubby383 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

The Tutorial Collab '07

63,765 Views | 1,253 Replies
New Topic Respond to this Topic

Response to The Tutorial Collab '07 2007-07-25 22:56:03


I am definitly not doing anything for this collab.

I bet you werent expecting that!
This collab will rule
I am serious, I am not doing anything for this

Response to The Tutorial Collab '07 2007-07-25 23:01:40


At 7/25/07 10:56 PM, RiotFlash wrote: I am definitly not doing anything for this collab.

Um...good for you?


:U

Response to The Tutorial Collab '07 2007-07-25 23:21:01


hey Depredation, how many tuts completed so far?

Response to The Tutorial Collab '07 2007-07-25 23:58:41


I will take part on "right-click menu"

Response to The Tutorial Collab '07 2007-07-26 00:04:17


At 7/25/07 11:58 PM, demonslayr wrote: I will take part on "right-click menu"

Sorry mate, already made it :P but you can do one and Dep may put both in

Response to The Tutorial Collab '07 2007-07-26 00:40:29


Hey, just letting people know im working on a "character design" tut in flash.

Just letting people know....

-----------------------------| Website | 101 Signs Collab | NG Audio Portal Flash |----------------------------

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 03:46:35


i made a Windows NG too.(didnt know you got 1 too)

Response to The Tutorial Collab '07 2007-07-26 03:48:27


put me on sky.. (i dont know why, but trig1 did so i dont want it more :/)

Response to The Tutorial Collab '07 2007-07-26 04:55:46


Okay, uh...I still want to know what the "Binary" tutorial entails. Like I said, I know a lot about binary, I'm just a little unsure about why someone would want to have a tutorial on it in a bunch of Flash tutorials. The basics of binary as a number system? Converting between it and decimal? Bitwise operators? Storing flags in variables? Just tell me what to tutor and I'll tutor a tutorial about it! ;)

Response to The Tutorial Collab '07 2007-07-26 06:44:57


At 7/26/07 04:55 AM, Listen2Reason wrote: Bitwise operators?

This one (if i'm correct). It's actually reasonably basic. Eg.

if(tut == true){}

is the same as

if(tut==1){} or if(tut){}

At 7/25/07 11:58 PM, demonslayr wrote: I will take part on "right-click menu"

Sorry, it's taken, any other parts you would like?

At 7/25/07 11:21 PM, Krisddd wrote: hey Depredation, how many tuts completed so far?

I'm not sure, 5-7. I need more please.

At 7/25/07 09:26 PM, CaptinChu wrote: I have finished all four of my tutorials. Am I allowed to make a fifth?

Not yet.

At 7/25/07 07:23 PM, UnknownFear wrote: Oh, I have a small request. Could someone do a Photoshop tutorial on making.. not scan lines, but the big vertical lines?

You mean ones similar to those that are in my sig?

At 7/25/07 06:57 PM, UnknownFear wrote: Ill send you the .FLA if you think it is good enough for the collab.

Good, but the last page needs to be 2 pages and have some pics to explain it. apart from that, great tut.

At 7/25/07 06:32 PM, Warchamp7 wrote: Needs some pictures I think lmfao

No pictures needed, you added some colour so it's easy on the eye. Great tut, send me the .fla.


BBS Signature

Response to The Tutorial Collab '07 2007-07-26 07:06:45


I've been waiting for this for ages!

I'd like to do:

Flash
# Cartoon
# Faces

Animation

People

# Walk Cycles

Animals/Nature

# Sky
# Trees

General

# Blood

====

I don't know if any of those have been taken, and I'm not too keen on reading up on 8 pages :P

Response to The Tutorial Collab '07 2007-07-26 07:16:30


At 7/26/07 07:06 AM, Penboy wrote: I've been waiting for this for ages!

You can only have 4 parts max (part from me, whos got 5 :D ) and the part list isnt in this thread, its on deviant art (link).

Response to The Tutorial Collab '07 2007-07-26 07:34:23


At 7/26/07 07:16 AM, trig1 wrote:
At 7/26/07 07:06 AM, Penboy wrote: I've been waiting for this for ages!
You can only have 4 parts max (part from me, whos got 5 :D ) and the part list isnt in this thread, its on deviant art (link).

Oh.

In that case I'll do Sky, Trees and Bouncing.

Response to The Tutorial Collab '07 2007-07-26 07:49:50


Hey everyone!!!! I'd really like to make a part or few for this collab but I need a new hard drive to get Flash to work so right now I can't do anything sorry Dep. Hopefully I can help out somehow. Any ideas?


BBS Signature

Response to The Tutorial Collab '07 2007-07-26 10:31:17


At 7/26/07 06:44 AM, Depredation wrote: You mean ones similar to those that are in my sig?

Yeah. How do you make those lines in Photoshop?

Good, but the last page needs to be 2 pages and have some pics to explain it. apart from that, great tut.

You mean, make the last page have all the steps, but in pictures? I can do that. Ill get to work on it in a few minutes than send you the FLA via PM.

Response to The Tutorial Collab '07 2007-07-26 11:05:30


At 7/26/07 06:44 AM, Depredation wrote:
At 7/26/07 04:55 AM, Listen2Reason wrote: Bitwise operators?
This one (if i'm correct). It's actually reasonably basic. Eg.

if(tut == true){}

is the same as

if(tut==1){} or if(tut){}

That's a bit of a misleading name, to be honest. I know it's kinda commonplace to talk about it as binary, especially since Inglor's original tutorial, but 'Boolean logic' or something along those lines would be more fitting (ty to whoever first said that XD).

I've been messing around in that kind of coding for a while and think I have a pretty good understanding of it. For a start:

if(blah)

isn't exactly the same as:

if(blah == true)

although they have the same effect. The first one is basically the equivalent of saying "If that is true...", while the second is the equivalent of saying, "If the statement 'that is true' equates to being true..." - a waste of time and space when you've got the first method :)


BBS Signature

Response to The Tutorial Collab '07 2007-07-26 11:09:06


im not sure what it looks like when converted to bytecode, i would assume there would be some optimiziatino done to remove redundant comparisons, but im in no position to say with an assurance

Response to The Tutorial Collab '07 2007-07-26 11:20:24


Walk Cycle Tut

I've never made a tutorial before so I don't know if this will be helpful to anyone. It also takes a while to get through without working 'Next' and 'Prev' buttons because I show each frame of the walk cycle sketch individually. Comments would be great.


Tim Allen+Santa Claus= A flash that doesn't have nearly enough views! Watch The Tim Allen!

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 13:07:51


I finished the AS tweening tutorial last night, but my home wireless network is being problematic, I'll link it once I get my network back.


BBS Signature

Response to The Tutorial Collab '07 2007-07-26 13:21:41


trig1 did so im not glad for basic 3D,
so i want Sky. if i may (so i not want 3D morE, i though it was(paint3D, not AS)

Response to The Tutorial Collab '07 2007-07-26 15:50:52


I'm finished with my drawing hands tut, but i was planning on send the 2 flas in one pm ( the other one is the drawing eyes one).
Is that ok or do i send the one i've finished now?


Gamertag: enquencle

Looking for people who plays Fifa 08 :(

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 17:04:02


At 7/26/07 04:33 PM, Chaz wrote: sorry dude i was tired. i think it's on one of the last pages, probs the last or secdonf from last, the word IN is just missing the I or something. but like i say it's a great tut.

Yeah, i think i fixed that one now.
Thanks for pointing it out.

Also, this thing is going really fast. Everyday it has like 2 more pages and i get lost with it :S


Gamertag: enquencle

Looking for people who plays Fifa 08 :(

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 17:09:57


At 7/26/07 06:44 AM, Depredation wrote: Good, but the last page needs to be 2 pages and have some pics to explain it. apart from that, great tut.

Hey Dep. Sorry, but I don't quite understand what you mean by making the last page two pages and pics to explain it. If you could go into detail with this, I'd greatly appreciate it.

Response to The Tutorial Collab '07 2007-07-26 17:15:26


At 7/26/07 11:20 AM, CybermonkeyStudios wrote: Walk Cycle Tut

I've never made a tutorial before so I don't know if this will be helpful to anyone. It also takes a while to get through without working 'Next' and 'Prev' buttons because I show each frame of the walk cycle sketch individually. Comments would be great.

first of all, i dont get it, is that one page all there is?
also, you may want to make his legs gho out further, because one thing we will want to teach in this tutorial is that for most animation, you want to exaggerate the movement, as this gives a more exciting effect to both videos and flash games

Response to The Tutorial Collab '07 2007-07-26 17:17:08


You have to right click and press "Forward" to see the next page. Sorry.


Tim Allen+Santa Claus= A flash that doesn't have nearly enough views! Watch The Tim Allen!

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 17:22:30


Hey Can I do "Filters" and some "Character Design"? I have confidance I can make something great for those two.


Check out my new movie "Blood Harvest"!

BBS Signature

Response to The Tutorial Collab '07 2007-07-26 18:29:11


Hey Dep, can I do # Actionscripted Colour?

I'd like to expand it to include other properties aside from colour as well if you don't mind.


BBS Signature

Response to The Tutorial Collab '07 2007-07-26 18:41:11


:Penboy wrote:
:In that case I'll do Sky, Trees and Bouncing.
Did it already xP

:CybermonkeyStudios wrote:
:Walk Cycle Tut

:I've never made a tutorial before so I don't know if this will be helpful to anyone. It also takes a while :to get through without working 'Next' and 'Prev' buttons because I show each frame of the walk :cycle sketch individually. Comments would be great.
Put all the frames and title things into a movie clip, and put Next Frame, Prev Frame buttons for it

Response to The Tutorial Collab '07 2007-07-26 19:26:54


Oh, Boolean logic! Why didn't you just say so. :P No problem, I'm on it.

Response to The Tutorial Collab '07 2007-07-27 04:09:04