00:00
00:00
Newgrounds Background Image Theme

VolsungWarrior just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

The Flash 'Reg' Lounge

3,047,321 Views | 60,186 Replies
New Topic Respond to this Topic

Response to The Flash 'Reg' Lounge 2006-11-25 04:57:06


At 11/25/06 04:01 AM, CitricSquid wrote:
At 11/24/06 05:01 PM, Depredation wrote:
At 11/24/06 04:05 PM, fuzz wrote: Im in such a good mood. Nothing can spoil my day :)
Thought id share that :D
You have aids.

Did it work :P?
I was posting that exact same thing yesterday, but i didn't click post, as luis appeared to be in a 'NO SPAMZ OR DIEZ' mood.

Hey citric. What was that site you posted a while ago that you could connect to your PC remotely?
Im gonna try playing Halflife 2 in form time :O

Response to The Flash 'Reg' Lounge 2006-11-25 06:03:10


At 11/25/06 04:57 AM, fuzz wrote: Hey citric. What was that site you posted a while ago that you could connect to your PC remotely?
Im gonna try playing Halflife 2 in form time :O

I doubt that'll work, above all else the comp won't be good enough to play it (im guessing) as it's a school comp.

My backs hurting now, i've been sat on the edge of my bed playing Gears of war. Not sat on the edge because it's 'intense' or whatever, but because i've got loads of shit over my bed.
-----------

Since we're getting a little off, what's your lots favorite game on NG? My personal favorites are Slacker 2, and the Skullkid. Alien hominid i'd say too, although it's a little too popular now. Same could be said for Skullkid I guess.


WEBSITE

BLOG ~ Dont fuck around with my dog. All that I can see I steal. ~

NG FFR ~ Automatic for the people.

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 06:10:55


At 11/25/06 06:03 AM, Mogly wrote: i've got loads of shit over my bed.

I thought you would've grown out of that by now!

Response to The Flash 'Reg' Lounge 2006-11-25 08:03:39


At 11/25/06 12:05 AM, Blaze wrote: I hate to be a bother, and i hate to just come in asking for help :D But i doubt this warrants it's own thread, so please, anyone?

I usually just move my guy in whatever direction he moves in in the x-axis, and then I do shape-flag on all corners of the guy (sometimes more points, it depends), and moves him back one pixel at a time with a while loop until he doesn't touch. Then I do the same for the y-axis.


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 08:21:45


At 11/25/06 12:05 AM, Blaze wrote: I hate to be a bother, and i hate to just come in asking for help :D But i doubt this warrants it's own thread, so please, anyone?

Ironicly, you seem to be getting more results than stating a new thread.

I do it a couple of ways, the old way i went about it in heaven's chav (or whatever crap game it was), was to have the _x on hit go out faster than it came in. You could also have a variable then slowing it down a bit after it goes beyond max speed.

Another way i code movement is using Glaiel's real hittest system.
I'll show you my code (although still glitchy).
(not sure if this will make sense, as i've written it a long while ago and I've only cut out a section)
// GG Script
onClipEvent (load) {
r = _width/2;
seg = 20;
}
onClipEvent (enterFrame) {
var nmbr = 0;
xval = 0;
yval = 0;
for (i=1; i<seg; i++) {
var tx = _x+r*Math.sin(i*(360/seg)*(Math.PI/180));
var ty = _y-r*Math.cos(i*(360/seg)*(Math.PI/180));
if (_root.land.hitTest(tx, ty, true)) {
nmbr++;
xval += tx;
yval += ty;
}
}
// My Get direction
_root.number1 = Math.round(57.2957795*Math.atan2(vspd, hspd));
_root.arr2._rotation = -_root.number1+90;
// End get direction
if (nmbr>0) {
_root.arr._x = xval/nmbr;
_root.arr._y = yval/nmbr;
_root.normal = Math.atan2(_x-xval/nmbr, _y-yval/nmbr)/(Math.PI/180)*-1+180;
_root.arr._rotation = _root.normal;
_root.arr._visible = true;
// My Get reflection
reflection = 2*_root.normal-_root.arr2._rotation+180;
_root.arr3._rotation = reflection;
// End get reflection
// Bounce
_root.angle = reflection;
_root.anglerad = (3.14/180)*_root.angle;
if (xspd<bounce) {
if (_root.normal<90 or _root.normal>270) {
xspd = bounce;
}
}
newnumberagain = Math.cos(_root.angle);
vspd = Math.cos(_root.anglerad)*xspd;
hspd = Math.sin(_root.anglerad)*xspd;
} else {
_root.arr._visible = false;
}
}

