419 Forum Posts by "AntiAliasProductionz"
try
power = 4;
scale = _xscale;
player.onEnterFrame = function () {
if (Key.isDown(Key.LEFT)) {
_root.player._xscale = scale;
_root.player._x -= power;
_root.player.gotoAndStop(2);
} else if (Key.isDown(Key.RIGHT)) {
_root.player._xscale = -scale;
_root.player._x += power;
_root.player.gotoAndStop(2);
} else {
_root.player.gotoAndStop(1);
}
};
At 9/15/10 04:06 PM, Redshift wrote:At 9/15/10 03:47 PM, SammyJoes wrote:Uh, yeah, I already said that?You mean impossible to disable right click with just flash by itself.Yes - it's impossible to remove the entire right click menu in Flash alone.
It's better not to confuse the person. They, from what i can tell by the the OP, don't know too much about actionscript and java. Better to just say no, it can't be done, and give them an alternative in flash then to say yeah it can be done but in a different programming language.
At 9/15/10 09:19 PM, MasterMerol wrote:At 9/15/10 09:15 PM, Redshift wrote: If arrow keys OR wasd, then do stuff.Hehe, THANKS!
I know it's something like that. But exactly, how do I write the "or" in actionscript?
I know how to write "and" (&&), "not" (!), and a few more.
Or is (||). Although, you could add a listener and set up a customizable key set. But that might get too complicated.
At 9/15/10 07:11 PM, GreenAlienAnimations wrote: No, you don't need to put anything in the parenthesis, and yes, you do have to put that on each frame.
Or you could use
keyWatch = new Object();
Key.addListener(keyWatch);
keyWatch.onKeyDown = function()
{
if (Key.getCode() == Key.SPACE){
gotoAndPlay(nextFrame);
}
}
stop();
and that'd only have to go on the first frame.
At 9/15/10 09:36 PM, Sevkat wrote:At 9/15/10 09:34 PM, AntiAliasProductionz wrote:God dammit, if you weren't new here you'd know what I'm talking about.At 9/15/10 09:33 PM, Sevkat wrote: I've been searching around, and I can't seem to find the ol' school Newgrounds Pre-loaders.http://www.newgrounds.com/downloads/prel oaders/
Any help would be great.
The first one should suit your requirements.
If you mean the preloader from pico's school, I doubt it's around anymore. The first one on that list isn't much different at all. Old one used to be here.
Perhaps find a cached image on google from before the redesign?
At 9/14/10 09:07 PM, McZero wrote: My old bamboo isn't quite doing it for me anymore...
Is the Cintiq12WX really worth $1,000?
Or should I just get the Intuos X?
Or maybe another brand of tablets all together?
Another question: Do I really have to upgrade from Flash 8? I want to be a cool kid and all, and bone animation sounds cool and all, but I don't like the new Flash programs.
Question 2: Bone animation takes a while to learn how to do well. The only reason i can see for using Flash Cs5 is for AS3 or easy collaboration. If you can do what you want to do on flash 8, don't bother.
At 9/15/10 09:33 PM, Sevkat wrote: I've been searching around, and I can't seem to find the ol' school Newgrounds Pre-loaders.
Any help would be great.
http://www.newgrounds.com/downloads/prel oaders/
The first one should suit your requirements.
At 9/15/10 07:05 PM, Pjorg wrote: Is there any way I can make a text based game without any programming knowledge? Is there some kind of copy-and-pasted AS code where I just type in a little cause and effect thing? E.G. "If player types in A or B he gets C." If not, would anyone here be willing to teach me how to do this? I work in AS2 or AS3. Sorry if this is a retarded question. I am not a programmer.
I made an entire text based engine type thing. I could send you the code for a few versions ago if you want.
I accidentally defunct game link
** I WILL SUPPLY YOU WITH A FLASH SERIAL IF NEEDED**
****ARTIST WILL ALSO BE DEEPLY INVOLVED IN WHAT GOES INTO THE GAME ****
I am in desperate need of an artist for 2 games I'm developing. The artist would have to be able to animate and work in the Flash environment.
Untitled Game #1 Adventure Text
This game is a text based video game, which means all actions are done via the command line(ish thing). The main idea of the game is to pack in as much random and funny stuff until the game is a laugh riot.
Artist will have to:
<span> </span>-Draw in an 8-bit style
<span> </span>-Draw backgrounds
<span> </span>-Draw obscure objects
<span> </span>-Design Achievement Unlocked screen
Tools required:
<span> </span>-MS paint(*1)
________________________________________
________________________________________
________________________________________
______
Untitled Game #2 Sidescrolling Shoot 'em up
The game is basically just a sidescrolling violent bloodbath of a game. Like Thing-Thing.
Artist will have to:
<span> </span>-Animate walk cycles
<span> </span>-Design GUIs and Menus
<span> </span>-Draw weapons
<span> </span>-Draw outfits for characters
<span> </span>-Design Achievement Unlocked screen
Tools required:
<span> </span>-Flash CS4 (5 is ok too)
Both games will have in game achievements and unlocks, and both will use the newgrounds API. The revenue system of the API could mean profit depending on how successful of a game it is. ALL PROFITS WILL BE SPLIT 50/50.
Progress is moving quite quickly on both engines due to me switching from AS2 to AS3, which is much more capable of a language. As of now, I only have text game examples.
Map system - http://www.newgrounds.com/dump/item/f129 648cffaf42d37a1b6c3449a45c4b
Graphical integrated map system - http://www.newgrounds.com/dump/item/c713 2d2b8696b0beb31d89694d2ffbf5
(^^ that means i drew some crappy drawings. your art would go there. along with actual level names ^^)
Now-defunct adventure game complete with monetary and inventory systems - http://alexhosting2.webs.com/superadvent ureliam69.swf http://alexhosting2.webs.com/superadvent ureliam69.swfhttp://alexhosting2.webs.co m/superadventureliam69.swf
Still deving the sidescroller engine. so far so good, but no graphical representation, all theoretical code.
By the way, the sidescroller is a future project. I'd just like to know if someone would like to be mah partener.
Not sure what you want, but I can tell you it's impossible to disable right click. You can, however, add a listener to the left click and tell it to gotoAndStop to a different frame, perhaps one labelled CHEATER.
At 9/14/10 05:11 AM, Redshift wrote: given the (x,y) position, and given the width (6 in this case) then the number you are looking for would be:
y*width + x + 1
see, this guy gets me! Thanks bro.
I'm creating a text game right now for fun. The entire backbone of the game is working, but i can't seem to be able to incorporate the backgrounds properly. Basically, I want the level_mc to correspond with the array's numerical position.
worldMap[0] = [0, 0, 1, 1, 1, 0]; // 1,2,3,4,5,6
worldMap[1] = [0, 0, 1, 0, 1, 0]; // 7,8,9,10,11,12
worldMap[2] = [1, 1, 1, 0, 1, 0]; // 13,14,15,16,17
worldMap[3] = [0, 0, 1, 0, 1, 0]; //etc
worldMap[4] = [0, 1, 1, 1, 1, 0]; // I want to get it to gotoAndStop to the frame corresponding with the numbers above :/
I've been screwing around with it for a while, but to no avail. I've tried many, many things.
To be more informative, the level system is based on 1's and 0's, 1 meaning able to go on and 0 meaning unable to go on. The game tracks this by using these variables:
roomValue1 = 2; //3
roomValue2 = 0; //1
which represent the starting area, and get subtracted and added to everywhichway the player desires. Hopefully this is kind of clear, it's really confusing and there's probably a really simple way to do everything. I overcomplicate things.
I like the smell of my own sweaty balls.
Well shit. This sucks major cocks.
Does newgrounds shed a tear?
At 9/10/10 12:49 AM, MonkeyV wrote: Hi I'm not a member here, but can somebody please tell me that this is some kind of sick joke?
http://www.ontheredcarpet.com/2010/09/dr eam-theater-loses-mike-portnoy-bands-say s-it-will-not-split.html
Sorry bro. It's no joke.
At 9/9/10 07:10 PM, Neoncouch wrote:At 9/9/10 07:09 PM, ltBurnsWhenIPee wrote: I snitch, And it makes me feel good.This is the only '10er I like.
You're a minor '9er.
At 9/10/10 12:58 AM, Esshole wrote:At 9/10/10 12:56 AM, AntiAliasProductionz wrote:Back in my high school ... anything lower than a 70 was failing.At 9/10/10 12:54 AM, Esshole wrote: You realize that whether or not you fake a report card ... you're still pretty much fulped when you fail a class, right?I didn't fail, my parents are over-expecting nazis who can't take a 67%. I bumped it up 4% to make them not pissed.
Oh, anything under 50% is failing in my school. My parents have the same mentality though.
At 9/10/10 12:56 AM, Scorpion325 wrote: How.... do you fail English? It's your first language.
XD. I call it "LEARNING HOW TO WRITE AN ESSAY FOR COLLEGE OR UNIVERSITY", not English.
At 9/10/10 12:54 AM, Esshole wrote: You realize that whether or not you fake a report card ... you're still pretty much fulped when you fail a class, right?
I didn't fail, my parents are over-expecting nazis who can't take a 67%. I bumped it up 4% to make them not pissed.
At 9/10/10 12:52 AM, AntarcticBarbecue wrote: 71% The fuck thats equally worse
The 7 makes it nicer to them apparently XD
I got like a 67% on my english class because i stopped trying halfway through the semester. My parents will flip shit even though I have a 76% average. Is it wrong that i faked a report card to make it 71% so my parents wouldn't flip? I don't think it was to tell the truth, it just makes them happy.
:At 8/12/10 02:46 AM, MercatorMap wrote:
Yeah, my system, is greater than your shit sense of morality and lack thereof.
I get to go home and night and sleep soundly. What would you get with a life on the run? Ass rape by a 300 pound french man named tiny.
Lololololol this guy is mad. Typical army faggot. Morality is something that humans conceived, not an actual set of rules.
At 8/12/10 02:01 AM, MercatorMap wrote:At 8/12/10 01:40 AM, Aigis wrote:Find out how much a doctor gets paid by the hour, how much the equipment for the procedure costs, how much the facility it is conducted in costs, how much the sanitizing of the equipment costs, how much the administration for it costs, how much the sanitizing of the facility costs, how much the insurance for the doctor costs, and then get back to me.At 8/12/10 01:26 AM, MercatorMap wrote: WHOOOOOOOOOOOOO FOR BEING A LEECHING DOUCHE WHO DOESN'T CONTRIBUTE ENOUGH TO SOCIETY TO COVER THAT PROCEDURE!Man, how much do you think an abortion costs?
On average, 800 dollars per abortion.
Which OP has not fed back into the system before the procedure has been done.
Great job on stealing taxes from hard working, responsible people who actually man up for shit.
Hey guess what? I looked at your page and noticed that you are either in the army or planning on joining it. Great to know that you love your system so much. Seriously, I'd get dozens of abortions if i was a girl, just to take advantage of the system we have.
Seriously, fuck the system. Abortions for all.
At 8/12/10 01:59 AM, Snake-Arsenic wrote:At 8/12/10 01:53 AM, AntiAliasProductionz wrote:And not buying a test would lower the chance to have an abortion, at least safely and she does want an abortion, right? Besides, a pregnancy test is pretty cheap compared to the first 20 odd years of a persons life.At 8/12/10 01:51 AM, ZeldaFreak701 wrote: Why are you asking us and not buying a damn pregnancy test?Because she was still on the pill and buying a test now would be a waste. According to her.
Seriously, if she had the baby, my mind would go to the dark place. I'd probably wake up in prison, both her and the baby 6 feet under. Then I'd kill myself. Or something.
At 8/12/10 01:51 AM, ZeldaFreak701 wrote: Why are you asking us and not buying a damn pregnancy test?
Because she was still on the pill and buying a test now would be a waste. According to her.
I love all the people acting like the US wasn't taken from the natives. The immigrants that came to early north america were scheming douchebags that stole from and kill the native americans. Christ.
I think that if given immortality and nothing to do, years would go by with you just sitting there staring at the sky. Ever been in a car for 3 days? The last day goes by so quickly.
At 8/12/10 01:23 AM, MercatorMap wrote: YAY FOR HAVING ABORTIONS WITHOUT YOUR PARENT'S PERMISSION ON THEIR GODDAMN INSURANCE AND STICKING THEM WITH THE BILL BECAUSE YOU'RE A FUCKING DOUCHE!
WHOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOO!
YAY FOR FREE CANADIAN HEALTH CARE WOOOOOOOOOOOOOO!
At 8/12/10 01:22 AM, ryanson209 wrote: InMONTHS? Has her belly gotten slightly bigger? Been sick a little more than usual? Odd food cravings?
She's preggo.
Her boobs got bigger, but she's on the yasmin pill that lets you not go on your period for long periods(lol) of time. Seriously though, no condom rips or leaks, the pill the whole time. Just a bit worried.
At 8/12/10 01:21 AM, YoinK wrote:At 8/12/10 01:19 AM, AntiAliasProductionz wrote: My girlfriend and i have sex steadily. She's been on the pill that lets you plan your period and whatnot and she hasn't had it in months. We've been safe every time and stuff, condoms and the like. Could she be pregnant?If she is pregnant and you don't have a job... you could be royally fucked...
She is totally up for an abortion, we discussed it and all. I'm 99% sure she's not, but theres always that 1% chance.

