Be a Supporter!
wooden manaquin Posted January 25th, 2007 in Art

Hi does anyone know where i can get hold of a computerised manaquin (like them wooden ones), im looking for one that i can get as freeware and appears on screen nothing to hi tech just a basic model that can be put in various positions

frame rate Posted January 21st, 2007 in Game Development

Hi, im making an animation in flash and i was wondering what frame rate i should set the frame rate at.

Also, i wanted to know if the is a code that allows you to make one scene run at a different frame rate to annother.

internet content laws Posted January 18th, 2007 in General

Hi, im thinking about opening a website for my animations but first i want to find out the internet content laws for the u.k, ive tryed googling but it comes up with pages of un helpful stuff, so if anybody knows where i can find somthing witch saya what warnings i need to put on things etc i will list specificaly what im looking for so anybody whos knows can tell me what i need to do.

Here is a list on what im looking for lawws on:
1.Animationsa with flashing screens-I want to find what warnings i need to put on it so I wont get the blame if it causes seizures
2.swearing-Do I need to put a warning on written or spoken Profanity
3. Parodys, i know parodies are leagal but is there a specific line where a parodie breaches copy right laws?
4.Selling images-I know its O.K to sell T-shirts etc with your characters on but if ive got permission off of a music artist to use their music in one of my animations can i still sell T-shirts Etc with characters from the episode with the music (the characters are my own work and ideas)

Response to: website testing Posted January 16th, 2007 in General

At 1/16/07 01:27 PM, Xragon wrote: Try restarting Dreamweaver, and check the paths to your project... what does it say in the address bar? Is that the right location for the file?

thanks, it was the adress bar problem.

And to the guy who said Alt and F4 im not falling for that lol, ive been telling people to press Alt and F4 for a suprise in chat rooms for years.

website testing Posted January 16th, 2007 in General

Hi, I'm currently making a website on dream weaver CS2 but when io press F12 to preview my site it just comes up with webpage cannot be displayed, it was working earlyer, does anybody know how i can fix this?

Response to: website layout Posted January 15th, 2007 in General

thanks alot for agreeing with me, my friends not so happy, he says your all fags, he's a bad loser

website layout Posted January 15th, 2007 in General

hi, me and mate are making a web site thing, he rekons we should set our site out as one of those websites where you have sceen like a street and various object goto diffent pages, e.g. a street lamp takes you to games etc. I want to set it out more like a traditional website with a menu bar like newgrounds, which sort of website do you preferre?

stop sound Posted January 7th, 2007 in Game Development

Hi,
is there a way to stop sound when your testing an animation (not when its exported just when its on stage) its really annoying having to listen to a whole soundtrack when i only want to check a few seconds of an animation and even when i stop the test the sound keeps playing.

Response to: screen savers Posted January 6th, 2007 in Game Development

At 1/6/07 06:17 PM, Hornby wrote: You mean like make an animation and set the .SWF as your screensaver

exactly

screen savers Posted January 6th, 2007 in Game Development

Does any one know if it is possible to make screen savers on flash

Response to: wii contacts Posted January 6th, 2007 in General

At 1/6/07 09:00 AM, Turd-Of-The-Week wrote: GO BUY AN X-BOX!

you poor asshole

Already got a 360 Personally i think the wii kicks the 360's arse

wii contacts Posted January 6th, 2007 in General

hi, earlyer today me and one of my freinds registered each other on our wii contact lists, we've both configured our internet and parental contol setting to allow to send messages between systems but we still cant send messages, has anbody else had this problem?

Response to: The End of the World, and such Posted January 3rd, 2007 in General

and it says somthing about the third antichrist so that would mean we would have had 2 already

Response to: The End of the World, and such Posted January 3rd, 2007 in General

Taken from the almighty Wikipedia under the subject 2012:

"The 1997 book The Bible Code claims that, according to certain algorithms of the Bible code, a meteor, asteroid or comet will collide with the Earth.
The book The Nostradamus Code speaks of a series of natural disasters caused by a comet (possibly as above) which will allow the third anti-christ to disperse his troops around the globe under the guise of aid in preparation for a nuclear war. "

wii downloads Posted December 25th, 2006 in General

hi
i got a nintendoe wii recently and i found this on the internet www.wiidownloader.com but it sounds to good to be true has anybody used it? i dont want to download and break my wii

svc host Posted December 19th, 2006 in General

When I start up my pc a message comes up saying the svc host cant run, does any one know what an scv host is, im running on XP if that helps

Response to: With Camo or Without? Posted December 18th, 2006 in Game Development

personally, with, but i agree with the randomiser.

de-saturation Posted December 18th, 2006 in Game Development

