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!

Author Search Results: 'CrustySheet'

We found 532 matches.


<< < > >>

Viewing 151-180 of 532 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91318

151.

None

Topic: how to make a button

Posted: 11/27/08 09:30 PM

Forum: Flash

At 11/27/08 09:27 PM, NOSstudios wrote: Im a total noob at active script will someone atleastgive me the code for a button?

1.) its ACTION script
2.) what do you want the button to do?
3.) have you looked at the built in tutorials in flash on buttons?


152.

None

Topic: score values that let you move on

Posted: 11/27/08 09:04 PM

Forum: Flash

At 11/27/08 06:07 PM, Tome89 wrote: if (score>=500) {
play();
} else {
gotoAndPlay (1);
}

Use >= for any score greater than or equal to 500 and == for exactly 500.

just incase you didnt know(cos i didnt know when in started)
where he has stated to use == instead of = .. the reason is:
= is an assignment operator it asigns a value to something
== is a comparison operator it checks to see if it is equel

im not sure if it has it in AS but some languages also have
=== must be exactly the same so with 1== "1" its the same where as 1 === "1" it isnt the same because ones an integer and ones a string

:)


153.

None

Topic: AS2 timers

Posted: 11/27/08 08:59 PM

Forum: Flash

could you not also do

setInterval(timer(){
do stuff
},1000);

or whatever the syntax is


154.

None

Topic: Make sound in loop play once? Help!

Posted: 11/27/08 08:50 PM

Forum: Flash

also if you dont get that working on the last frame put on

stopAllSounds();

this will stop all sounds on the last frame and them when it goes back to the first it will start it again so you dont get the song over itself if it hasnt finished

but stream is the way to go


155.

None

Topic: Site Help

Posted: 11/27/08 08:48 PM

Forum: Flash

hey man have a geezer at this

Click on me i'm cool


156.

None

Topic: Minigame collab

Posted: 11/27/08 08:16 PM

Forum: Flash

At 11/27/08 07:46 PM, Zuggz wrote:
At 11/27/08 07:40 PM, CrustySheet wrote: HEHE nah it's all good now :)
wut an waste of tim!

Enjoy :)

hay i are at werk adn knot realee dooing eneefing ;)


157.

None

Topic: Minigame collab

Posted: 11/27/08 07:40 PM

Forum: Flash

At 11/27/08 07:18 PM, zooominsh wrote: Hah, im just really fast writer and many times i had wrote AC not AS sory !

hehe
*haha
*i'm
* a really fast
* typist
*written
*sorry

HEHE nah it's all good now :)


158.

None

Topic: Okay, so...

Posted: 11/27/08 07:05 PM

Forum: Flash

Thats quite a situation you have there , however im guessing there is a hidden question in there??

so www.adobe.com go get the cs4 trial its good for 30 days
after that if your a student you can buy it
or try ebay get a cheap version


159.

None

Topic: Minigame collab

Posted: 11/27/08 05:58 PM

Forum: Flash

At 11/27/08 04:07 PM, zooominsh wrote: Ohh i understand, this game yes it is Awesome, i want to learn so much Ac as he.
Love to play games like this one.
I like the bubles from player behind.

AS!!!!!!!!!!! AS!!!!!!!!!!!! AS!!!!!! ACTION! SCRIPT!!

Its not Action cript start typing it correctly it's really annoying me


160.

None

Topic: just a little help with jumping

Posted: 11/27/08 01:45 AM

Forum: Flash

make a tiny sqare about 1cm by 1cm call it feet put it the players feet and test that


161.

None

Topic: Minigame collab

Posted: 11/27/08 01:36 AM

Forum: Flash

At 11/26/08 07:51 AM, zooominsh wrote:
this is my latest update and what i have been doing forthe past 3 hours!
http://spamtheweb.com/ul/upload/3708/714 75_rock_guitar.php
there are already bugs!
if you hold in the left and up button two will highlight but for some odd reason the 2nd one does not do that?
Nice start for a game, but maybe a litle bit faster, but it looks good and your AC skills are good too, im not too inteligent to make game like yours.

I know its nothnig but please refer to it as AS skills not AC
i keep thinking Air Conditioning skils


162.

None

Topic: In need of A writer!!!

Posted: 11/26/08 06:39 PM

Forum: Flash

well if you interested i have a game i was working on and also have a few other ideas but i really dont like animating so if your interested in making games :)

let me know

heres a demo of what i started once then stopped cos of no interest in animation :)

www.toonstomp.com/steve/p&cleanup.html


163.

None

Topic: Sprites

Posted: 11/26/08 01:28 AM

Forum: Flash

At 11/26/08 12:52 AM, crapatflash wrote: Of course. Search on Google "auto-animator", all the best NG animators use it. Just set the parameters and click OK and it animates an entire movie for you.

But seriously, if you don't like all the hard work of sprite animating, just hand draw your stuff.

i tried it but it kept crashing my computer im just waiting for the new 2.6 release


164.

None

Topic: The weirdest AS problem

Posted: 11/25/08 09:51 PM

Forum: Flash

try removing the clip and recreating it again on the second frame


165.

None

Topic: The weirdest AS problem

Posted: 11/25/08 09:38 PM

Forum: Flash

wierd

is there actionscript on the second frame?
or is it only on the first frame in your fla?


166.

None

Topic: Minigame collab

Posted: 11/25/08 09:31 PM

Forum: Flash

he means ACtionscript