Link
Hm, it's very very glitchy. But i find it much much more effective to do movement by degrees to get nice results.


SIG YOINK!

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 09:12:59


Boooooo! Sucks to be me, cant get my laptop back till monday. Really makes me realise how much my life revolves around it. I dont even own a TV and all my work is on my laptop. I'm in the library atm.


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 09:23:03


man this topic is getting huge XD

its ridiculous x_x

Response to The Flash 'Reg' Lounge 2006-11-25 12:48:56


hey thanks a lot guys ^_^ i'll try all your suggestions right now... thanks a lot.

Response to The Flash 'Reg' Lounge 2006-11-25 13:35:14


So I did a stupid thing with my money the other day.

I bought something in the Edge Magazine pictured underneath that copy of Flash... duh...
I'm also showing off that my stickers from Luis arrived thanks to me remembering what the Konami code was. Thanks Lu

The Flash 'Reg' Lounge


...

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 14:11:54


My computer does modern art.

Watch him at work here.

Response to The Flash 'Reg' Lounge 2006-11-25 14:15:35


i have a present for anyone running a flash site (meaning that they put swfs on their site for other people to view). just let me know if you want your present.


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 14:42:31


At 11/25/06 02:15 PM, authorblues wrote: i have a present for anyone running a flash site (meaning that they put swfs on their site for other people to view). just let me know if you want your present.

I want a present please. I, only host my own swfs though.

Response to The Flash 'Reg' Lounge 2006-11-25 15:00:10


At 11/25/06 02:11 PM, Cybex wrote: Watch him at work here.

Haha, awesome, it'd be great with a speedUp/slowDown button to see it work at different speeds. I'm gonna keep it running for a while, i'll post a picky :P.


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:07:43


I have a random question that I'm sure someone here can answer. How do you create a website logo... pic... thing... I would google it, but I don't even know what it's called. I attached a screen shot that I'm sure will help.

Do you create a gif file, name it something then drop it in the same directory as the index.html page, or does it have to do with the page code?

The Flash 'Reg' Lounge

Response to The Flash 'Reg' Lounge 2006-11-25 15:09:59


At 11/25/06 03:07 PM, DingoEatingFuzz wrote: I have a random question that I'm sure someone here can answer. How do you create a website logo... pic... thing... I would google it, but I don't even know what it's called. I attached a screen shot that I'm sure will help.

Favorite Icons. Or Favicons
Wikipedia Entry

There's some sample HTML on that page. You upload a .ico file to your root directory.
Ico's only have 16 colours. Use them well.


...

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:16:22


At 11/25/06 03:09 PM, KaynSlamdyke wrote: Favorite Icons. Or Favicons
Wikipedia Entry

Awesome :)

Thanks for the fast response!

Response to The Flash 'Reg' Lounge 2006-11-25 15:21:56


At 11/25/06 02:15 PM, authorblues wrote: i have a present for anyone running a flash site (meaning that they put swfs on their site for other people to view). just let me know if you want your present.

I want my present please.

Response to The Flash 'Reg' Lounge 2006-11-25 15:28:41


It's called a fav icon. Because it comes up when you are on a bookmarked page. That site gives loads of info on making them :).

Hope that helped abit :P.

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:29:52


At 11/25/06 02:11 PM, Cybex wrote: My computer does modern art.

Thats cool. So its randomly generated?


:U

Response to The Flash 'Reg' Lounge 2006-11-25 15:40:40


At 11/25/06 01:35 PM, KaynSlamdyke wrote: So I did a stupid thing with my money the other day.

What did you buy?

Just got our monthly prize package through. So far, thats 3 tshirts each for Dim and myself, about 30 stickers of different tank art, a Fourchinnigan book, a random CD and an equally random DVD. Oh, and of course 3 certificates each ^_^

