Be a Supporter!

Flash content(Mostly games I believe) randomly crashes Firefox and IE when loading.
I've reinstalled flash player and firefox without success. Anyone know why this happens and how I can fix?

Response to: Making an mp3 player, need help Posted September 5th, 2006 in Game Development

It returns undefined.

Response to: Making an mp3 player, need help Posted September 5th, 2006 in Game Development

It's not really movable, i'm creating a new mc that's supposed to move with the progress of the controller.. Anyway, are there any good tutorials on reskinning existing themes?

Response to: Making an mp3 player, need help Posted September 5th, 2006 in Game Development

It's external. But how can I get the position?

Making an mp3 player, need help Posted September 5th, 2006 in Game Development

Right, so I want an mp3 player using a skin i've made. So far I suppose it's looking ok, but i'm using an Media controller above the flash document and manipulating it from the buttons i've placed on my image(the skin).

So far i've made so it can play/pause and show song name on the display but I can't get the progress bar to work, I don't know the property for the progress and the "progress" propertie only returns Undifined.

I'd also want to know how I can make a seeker(Press and hold the progress bar to go to go back or forward in the song).

Please also tell me if theres an even more effective way to play songs externaly perhaps without using an controller outside the document.

So incase you're to lazy to read, I need help to create a custom working progressbar for media controller.

.fla file here, music not included.

Response to: flash programs Posted July 4th, 2006 in Game Development

Or you could take the wrong turn and do what probably 70% of all flash owners do :(
My friend used KoolMovies... really not recomended.

Response to: Where can i find this flash? Posted July 3rd, 2006 in Where is / How to?

Yeah, thanks :D

Response to: Where can i find this flash? Posted July 3rd, 2006 in Where is / How to?

I can explain the first level: It's a key that you have to modify to fit in a lock, then when it's unlocked a screen opens showing some controls that steers something so you can see numbers etc, then you enter the number you see in a box and level is cleared.


It's a flash game that's kinda of an logical puzzle, or it is a logical puzzle... You get no descriptions or hints, you just go for with what you've got. I wanna find this cuz i didn't find it on frontpage archive(perhaps i'm blind..).

Response to: Game Maker (6) Posted June 29th, 2006 in Programming

Yeh, game maker is probably the easyest program to work with... also the easyest to decompile >:D

Or well, 3D Game Maker is probably alot easyer... But the easyer it is, the more it sucks

Response to: Game Maker (6) Posted June 29th, 2006 in Programming

Mmmmm.. Game Maker, the game creator for n00bs.

Response to: program!!?!!(2) Posted June 25th, 2006 in Programming

Let's just assume he is an retard and is serious.
I've said it before, making a photoshop alike program is nothing for beginners. Beginners should learn basics, then move on to a bit more advanced basics. Learning programming takes years(well, some languages don't, but those that don't suck and are very limmited or requires DLL files, and those are programmed in harder languages)

Response to: Starting 3D Posted June 25th, 2006 in Programming

3D Studio Max is probably the most used one, or atleast was.

Response to: Can you make games with C++? Posted June 25th, 2006 in Programming

There is only one way you can make a game with C++, Study it for years.

Response to: Platform Game help Posted June 23rd, 2006 in Game Development

If you move the mouse to fast and release, it fucks up and refuses to release. To solve add this after that code:

on(releaseOutside){
stopDrag();
}

Response to: very important Posted June 23rd, 2006 in Game Development

Gunpoint! *Thumbs up*

Response to: Drag and Drop Problem Posted June 23rd, 2006 in Game Development

on(press){
movieclip.startDrag(true); // Center = true
}

on(release){
stopDrag();
}

Response to: Platform Game help Posted June 23rd, 2006 in Game Development

On the player movieclip:

onClipEvent(enterFrame){
if(this.hitTest(_root.MOVIECLIP)){
gotoAndPlay("Scene name here");
}
}

Haven't tested it but it should work.

Response to: program!!?!! Posted June 23rd, 2006 in Programming

Please... PLEASE.. spellcheck your posts.
The spelling makes it look stupid.

Response to: very important Posted June 23rd, 2006 in Game Development

You... BASTARD! Now i want bacon :( Curse u *shakes fist*

Response to: program!!?!! Posted June 23rd, 2006 in Programming

Yeh, I'm well aware of that :P

Response to: program!!?!! Posted June 23rd, 2006 in Programming

Please, use whole words.

Starting on a project that large for learning is nothing i would recomend.

Response to: 3d ? Posted June 23rd, 2006 in Game Development

Maya, Milkshape, Rhino, 3DSMax, Anim8or etc..

Response to: program!!?!! Posted June 23rd, 2006 in Programming

Work on your spelling.
And no, it's stupid, why make something that's already avavible.

Response to: Recommended FBF tool Posted June 23rd, 2006 in Game Development

Tween is ok, as long as you know how to use it ;)

Response to: Narrator Posted June 23rd, 2006 in Game Development

Trust me, those voices suck hard.

Response to: Unfinished Movie Posted June 23rd, 2006 in Game Development

Shape = Huge no.

Shape looks ugly unless it's used right.

Response to: Merge Layers? Posted June 22nd, 2006 in Game Development

Drag and select everything you want merged, hit F8 and check Movieclip. Then select the newly create movieclip that's right there on the document and press CTRL+B.

Response to: Flash Components and Quiz Optimisat Posted June 22nd, 2006 in Programming

.. Ic.. My bad... heh, I'll just head off to bed now..

Response to: Flash Components and Quiz Optimisat Posted June 22nd, 2006 in Programming

At 6/22/06 09:46 PM, Whabs wrote: AND IT CLEARLYS SAYS IN THE DESCRIPTION OF THE PROGRAMMING FORUM TO KEEP ACTIONSCRIPT-RELATED POSTS IN THE FLASH FORUM!!!!

Can't noobs understand that?!?

This is actionscript related... Noob.

I would suggest the setInterval. Example:

Frame 1:

var time:Number = 200; // 200 Seconds
myInterval = setInterval(checkTimer, 1000); // 1000 mseconds = 1 second

function checkTimer(){
if(time == 0){
// INSERT ACTIONS FOR TIMER EVENT
} else {
time--
}
}

Hope that helps ;)