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: 'Cojones893'

We found 2,596 matches.


<< < > >>

Viewing 1-30 of 2,596 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94887

1.

None

Topic: I bought a droid!

Posted: 12/01/09 01:19 PM

Forum: General

At 12/1/09 01:05 PM, TylerDurden121 wrote: But can you fuck it?

No, but a girl would enjoy the vibrator app on it.


2.

None

Topic: I bought a droid!

Posted: 12/01/09 12:06 PM

Forum: General

At 12/1/09 11:45 AM, Synnxile wrote: does it record video? if yeah then how much does the dfroid cost?

It records videos. $200 at Best Buy. $300 at Verizon Wireless (they'll send you a debit card in the mail with $100 on it but that takes 4 weeks).

I'll take a photo when I'm out on my lunch break and upload it for all to see.


3.

None

Topic: I bought a droid!

Posted: 12/01/09 11:30 AM

Forum: General

At 12/1/09 11:25 AM, ChaDMcBaDD wrote: no because its like $50 a month for all those features

my plan is 20 less a month than an identical plan for my blackberry on T-Mobile. I spend 80 a month to get Unlimited texts, couple thousand minutes, and data. Also I can tether my phone to my laptop to use the internet wherever I want.


4.

Happy

Topic: I bought a droid!

Posted: 12/01/09 11:21 AM

Forum: General

This phone is defiantly an iPhone Killer. 5 Megapixel Camera with Flash, turn by turn GPS (free), physical keyboard, App store with great apps (Snes, Nes, Genesis, gameboy) emulators. Open source development. The ability to put and remove whatever I want on it. I love it. Anyone else get one?


5.

None

Topic: AS3? Finding objects by distance

Posted: 11/25/09 11:55 AM

Forum: Flash

The Point.distance function is pretty slow. Even a poorly written distance function will run 4x faster.


6.

None

Topic: addCallBack error

Posted: 11/20/09 02:14 PM

Forum: Flash

Hey I never used ExternalInterface.addCallBack before.

ExternalInterface.addCallback("changeImageColor", changeImageColor);

I have that setup in the flash file

and

function getFlashMovie(movieName) {
    var isIE = navigator.appName.indexOf("Microsoft") != -1;
    return (isIE) ? window[movieName] : document[movieName];
}

function changeImageClr(color) { 
     getFlashMovie("imagePreview").changeImageColor("0xFF"+color);
}

In the JS file.

It works perfectly fine in Safari and Chrome but fails in IE and FireFox. In firebug is giving me a JS error of

getFlashMovie("imagePreview").changeImag eColor is not a function.


7.

None

Topic: You can embed Flash in Wave

Posted: 11/04/09 12:47 PM

Forum: Flash

At 11/4/09 12:01 PM, theactionscripter wrote: Huh, this is pretty interesting.

I'll upload my next game there.

Do you know what Wave is? It's like saying "I'll upload my next game into an email or instant messenger".

@OP: I think it's a good idea if a bunch of people are working on a project.


8.

None

Topic: platform studios3.0

Posted: 11/04/09 11:49 AM

Forum: Flash

This site only hosts flash games. Get Adobe Flash.


9.

None

Topic: Career in flash ?

Posted: 11/03/09 10:24 AM

Forum: Flash

At 11/3/09 07:50 AM, Rustygames wrote: I dropped school when I was 17 because I wasn't learning anything, and I got a job as a flash developer. Almost 3 years later I'm still working as a flash developer and making a good living from it.

I did the same thing. I left school at 16. Got my GED and entered college at 17. I worked for 1 year as a Research Assistant before landing a flash developer job. I now have a stable job and make a good income working as the lead flash developer at my company.


10.

None

Topic: Career in flash ?

Posted: 11/02/09 10:26 AM

Forum: Flash

My last job and my current job are entirely using flash. At my last company I was on the R&D team as their flash developer. At my new company I work as the lead flash developer.


11.

None

Topic: Matrix Rotation Issue

Posted: 10/29/09 10:02 AM

Forum: Flash

Why not use the actual method

rotateAroundExternalPoint

It does exactly what you want. It might run faster too.


12.

None

Topic: as3 filesystem

Posted: 10/28/09 04:58 PM

Forum: Flash

What are you trying to do? There may be a better way.


13.

None

Topic: if number = 1 2 or 3

Posted: 10/23/09 03:18 PM

Forum: Flash

if(a == 5 && b == 10 && c == 12){}

14.

None

Topic: Player doesnt respond to gravity

Posted: 10/23/09 02:05 PM

Forum: Flash

You don't check to see if he is ever not touching the floor, which you will need to do to trigger him falling.


15.

None

Topic: AS3 functions..

Posted: 10/23/09 01:25 PM

Forum: Flash

In your code you aren't even using the event parameters.

so you can change your function to this:

function clicked(eventObject:MouseEvent=null) {
if(page !== "contact"){
		TweenLite.to(stageMask, 0.25, {alpha:1, onComplete: loadmovie});
		setChildIndex(stageMask,numChildren-1);
		page = "contact";
	}
}

That'll allow you to not have to use an event listener to call the function.

clicked();

would call it in this case. I'm assuming page exists somewhere else in the code.


16.

None

Topic: EventListeners

Posted: 10/23/09 09:29 AM

Forum: Flash

How constantly?


17.

None

Topic: An AS3 function won't work.

Posted: 10/21/09 10:26 AM

Forum: Flash

For event parameters, I usually do not specify a data type, but it is a good practice to do.

Always specify a date type especially when you know it. It's not like that type is going to change. Bad practice not to. It can severely hurt processing time.

Next: Why switch? Why not an if statement? If it was an if statement, just do this:

Because switch's only execute there one case which is what you want in keyboard events.

if(e.keyCode == Keyboard.LEFT) trace("LEFT");
if(e.keyCode == Keyboard.RIGHT) trace("RIGHT");
//The braces aren't even needed

If you still wish to use a case and switch however, do not include break; for the final case.

You should always have a break in each case. Unless you purposefully want one case to do the next case.


I think that's all. I am a new AS3 programmer.

Keep learning


18.

None

Topic: Weird, not understandable error!

Posted: 10/20/09 02:44 PM

Forum: Flash

At 10/20/09 12:00 PM, henke37 wrote: Start the debugger and find the error yourself. It's probably something silly. I recommend beginning by setting a breakpoint at the comparison.

Sigh, I just guessed the problem. What my guess is? You aren't even executing the condition!

That's my guess too. You need that if statement to exist somewhere in a function.


19.

None

Topic: How do you make a code box?

Posted: 10/13/09 03:20 PM

Forum: Flash

Where you type your replies or new posts it says it to the left. "HTML you may use"


20.

None

Topic: Flash Cs5 Beta Coming Soon

Posted: 10/06/09 09:37 AM

Forum: Flash

At 10/6/09 05:31 AM, 4urentertainment wrote:
At 10/6/09 03:22 AM, henke37 wrote: The tlf is mainly for designers, the xml file format is neat for collaborations and the code snippets panel will help designers make their own menus.
So it's true that you can develop for the iPhone? But I thought the iPhone didn't have flash player or didn't support it.

It technically doesn't. They still won't put flash in the browser for fear of ruining the app store, but by putting it in the app store only it allows Apple to still make money.


21.

None

Topic: $$ Need Programmer - Zombie Game

Posted: 10/05/09 11:05 AM

Forum: Flash

If you are not a great programmer the 'superior programmer' might not even be able to work with you. What if you ask him "Give me dynamic lighting" like in that other solution and he says "Well you programmed all of your objects wrong...then what? You can't just say "He'll help me with advanced problems" the best way to do some advanced solutions is to do it right in the beginning.


22.

None

Topic: Is Autism failed evolution?

Posted: 10/01/09 03:34 PM

Forum: General

At 10/1/09 03:27 PM, Sammeh wrote: If there is any more evolutional progress to be made, it will be purely aesthetical.

Think about it, in order for evolution to progress a mutation must start.

Would you fuck a mutant and have mutant kids with them?

Wow. You probably should not breed. Stupidity is worse than the worst mutation.


23.

None

Topic: Is Autism failed evolution?

Posted: 10/01/09 03:27 PM

Forum: General

At 10/1/09 03:20 PM, UberCream wrote: Isn't autism caused by a lack of air during childbirth, and therefore, not based on genetics or evolution at all?

Show proof, because I can find no science articles stating that point.


24.

None

Topic: Is Autism failed evolution?

Posted: 10/01/09 03:03 PM

Forum: General

At 10/1/09 02:57 PM, Sheizenhammer wrote: Asperger's is a different story, with most sufferers being normal enough to have a chance (however small) of breeding, but again, it's probably more of a hinderence than a help (and only a tiny minority of them have these so-called mental superpowers, making it nothing more than an illness most of the time).

"People with Asperger syndrome are often of average or above average intelligence and lead highly productive lives" - linky

I'm just saying I've met a pretty good amount of people with Asperger's and people who seem to have it. They have their strange habits, but they seem to be quite intelligent. The ones I did get to meet were going to school for disciplines like physics, programming, mathematics.

I guess by opening with my Autism theory it lead people off topic. I'm saying that Autism won't work as far as evolution goes, but it seems that Aspergers is a step in the right direction with evolution.


25.

None

Topic: Is Autism failed evolution?

Posted: 10/01/09 02:54 PM

Forum: General

At 10/1/09 02:50 PM, Presidentjlh wrote: While I see your point, I don't think autism and Asperger's are genetic mutations that show where humanity is headed. They are more hinderances than they are benefits. I think that we should look at them not as mutations or examples of evolution, but as disorders that require treatment and care.

What is the root cause of a disorder? I think everything can be broken down to your genes. We just have linked everything together yet. Aspergers is called "high functioning autism". It doesn't hurt their lives they just seem 'odd'.


26.

None

Topic: Is Autism failed evolution?

Posted: 10/01/09 02:47 PM

Forum: General

I've had this thought for a very long time. It appears that people who are inflicted/suffer/have autism are incredibly gifted in some fields. Now evolution doesn't always take the right steps. Sometimes a creature is born with a mutation that inhibits him/her from living properly and they die off, but if the mutation is good then it will grow and thrive spreading the gene.

Many sci-fi authors have written that the next step major step in human evolution will not be of the physical kind, growing wings/third eye/night vision, but of the brain (which I guess is still physical). Sure while children with autism seem to have problems with lack of communicating and other things, most excel at some field. Their brains work better than ours in math and pattern recognition.

If Autism is a failed evolution, is Asperger's Syndrome a thriving evolution?

It's believed that some of the greatest minds of all time probably suffered from Asperger's syndrome. Telsa, Einstein, and Newton to name a few. Thoughts?


27.

None

Topic: keyboarddown refusing certain combo

Posted: 09/15/09 04:17 PM

Forum: Flash

At 9/15/09 03:54 PM, PostalPelican wrote:
At 9/15/09 02:57 PM, ImpotentBoy2 wrote:
At 9/15/09 01:36 PM, PostalPelican wrote:
up = attack up
up + left + right = attack up <---------- refuses to work
down = attack down
down + right + left = attack down

Why have the same attack twice?


28.

None

Topic: As2 Help!!!

Posted: 09/03/09 12:41 PM

Forum: Flash

!>= is not a logical try a different one


29.

None

Topic: AS3 MCs in array manipulated prob

Posted: 09/03/09 12:32 PM

Forum: Flash

You are not creating a new obj in the for loop.

mc = new Mc();

30.

None

Topic: V-Cam Help

Posted: 09/03/09 11:11 AM

Forum: Flash

At 9/3/09 10:58 AM, Greg-SKA wrote: My V Cam Wont Work Can soembody give me Ste by Step Instructions on how to use it along with the right Scripts.

this is the as2 one
http://www.oreillynet.com/pub/a/javascri pt/2004/08/17/flashhacks.html?page=2

this is the as3 one
http://bryanheisey.com/blog/?p=1

Do some reading.


All times are Eastern Standard Time (GMT -5) | Current Time: 08:19 AM

<< < > >>

Viewing 1-30 of 2,596 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94887