Hi, ive made an animation in color, but once it was finished i decided it would look better in black and white, so i copyed all the frames, put them in a movie clip and put the mc on the stage and aplied a replace color filter on it then de saturated it. It works fine untill a few seconds in the color comes back, then it goes back to black and white a few seconds from the end, does anybody know why?

widgets Posted December 18th, 2006 in Game Development

does any one know how to, or where a tutorial is, to make widgets in flash, ive tryed googling but didnt find anything

Response to: Fucking Scary Experience Posted December 17th, 2006 in General

Yeah 50% of urban ledgends go like this, the other 50 belongs to mass murders in cars, baby sitters finding out there is a murder in the house, or cooking the baby.

Response to: ]Whats wrong with this code? Posted December 17th, 2006 in Game Development

Thanks alot, its always simple thing isnt it lol

madlyinsane Posted December 17th, 2006 in Programming

Firstly sorry about re-posting this, i origonaly posted it on the flash forum as i didnt realise there was a programming forum, any way,
Im trying to make a christmas countdown timer, so i made a dynamic text field and called it time_txt and the i put this code on the first frame of annother layer;

Im trying to make a christmas countdown timer, so i made a dynamic text field and called it time_txt and the i put this code on the first frame of annother layer;

this.onEnterFrame = function() {
var today:Date = new Date();
var currentYear = today.getFullYear();
var currentTime = today.getTime();

var targetDate:Date = new Date(currentYear,11,25);
var targetTime = targetDate.getTime();

var timeLeft = targetTime - currentTime;

var sec = Math.floor(timeLeft/100);
var min = Math.floor(sec/60);
var hrs = Math.floor(min/60);
var days = Math.floor(hrs/24);
sec = string(sec % 60);
if(sec.length < 2) {
Sec = "0" + sec;
}
min = string(min % 60);
if (sec.length < 2) {
sec = "0" + sec;
}
hrs = string(hrs % 24);
if (hrs.length < 2) {
hrs = "0" + hrs;
}
days = string(days);

var counter:String = days + ":" + hrs + ":" + min ":" + sec;
time_txt.text = counter;
}

and it keeps saying theres a synthax error in line 30 can anybody help?

]Whats wrong with this code? Posted December 17th, 2006 in Game Development

Im trying to make a christmas countdown timer, so i made a dynamic text field and called it time_txt and the i put this code on the first frame of annother layer;

Im trying to make a christmas countdown timer, so i made a dynamic text field and called it time_txt and the i put this code on the first frame of annother layer;

this.onEnterFrame = function() {
var today:Date = new Date();
var currentYear = today.getFullYear();
var currentTime = today.getTime();

var targetDate:Date = new Date(currentYear,11,25);
var targetTime = targetDate.getTime();

var timeLeft = targetTime - currentTime;

var sec = Math.floor(timeLeft/100);
var min = Math.floor(sec/60);
var hrs = Math.floor(min/60);
var days = Math.floor(hrs/24);
sec = string(sec % 60);
if(sec.length < 2) {
Sec = "0" + sec;
}
min = string(min % 60);
if (sec.length < 2) {
sec = "0" + sec;
}
hrs = string(hrs % 24);
if (hrs.length < 2) {
hrs = "0" + hrs;
}
days = string(days);

var counter:String = days + ":" + hrs + ":" + min ":" + sec;
time_txt.text = counter;
}

and it keeps saying theres a synthax error in line 30 can anybody help?

Response to: Grid Posted December 17th, 2006 in Game Development

Never mined ive done it, i was just being noobish and didnt think to look under the view menu

Grid Posted December 17th, 2006 in Game Development

Somehow ive turned on somesort of grid on flash, the are hundreds of squares on the screen how do i turn them off?

Tinsel Posted December 17th, 2006 in Game Development

Does any one know a way to draw shiney tinsel in flash?

Response to: Internet Explorer 7 problem Posted December 17th, 2006 in General

Arrrrrrrrrrggggggggg started again!!

Response to: Internet Explorer 7 problem Posted December 17th, 2006 in General

Hm its toped, im not sure what i dit to disable it.

Response to: Internet Explorer 7 problem Posted December 17th, 2006 in General

At 12/17/06 05:28 AM, H-A-X-O-R-Z wrote: Why not try sticking with 6?

(What's the difference, I'm too lazy to dl 7)

7 is slightly faster (apparently), and its got tab browsing.

Internet Explorer 7 problem Posted December 17th, 2006 in General

Hi im using I-E7 and every time i click on a new tab or follow a link the bar with File, Edit, View Etc comes up at the top of the page and i have to press Alt to get rid of it so i can follow other links (i cant follow links while its on), It wasnt Doing this before does anyone know how i can disale this bar atimaticaly coming up?