Be a Supporter!
Response to: looking for sprites Posted January 4th, 2008 in Game Development

I JUST FOUND THIS AWSOME SITE WHERE YOU CAN SEARCH THE WEB FOR ANYTHING!!!! YES REALLY ANYTHING!!!!! ITS CALLED GOOGLE

Response to: Moving the Mouse in AS2 Posted October 20th, 2007 in Game Development

At 10/20/07 09:30 AM, WolfAkela wrote: You can't move the mouse position. At best you can only move an MC that imitates the mouse position.

In AS3 too?

Response to: Gif issues, not working ex availibe Posted October 19th, 2007 in Game Development

I believe he's using flash, this is in the flash forum after all!

Response to: Help with V Cam and Subtitles Posted September 17th, 2007 in Game Development

put subtitles inside the v-cam?

vista windows media player menu... Posted July 14th, 2007 in General

on the right it used to be a menu showing what I am playing, but I somehow manage to close it......so how do I open it again?

Response to: my flash CS3 doesn't work Posted June 3rd, 2007 in Game Development

bump........ please help

Response to: my flash CS3 doesn't work Posted June 3rd, 2007 in Game Development

At 6/3/07 12:14 PM, Burgin wrote: Flash CS3??? Since when has there been Flash CS3?

since April 16.
http://www.adobe.com/products/flash/

my flash CS3 doesn't work Posted June 3rd, 2007 in Game Development

At first flash worked, but it stopped working, when I try to start it, I get a error message saying: "Licensing for this product has stopped working." "You cannot use this product at this time. You must repair the problem by uninstalling and then reinstalling this product or contacting your IT administrator or Adobe customer support for help", I can't uninstall it and when I try to reinstall it I get this error: "The installation program has detected a error and can't continue. Contact Adobes customer service if you need help.
Internal Error 2739."

*I am using Windows Vista Home Pentium
*A few days ago I got a really annoying trojan, so I had to do a system restore and I am not sure if it was the trojan or the system restore that destroyed flash, but I think it was one of them.
*I haven't tried to install any mods or something like that.
*SWKotOR2 doesn't work either.
*I can't uninstall, reinstall or update iTunes either, but it works and when I try to uninstall or reinstall it I get this message: "iTunes couldn't be installed because Visual Basic Script (VBScript) isn't installed or has been deactivated. Make sure VBScript is installed, turn of script-blocking in antivirus- and firewallsoftware. register VBScript again and install iTunes.".

so my question is: does anyone know how to fix this???

btw some of those error messages were translated from Norwegian.

really bad trojan Posted May 29th, 2007 in General

I got a really bad trojan by downloading something I thought was porn..... And I've tried 6 programs to remove it, but none of them could. My friend told me I could turn back the PC to before I got the trojan.... how do I do that? (I am using Windows Vista Home Pentrium)

Response to: block sites Posted May 11th, 2007 in General

please answer, I don't want my friend to download gay porn on my pc........

block sites Posted May 11th, 2007 in General

is it some way to block some websites on firefox?

Manhunt 2 petition Posted January 27th, 2007 in General

want manhunt 2??????
sign the manhunt 2 petition here

Response to: Actionscript codes here! Posted January 26th, 2007 in Game Development

//the 1337 swear function:

swear = function (t) {
var a:Array = new Array("fuck", "hell", "shit", "damn");
for (b = 0; b < a.length; b++) {
if (t.indexOf(a[b]) == -1) {
if (b == a.length - 1) {
return false;
}
} else {
return true;
break;
}
}
};
trace(swear("I like flowers....."));
// returns false
trace(swear("I fucking hate Luis"));
// returns true

Response to: AS Wars: ideas thread Posted January 11th, 2007 in Game Development

It should be possible to bet (real money) on the bots

Response to: AS Help with game? Posted December 16th, 2006 in Game Development

At 12/16/06 07:22 AM, UnknownFear wrote: That is a pretty interesting game engine you got there.

he asked for help, not for you to boost your postcount

I think you can use the same code as for the guy, but replace the _xmouse with your dudes _x and the same for the _y and I think this is how you calculate distance

distance = Math.sqrt((xdis*xdis)+(ydis*ydis));

Response to: The BitmapData thread. Posted December 15th, 2006 in Game Development

bump bump bump......
come on post something, doesn't anyone else know BitmapData???

Response to: Flash Mp3 Music Player Posted December 13th, 2006 in Game Development

learn it at http://www.gotoandlearn.com/

Response to: Global variable help Posted December 13th, 2006 in Game Development

use :
on (press) {
_root.money = _root.money - _root.cost;
}

Response to: Drawing With Mouse And Api Posted December 8th, 2006 in Game Development

like this??
lineStyle(5, 0);
_root.onMouseDown = function() {
Draw = true;
moveTo(_xmouse, _ymouse);
};
_root.onMouseMove = function() {
if (Draw) {
lineTo(_xmouse, _ymouse);
}
};
_root.onMouseUp = function() {
Draw = false;
};

Response to: madness!?!!??! Posted December 4th, 2006 in Game Development

try http://www.madnesscombat.net/

Response to: Help! Posted December 4th, 2006 in Game Development

getURL("http://website", "_blank");
I think

Response to: The BitmapData thread. Posted December 1st, 2006 in Game Development

At 12/1/06 07:17 PM, MattPrior wrote: awesome where did you guys learn Bitmap Data

the tutorial collab

Response to: The BitmapData thread. Posted December 1st, 2006 in Game Development

BITMAPDATA PWNZOR
bitmap data is fucking cool

Response to: mask with multi attached movieclips Posted December 1st, 2006 in Game Development

bump...................

Response to: mask with multi attached movieclips Posted December 1st, 2006 in Game Development

At 12/1/06 06:54 AM, orb wrote: Wait, so you want all of the movieclips in the same mask? Or do you want them in different masks?

all in the same

What's the final effect you're trying to achieve? Maybe there's an easier way to do it.

http://img183.imageshack.us/my.php?image=comp uterfg2.swf - this right click and click new folder


this is the code I am using

for (i = 0; i <= 4; i++) {
var k:MovieClip = attachMovie("square", "square" + "i", i);
k._x = (k._width + 10) * i;
k._y = (k._height + 10) * i;
k.setMask(mask);
}

the problem is that the mask only work on the last movieclip, how can I make it work on all the attached movieclips?

Response to: Actionscript Problem Posted November 28th, 2006 in Game Development

delete this.onEnterFrame;

forgot onEnterFrame????

Response to: RTS!! game how do u make one? Posted November 28th, 2006 in Game Development

I have started making a rts game, but not finished it, here's the code for the selecter if you want it:

_root.onMouseDown = function() {
oldx = _xmouse;
oldy = _ymouse;
mPress = true;
};
_root.onMouseUp = function() {
selecter_mc.removeMovieClip();
mPress = false;
};
_root.onMouseMove = function() {
if (mPress) {
newx = _xmouse;
newy = _ymouse;
_root.createEmptyMovieClip("selecter_mc", 16000);
with (selecter_mc) {
lineStyle(1, 0x009900, 90);
beginFill(0x009900, 15);
moveTo(oldx, oldy);
lineTo(newx, oldy);
lineTo(newx, newy);
lineTo(oldx, newy);
lineTo(oldx, oldy);
endFill();
}
}
};

flash lan game? Posted November 22nd, 2006 in Game Development

is it possible to make a lan game with flash???
if so how?

Response to: Help me with my school work Posted November 19th, 2006 in General

Age:

14

Gender:

male

Do you play games?:

yes

If you do:
Favourite game-genre:

first person action

Best grade(s) in report card:

6- (from 1 to 6)

Worst grade(s) in report card:

2+ = (from 1 to 6)