167.

None

Topic: Attach movie help.

Posted: 11/25/08 09:19 PM

Forum: Flash

maybe something like this

attachMovie("wall","topwall"+i,_root.getNextHighestDepth(), {_x:i*60, _y:_root.centre.getBounds(_root).yMin});
topWall = _root["topwall"+i]
}

168.

None

Topic: Mouseover Goto?

Posted: 11/25/08 09:14 PM

Forum: Flash

At 11/25/08 09:02 PM, TheCupcakeArmy wrote: I have a movieclip, and when the mouse goes over it, I want it to go to the next frame. Can somebody help me with the actionscript?

hmm.. on the frame on the maintimeline place this

yourMovieClipInstanceNameHere.onRollOver = function(){
 this.gotoAndPlay(2);
}

it could be Rollover or RollOver i cant remember

and to be clear put your movieclipinstance name where it says to


169.

None

Topic: looking for artist/animator

Posted: 11/25/08 09:11 PM

Forum: Flash

At 11/25/08 02:22 PM, ThePieDude wrote: I'll see if I can do some stuff for you, I've got a tablet and I wanted to collab with someone anyways! Also I was wondering if we could like share codes and stuff as I want to make a game aswell!

Plz Reply,
~ThePieDude

Cool sounds good due

At 11/25/08 02:16 PM, Rabjab wrote:
At 11/25/08 02:01 PM, muffinman9 wrote: Post some of your coding skills to show us how good you are. That way, you'll get more people =)
Im not looking for work in art, I am just saying I'm pretty good in art and if you have no other people that want to do it, I will.

for starters mate that was not ME who wrote that.. and that was also directed at me
i had a look at your profile and it seems you only do stick or madness?
if you got something else sure send it through


170.

None

Topic: Why won't this work?

Posted: 11/25/08 09:08 PM

Forum: Flash

var touchingGround:Boolean = false;
if(touchingground) {
jumped = false;
}
} else {
if(Key.isDown(Key.UP)) {
jumped = true;
falling = jumpHeight;
this.gotoAndStop(3);
}
}

look at your var its declared as touchingGround
your testing touchingground

notice no capital G Actionscript is Case sensetive man

so seing as touchingground doesnt exist it can never be true


171.

None

Topic: Halp!

Posted: 11/25/08 09:05 PM

Forum: Flash

onClipEvent (enterFrame) {
if (this.hitTest(_root.bullet)) {
_root.gotoAndStop(2)
}
}

172.

None

Topic: looking for artist/animator

Posted: 11/25/08 10:01 AM

Forum: Flash

so im just wondering if there is an artist / animator out there that would be interesting in teaming up to make games, maybe we could get togeather get a good game idea work on it and create it

i've got a few ideas but i do need someone to do art for them :)

if your interested let me know.. im heading to bed now as its 1am here and i have work at 7am

but seeing as i am sooooo busy at work i will be on NG's all day :)

just a thought


173.

None

Topic: Monkey Island sprites.

Posted: 11/25/08 09:42 AM

Forum: Flash

At 11/25/08 09:31 AM, Muja wrote: Hello there!
I'm Muja, and I'm looking for a LOT of Monkey Island Sprites (for the first and second game only), because I came up with the idea of a point-and-click game of Monkey Island with Flash. I feel ready to try it out (if the results will be ugly, I'll just stop it :-P).

So, anyone knows where I can find these sprites? Pretty please? I'll give a three-headed monkey as a gift to whoever does!

how long have you been doing actionscript?
cos im already making a point and click game and if you dont know what your doing then i guarantee you will quit


174.

None

Topic: Minigame collab

Posted: 11/25/08 04:00 AM

Forum: Flash

lol how good of an artist are oyu?


175.

None

Topic: Minigame collab

Posted: 11/25/08 03:56 AM

Forum: Flash

all sent :)


176.

None

Topic: Noob AS help

Posted: 11/25/08 03:34 AM

Forum: Flash

stop the move speed


177.

Elated

Topic: Noob AS help

Posted: 11/25/08 01:46 AM

Forum: Flash

Not at problem at all there matey!


178.

None

Topic: Input

Posted: 11/25/08 01:31 AM

Forum: Flash

At 11/25/08 01:28 AM, NightBreaker wrote: Good effort people.
thanks a bunch.

No Problem, Anytime :)


179.

None

Topic: Noob AS help

Posted: 11/25/08 01:05 AM

Forum: Flash

Or in AS 2 put this on the button

on(press) {_root.ground_mc.play();}

I think those should work, but I might be missing somthing.

hmm i was told that putting code on the MC's is bad practice ??? no?


180.

None

Topic: Noob AS help

Posted: 11/25/08 12:45 AM

Forum: Flash

At 11/25/08 12:40 AM, studio-nightbird wrote: Okay this is super noob its not funny. okay lets go...I have a Movie clip called 'ground_mc'. and I have a button clip. right now inside the gound_mc clip it is stopped. What I want is when you press the button It will play the ground_mc clip. all this needs to be in the one frame

yea...Noob...I know. I'm more on the animating side of flash. This is my VERY first game. thanks ;)

lets see if i can get this right :)

on the frame of the main timeline put..

buttonName.onRelease = function(){
_root.ground_mc.gotoAndPlay(2);
}

All times are Eastern Standard Time (GMT -5) | Current Time: 03:21 PM

<< < > >>

Viewing 151-180 of 532 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91318