News:

If you need instructions on how to get through the hotels, check out the enclosed instruction book.

Main Menu

Total Tutorial Topic

Farted by RomanClock, September 08, 2005, 05:06:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

RomanClock

GUYZ
what tuts do ya need?
Dont forget to look first and download the stuff thats downladable like the link above^^^^
lemayo lol :soups:

FLOUNDERMAN_CLOCK

I love you roman clock. I want your children more than I want element's children

RomanClock

lemayo lol :soups:

AmoebaClock

the gloss tutorial doesn't star for me can you post it on image shack?

RomanClock

Quote from: AmoebaClockthe gloss tutorial doesn't star for me can you post it on image shack?
http://img137.imageshack.us/my.php?image=howtogloss0012tg.swf
lemayo lol :soups:

FlashlightClock

i guessing i have to reply here for music for your (cool) game?

if so, this might be a song you could use:3

http://www.newgrounds.com/audio/view.php?id=733616&sub=6914

SpywareClock

One of these days I'll have to learn that button stuff so I can make something like those Coolboyman Collections or The Daily2oons. Which is that usually 4 button menu & when you click on each button it plays 4 different short movies. That'd be neat, I'll be workin on learning that feature. :sombrero:

PuzzleClock

yay! that gloss tut really helped me make puzzle look better, i will be updating my sig with a link to the new improved puzzle clock .fla soon, thanks for the gloss thing :)
_praiz_ my alias for newgrounds is Darth_Bambi _praiz_
[FLASH]http://i6.photobucket.com/albums/y208/DarthBambi/newsiggy.swf width=450 height=150[/FLASH]
my voice settings

ConcertaClock

Quote from: Gore_ClockOh great Lord of CC actionscript, I come to you with a question:

How can I stop this guy from bouncing up and down like this.

In the original code that I got from flashkit, it falls halfway through the platform before stopping, so I added i a piece that makes it go up when it's touching a platform, so it would rise to the surface if it went through a bit. It does work, but the problem is that it sends it to the point where it isn't touching the platform, so it falls back through again. So is there a way to make it stop before it loses the collision, or just a way to make it stop falling partially through the platform in the first place.
(Sorry if this seems incoherant)
Haha, I think i no what tut you're using. I think the problem is in the hitTest for the Hero and Platform, in order to stop him from going halfway, just put _y+(his height) in the hitTest part, that's what i did.

Oh, and roman, I no you have that glock thing, but can you make a super basic 2d shooter with like a circle, shooting another circle. I'm a beginner in as and so that whole... glock things script was a little confusing for me.

CyanClock

What about the ones I suggested?

RomanClock

(ill get to yours in bit Cyan)

Circle shoots a circle: This uses the AS Camera (requires MX 2004 or better)

1. Make two circles (on enemy and one you) and a square for the shot/laser guin ammo.
2. Make them all seperate movieclips. Give your ship the instance name "myship", the ammo "ammo", and the enemy "enemy"
3. On both circles make an explosion animation. Make sure that the first frame on each has stop() on the actionscript panel
4. Use my earlier movment tutorial to move your guy but add this code:

onClipEvent(enterFrame){
this._x += _root.speed*2
}

This code makes him continue forward.
Also put:

onClipEvent(enterFrame){
//this detects when your hit by the enemy
if(_root.enemy.hitTest(this)){
this.play()
}

5. On the square ammo, put:

onClipEvent(enterFrame){
//the if statement detects when spce is pressed
if(Key.isDown(Key.SPACE)){
//this makes the ammo appear in front of the ship
this._x = _root.myship._x +(_root.myship._width/2)
this._y= _root.myship._y
}
}

Add this to the ammo as well, it makes it go forward:

onClipEvent(enterFrame){
this._x += _root.speed*2 + 10
}

6. On the enemy put this, it tells when its hit by the laser and to go back.

onClipEvent(enterFrame){
if(_root.ammo.hitTest(this)){
//put the width of the movie where it says WIDTH
this._x = _root.myship._x + WIDTH + random(200)
//put the height of the movie where it says HEIGHT
this._y= random(HEIGHT)
}
}

7. On the AS Camera put this:

onClipEvent(enterFrame){
this._x += _root.speed*2
}

8. YOUR DONE! (Additional coding need for more enemies and weapons)
lemayo lol :soups:

doomclock


RomanClock

Quote from: doomclock............ lol :rockin:  :rockin:
lol?
k
anyone need anymore tutorials?
Im making a new one at school :)
lemayo lol :soups:

RomanClock

K, i guesss no one needs a tut right now
I prefer you posts questions ere instead of IMing me because its slowing my flash projects. PLEASE POST QUESTIONS HERE or look to see if it is here already
lemayo lol :soups:

PentagramClock

I'm trying to make a button link to my fla. And here is the code I have:

on(release)getURL(http://www.locklegion.com
/uploads/CrookNeckClock.fla);

Then this comes up:
Quote from: flash**Error** Scene=Scene 1, layer=clock, frame=1:Line 1: '{' expected
     on(release)getURL(http://www.locklegion.com/uploads
/CrookNeckClock.fla);

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

Total ActionScript Errors: 2     Reported Errors: 2
Why is this happening?
I\'ve had this signature for years now, I think I may need a new one.

Quote from: MadnessCombatThe truth is, The only friends I have are God and Jesus
Quote from: TI-83 Clock;674449imaginary friends dont count

RomanClock

Quote from: PentagramclockI'm trying to make a button link to my fla. And here is the code I have:

on(release)getURL(http://www.locklegion.com
/uploads/CrookNeckClock.fla);

Then this comes up:

Why is this happening?

You forgot the { } on everything, " " on the adress, and you left out , "_blank" completely. It helps if you use the Behaviors tab to add a web page :)  


on (release) {
getURL("http://www.locklegion.com/uploads/CrookNeckClock.fla", "_blank");
}
lemayo lol :soups:

PentagramClock

Quote from: Roman ClockYou forgot the { } on everything, " " on the adress, and you left out , "_blank" completely. It helps if you use the Behaviors tab to add a web page :)  


on (release) {
getURL("http://www.locklegion.com/uploads/CrookNeckClock.fla", "_blank");
}
{{{{Roman}}}}

Damn, how did I miss that?! Thanks!
I\'ve had this signature for years now, I think I may need a new one.

Quote from: MadnessCombatThe truth is, The only friends I have are God and Jesus
Quote from: TI-83 Clock;674449imaginary friends dont count

RomanClock

lemayo lol :soups:

PuzzleClock

ummm, ok how bout, help with sound, as in keeping it in sync with the animation, but not just speakonia, music also (if it is different). I know this one isn't much of a challenge for you, but it would be handy to always have it here. :)
_praiz_ my alias for newgrounds is Darth_Bambi _praiz_
[FLASH]http://i6.photobucket.com/albums/y208/DarthBambi/newsiggy.swf width=450 height=150[/FLASH]
my voice settings

RomanClock

try putting it in a movie clip, I think that works, Ive had the same problem before, flash is just screwed up that way for some reason.
lemayo lol :soups: