Monster Racer Rush
Select between 5 monster racers, upgrade your monster skill and win the competition!
4.23 / 5.00 3,881 ViewsBuild and Base
Build most powerful forces, unleash hordes of monster and control your soldiers!
3.93 / 5.00 4,634 ViewsFlash 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?
It returns undefined.
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?
It's external. But how can I get the position?
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.
Or you could take the wrong turn and do what probably 70% of all flash owners do :(
My friend used KoolMovies... really not recomended.
Yeah, thanks :D
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..).
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
Mmmmm.. Game Maker, the game creator for n00bs.
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)
3D Studio Max is probably the most used one, or atleast was.
There is only one way you can make a game with C++, Study it for years.
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();
}
on(press){
movieclip.startDrag(true); // Center = true
}
on(release){
stopDrag();
}
On the player movieclip:
onClipEvent(enterFrame){
if(this.hitTest(_root.MOVIECLIP)){
gotoAndPlay("Scene name here");
}
}
Haven't tested it but it should work.
Please... PLEASE.. spellcheck your posts.
The spelling makes it look stupid.
You... BASTARD! Now i want bacon :( Curse u *shakes fist*
Please, use whole words.
Starting on a project that large for learning is nothing i would recomend.
Maya, Milkshape, Rhino, 3DSMax, Anim8or etc..
Work on your spelling.
And no, it's stupid, why make something that's already avavible.
Tween is ok, as long as you know how to use it ;)
Shape = Huge no.
Shape looks ugly unless it's used right.
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.
.. Ic.. My bad... heh, I'll just head off to bed now..
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 ;)