View Full Version : Ask Questions here!
Penguins
12-15-2007, 02:43 PM
Hello, I'm Penguins,
I've had Flash CS3 (Adobe) and Flash 7 (Macromedia) for along time. And I use ActionScript 2.0 and 3.0.
I will be teaching 3.0 in this tutorial. Flash 7 is 2.0, so this isn't a topic for you if you have Flash 7.
Flash CS3 has more stuff to script, and makes scripting faster, and easier.
I will show you a script from ActionScript 2.0, then the 2nd one will be ActionScript 3.0.
2.0: myMovieClip.createTextField("thickness_text", 10, 0, 0, Stage.width, 22);
Now I will show you the same code, but with 3.0.
var myText:TextField = new TextField();
Same code, and it looks easier, doesn't it?
So if you need a little help with 3.0, you can post a comment here!
Thank you!
Penguins :D
loggerbomb
12-17-2007, 08:16 PM
This isn't a newbie thread, so don't post in here unless you need help with flash!
Penguins
12-20-2007, 08:03 PM
how i make games
Making games isn't easy. It requires lots of Action Script 3.0 or 2.0. I would suggest you to learn more about it with Flash, before you start working on your Hallpass game!
And thank you for the rest that are giving me some positive reply's instead of negative! :cool:
JimmytheSpider
01-26-2008, 07:00 AM
is there anybody that would make a game for me?
i have the idea and im making sketches....
CarMan1390
01-26-2008, 11:45 PM
Just deleted McLover91's post. It didn't need to be there.
tama123
01-27-2008, 08:25 PM
where can find actionscript 2.0 or 3.0? i love drawing amagenary animals and real animals if i would be able to make a video game i would call it dragon of the dark because i love dragons!!!!!;);):D:)
CarMan1390
02-02-2008, 05:48 PM
where can find actionscript 2.0 or 3.0?
Actionscript comes with Flash. You can download the 30 day free trial if you don't want to pay the $700 for it.
LoverBaby123
02-17-2008, 01:49 AM
How do u put a big image on the message 1 like 1 of the other accounts???
Canis_Canem_edit_player
04-01-2008, 08:26 PM
WHAT IS THE NAME OF THE SOFTWARE YOU USE TO MAKE FLASH MOVIES AND GAMES I'VE BEEN TRYING TO FIND OUT FOR AGES COULD YOU PLEASE HELP ME?!?!?!?!:eek:
CarMan1390
04-01-2008, 08:57 PM
1. Don't use all uppercase. It is considered screaming.
2. The program is called Adobe Flash. You can buy it for $700 or download the trial version.
Canis_Canem_edit_player
04-01-2008, 11:25 PM
thanx sorry if you got offended or anything cos this is a great help
slipsoccer
04-15-2008, 11:37 PM
i got one how do you put a game into hallpass i try to put one and says an unknown error accured??:confused:
__The_total_highscore__
10-05-2008, 09:15 AM
heyy i need some help
i have flash CS3 and im still learning alot about it
but my question is...
i making one of those games were u have to move the mouse through the mase and one of the comonly known cheats is to right click.
how can i make it so when they right click it will take them to a certain frame.
plz and thank you=-)
sry forgot to mention this dont know if its important but im using actions scrip 2.0
oh and i f you need to know what ive done so far plz tell me
CarMan1390
10-05-2008, 09:30 AM
It's a good thing you're using AS2. That's the only version I know. Anyway here is the way to make that possible. First make a new button with a transparent fill and that is bigger than the stage. Let's call the button btncheat. Go into the actions panel and enter this code:
on(press) {
if(Key.isDown(2)) {
gotoAnd Stop(10);
}
}
Let me explain the code.
on(press) {
When the button is pressed,
if(Key.isDown(2)) {
If they right mouse button is pressed,
gotoAndStop(10);
Go to the lose frame which, in this case, would be frame 10.
__________________________________________________ _____________
You also might want to change that code so that the key that is down in the code is the left mouse button. This prevents users from dragging their mouse the the end of the level.
__The_total_highscore__
10-05-2008, 09:35 AM
thanks for the help but i dont need the holding one because its rollover thx again
but im still a little confused u didnt specify what key is down. does that atuimaticly mean right mouse button? and its still not working. i might be doing something rong.
this is what i did:
i made a new layer on the very top
i made a circle that was not on the map
the circle was no fill(i think this is the problem cause i dont know how to put it on tranparent fill)
i made it a button and named it btncheat
i then gave it this action
on(press) {
if(Key.isDown(2)) {
gotoAndStop(2);
}
}
CarMan1390
10-05-2008, 11:35 AM
Try it with a Movie Clip. Instead of having the "on(press) {" replace it with "this.onEnterFrame = function() {"
So your code would be:
this.onEnterFrame = function() {
if(Key.isDown(2)) {
gotoAndStop(2);
}
}
__The_total_highscore__
10-05-2008, 12:11 PM
thx ill try it
and how do u make it transparent?
__The_total_highscore__
10-05-2008, 12:16 PM
its not working i think its cause im not making it trasparent right
ilikepie12
10-07-2008, 02:28 AM
1. Don't use all uppercase. It is considered screaming.
2. The program is called Adobe Flash. You can buy it for $700 or download the trial version.
ive got adobe flash but how do u make movies???
Can someone translate the code to put in a game for the high score table into AS3 because I would not know how
CarMan1390
11-06-2008, 09:42 PM
Can someone translate the code to put in a game for the high score table into AS3 because I would not know how
You'll just have to wait for the admins to get to it...if they get to it.
vBulletin® v3.7.4, Copyright ©2000-2008, Jelsoft Enterprises Ltd.