I'd attatch a pic, but sadly .jpgs dont have an awesome channel

Tom~

Response to The Flash 'Reg' Lounge 2006-11-25 15:44:04


At 11/25/06 03:40 PM, The-Super-Flash-Bros wrote:
I'd attatch a pic, but sadly .jpgs dont have an awesome channel

Couldn't you link to a .png?


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:46:45


Thanks dep for asking that quesiton, i actually was curious about that too. :D

And cybex, your .swf crashed my whole FF. Now i cant even open it again, and im stuck with IE. O_O I could watch it for a sec though, cool stuff.

Response to The Flash 'Reg' Lounge 2006-11-25 15:51:44


Now Im at James', Im trying to avoid places without an internet connection. He is in the middle of a water fight with the neghbouring flat, apparently its an ongoing thing. He is wearing a binliner as a raincoat.


BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:52:51


At 11/25/06 03:46 PM, Blaze wrote: And cybex, your .swf crashed my whole FF. Now i cant even open it again, and im stuck with IE. O_O I could watch it for a sec though, cool stuff.

Just press CTRL+ALT+DElETE, then go to the process Tab and click on 'firefox.exe' from the list, and then press the End Process Button. It should work again after that :P.

I've had that problem before.

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 15:58:09


At 11/25/06 03:52 PM, Depredation wrote: Just press CTRL+ALT+DElETE, then go to the process Tab and click on 'firefox.exe' from the list, and then press the End Process Button. It should work again after that :P.

I've had that problem before.

Weird enough, i tried. There wasn't any FF proccess open not even IE. If i tried to open it said "firefox had a problem please close the current open window then try again" or something. And there was NO window open. o_o

But oh well, restarted comp, it works.

Response to The Flash 'Reg' Lounge 2006-11-25 16:03:11


At 11/25/06 02:11 PM, Cybex wrote: My computer does modern art.

Watch him at work here.

1 and a half hours, and not a single bit of lag

Response to The Flash 'Reg' Lounge 2006-11-25 16:18:53


At 11/25/06 03:40 PM, The-Super-Flash-Bros wrote: What did you buy?

Guitar Hero II.
Unfortunately, our PS2's in the repair shop, and two of our (now three) Gibson SG's have busted whammy bars (the catch inside the guitar that allows it to push against a spring has snapped off, meaning that it still moves, but doesn't return to an original position...).

So not played it yet.

Oh, and Flash 8's also a new purchase for me as well, but everyone here's bought Flash so that's no big deal.

...

BBS Signature

Response to The Flash 'Reg' Lounge 2006-11-25 16:26:33


At 11/25/06 04:18 PM, KaynSlamdyke wrote:
At 11/25/06 03:40 PM, The-Super-Flash-Bros wrote: What did you buy?
Guitar Hero II.

Haha, I got it yesterday as well, its so awesome. Tracks aren't as great as the first, but maybe I need time for them to grow on me. Had a leasurely stroll through medium yesterday, now warming up by going through hard before I go for expert.

I might get a guitar off ebay (a real one) and learn. Which brings me to a new question:

Who here plays an instrument? I play drums and piano, and I used to play percussion in my school orchestra. Our version of star wars was epic!

Tom~

Response to The Flash 'Reg' Lounge 2006-11-25 16:28:06


At 11/25/06 04:26 PM, The-Super-Flash-Bros wrote: Who here plays an instrument? I play drums and piano, and I used to play percussion in my school orchestra. Our version of star wars was epic!

Tom~

I play guitar (electric and accoustic), drums, keyboard... :P I have a lot of free time. You should really get a guitar if you've got the money <3

Response to The Flash 'Reg' Lounge 2006-11-25 16:30:52


At 11/25/06 04:26 PM, The-Super-Flash-Bros wrote: Who here plays an instrument?

I play Guitar (electric and acoustic), Harmonica and Banjo. I used to play keyboards too, wish I kept it up.


The water in Majorca don't taste like what it oughta.

| AS3: Main | AS2: Main | Flash Tutorials |

BBS Signature