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 301-330 of 532 matches. 148 | 9 | 10 | 11 | 12 | 13 | 141618

301.

None

Topic: Help! New to Flash Animation.

Posted: 11/17/08 01:53 AM

Forum: Flash

in case you don't know

its Adobe cs4 from www.adobe.com
have a look around there alot of cool stuff :)


302.

None

Topic: FBS movie clip.

Posted: 11/17/08 01:44 AM

Forum: Flash

if its 24fps and you want it quicker animate it at 12fps or 48 for vise versa


303.

None

Topic: I think I discovered an error...

Posted: 11/17/08 01:42 AM

Forum: General

i think he means rating is for everone but it contains exsessive nudity and stuff


304.

None

Topic: Your UserName

Posted: 11/17/08 01:34 AM

Forum: General

"Lost Prophets" Cd and "Matchbook Romance - Voices" Cd were overlapping each other all i could see was Lost Voices


305.

None

Topic: My roommate is an idiot

Posted: 11/17/08 01:29 AM

Forum: General

1.Printscreen his desktop
2. save the image
3.right click desktop and untick show icons
4. autohide the taskbar and put it at top of screen
5. set the image as his desktop background

it will look exactly the same only the icons and taskbar are only an image so he'll spend forever trying to clickthem and think hes laptop has broken


306.

None

Topic: How rich are you?

Posted: 11/17/08 01:25 AM

Forum: General

You're still in School and you're 22? :|, I finished School at 15, and I just finished College. Christ, you waste a lot of time over there, and you're still all idiots.

uhh yeah hes at uni ...where's the idiots now


307.

None

Topic: FBS movie clip.

Posted: 11/17/08 01:21 AM

Forum: Flash

i havnt seen anything myself unless you animate at half the frame rate


308.

None

Topic: Warhammer online

Posted: 11/17/08 12:02 AM

Forum: General

has anyone played warhammer online yet? and if so how similar is it to wow? better or oworse?


309.

None

Topic: sprites

Posted: 11/16/08 11:34 PM

Forum: Flash


310.

None

Topic: aim at the mouse?

Posted: 11/16/08 10:53 PM

Forum: Flash

you've actually gotta type something in the search field not just look at the page :P

http://www.google.com.au/search?hl=en&q=
actionscript+aim+at+mouse&meta=


311.

None

Topic: flashVariables

Posted: 11/16/08 10:06 PM

Forum: Flash

At 11/16/08 08:58 PM, 0nKILL wrote: I got a global var and my mc is not ''reading'' it. (+i get no ''error'' warning :/ .)

on the ''main'' frame
_global.swordcol = 1;

on the mc (inside another mc...)
on(enterFrame){if(swordcol = 2) {this.gotoAndStop(2);}else{this.gotoAndS top(1);}}

in a button.
on(release){swordcol = 2;}

Its kinda self explanatory.
Help is appreciated.

put this on the frame on the main timeline

swordcol =1;
onEnterFrame = function(){
  if(swordcol ==2) {
    _root.mc.mc.gotoAndStop(2);
  }else{
     _root.mc.mc.gotoAndStop(1);
   } 
}

then your button

on(release){
_root.swordcol=2;
}

}


312.

None

Topic: character and enemy script

Posted: 11/16/08 09:38 PM

Forum: Flash

At 11/16/08 09:37 PM, munn1 wrote: well i put the script on and it said no error, but when i tested it all it did was make the life bar go out side of its box, this is the script for the life bar

onClipEvent (load) {
_root.anthony_hp = 100;
}
onClipEvent (enterFrame) {
if (_root.anthony_hp>=0) {
_xscale = _root.anthony_hp;
}
}

uhh yeah you need to do some maths there mate


313.

None

Topic: flashVariables

Posted: 11/16/08 09:32 PM

Forum: Flash

man not sure i thoguht that would work

try _rooting them


314.

None

Topic: character and enemy script

Posted: 11/16/08 09:25 PM

Forum: Flash

At 11/16/08 09:10 PM, munn1 wrote: this is my current script for the character select, all the characters are inside one MC

onClipEvent (enterFrame) {
if (_root.character == 1) {
this.gotoAndStop(1);
} else if (_root.character == 2) {
this.gotoAndStop(2);
} else if (_root.character == 3) {
this.gotoAndStop(3);
}

}

well then add some more code to it

: onClipEvent (enterFrame) {
: if (_root.character == 1) {
_root.health = 100;
: this.gotoAndStop(1);
: } else if (_root.character == 2) {
: this.gotoAndStop(2);
_root.health = 100;
: } else if (_root.character == 3) {
: this.gotoAndStop(3);
_root.health = 150;
: }
: 
: }

315.

None

Topic: Adobe Flash Cs4 Review

Posted: 11/16/08 09:23 PM

Forum: Flash

good thing you didnt buy it then :)


316.

None

Topic: flashVariables

Posted: 11/16/08 09:21 PM

Forum: Flash

also do oyu have to refer to it as a global??

if(_global.swordcol


317.

None

Topic: that one game!

Posted: 11/16/08 09:09 PM

Forum: Flash

At 11/16/08 09:08 PM, leon08 wrote: hey whats that one game called? the one were you have to draw and the person guesses what it is? because i cant find it on here! also thx for all the codes on my last post! anyway! yea its really fun game and stuff and i just want to put it on my favorites!

pictionary???

www.isketch.net


318.

None

Topic: flashVariables

Posted: 11/16/08 09:07 PM

Forum: Flash

At 11/16/08 08:58 PM, 0nKILL wrote: I got a global var and my mc is not ''reading'' it. (+i get no ''error'' warning :/ .)

on the ''main'' frame
_global.swordcol = 1;

on the mc (inside another mc...)
on(enterFrame){if(swordcol = 2) {this.gotoAndStop(2);}else{this.gotoAndS top(1);}}

in a button.
on(release){swordcol = 2;}

Its kinda self explanatory.
Help is appreciated.

try this out
= is an assignment operator
== is the comparison operator

on(enterFrame){if(swordcol == 2) {this.gotoAndStop(2);}else{this.gotoAndStop(1);}}

319.

None

Topic: character and enemy script

Posted: 11/16/08 09:05 PM

Forum: Flash

for the player you just want an if statement

if(player1 or Player 2 is selected){
health = 100;
}else {
health = 200
}


320.

None

Topic: Cyborg Project and Drogo. need help

Posted: 11/16/08 08:48 PM

Forum: Flash

nope i havn't on this account at all but seriously don't post on a forum full of animators and tell them that the story is as hard work as animating cos they will fight it on here ... its just the way tit goes :(

you may find someone and one of your stories sounds kinda kewl so i hope ya do

but still i agree with gust, nothing against you


321.

None

Topic: Full screen???

Posted: 11/16/08 08:24 PM

Forum: Flash

yes it is


322.

None

Topic: Cyborg Project and Drogo. need help

Posted: 11/16/08 08:23 PM

Forum: Flash

lol im with you all the way Gust as if a script is as much work as animating..

look throught the forums and see how many people have ideas and see how many people actually volunteer to help


323.

None

Topic: 2d space game help

Posted: 11/16/08 07:24 PM

Forum: Flash

i could be wrong but i think also because its on a frame and your only calling _x its going to move everything on the stage

i could be wrong


324.

None

Topic: ideas?

Posted: 11/16/08 01:49 AM

Forum: Flash

step on a switch and rabid monkeys come out throwing poo at you and you have to outrun them cos if you get hit you'll smell like poo and noone will want to be around you


325.

None

Topic: games n, stuff

Posted: 11/15/08 07:34 PM

Forum: Flash

At 11/15/08 07:32 PM, Yiffy wrote: This should work.

on(load) {
create.game
}

Now you should have a game like super mario brothers but with much better graphics and gameplay.

i tried that once but it was too powerful and crashed my pc


326.

None

Topic: games n, stuff

Posted: 11/15/08 07:30 PM

Forum: Flash

if(Key.isDown(Key.SPACE){
Player.will.Jump;
}


327.

None

Topic: what should i do with this

Posted: 11/15/08 11:54 AM

Forum: Flash

now that you have a character work from this :)

http://www.idleworm.com/how/anm/02w/walk 1.shtml


328.

None

Topic: code help

Posted: 11/15/08 11:32 AM

Forum: Flash

At 11/15/08 11:31 AM, micky315 wrote: i have programed all codes by my self up to this piont i just dont know a thing about dublicating

then you obviously didnt read the tutorials in AS:main that everyone is linking you too it explains it in there


329.

None

Topic: code help

Posted: 11/15/08 11:29 AM

Forum: Flash

who cares if they suck move on to something simpler cos you obviously don't understand a thing about duplicating and i bet your just copy pasting the code from tutorials instead of actually reading and learning

do you even know what the i is for and what it's doing in your code?


330.

None

Topic: what should i do with this

Posted: 11/15/08 11:26 AM

Forum: Flash

make a giant mouse curse come and put him in the recycle bin


All times are Eastern Standard Time (GMT -5) | Current Time: 03:00 AM

<< < > >>

Viewing 301-330 of 532 matches. 148 | 9 | 10 | 11 | 12 | 13 | 141618