This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2008-09-02 16:45:16

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

how do i get flash

I don't know how to get flash and how much different it is from scratch. Could someone please help me

Offline

 

#2 2008-09-02 16:57:21

axel600
Scratcher
Registered: 2007-10-13
Posts: 100+

Re: how do i get flash

Flash is $700 but you can use it to make games and animations that are proffesional quality. You can get a 30-day free trial of flash here: http://www.adobe.com/products/flash/?promoid=BPDEE

Offline

 

#3 2008-09-02 17:06:52

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

so does it come with everything it taklks about like action script etc

Offline

 

#4 2008-09-02 17:19:38

keroro645
Scratcher
Registered: 2008-06-07
Posts: 1000+

Re: how do i get flash

I think so i want flash too.I might get it for christmas.My friend has it.

Offline

 

#5 2008-09-02 17:24:22

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

thelasthorizon wrote:

so does it come with everything it taklks about like action script etc

Actionscript is this language you program it in. I would look at Archmage's forum thread about making a moveable object. I think I'm proficient enoughto try and help you (I say proficient, not advanced). it comes with everything you need


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#6 2008-09-02 20:17:34

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

k thanks i am going to downlaod the free version then if i like it i have enough money to buy it. SO u would recommend it right

Offline

 

#7 2008-09-02 21:32:50

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

thelasthorizon wrote:

k thanks i am going to downlaod the free version then if i like it i have enough money to buy it. So you would recommend it right

Yep. Funnest thing ever. And similar to Scratch


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#8 2008-09-02 21:46:45

big-bang
Scratcher
Registered: 2008-02-21
Posts: 1000+

Re: how do i get flash

could somebody tell me about flash? scratch is my only programming language.


http://i47.tinypic.com/6edrbm.jpghttp://i45.tinypic.com/dw9hmw.jpghttp://i50.tinypic.com/f28tvn.jpghttp://i45.tinypic.com/ruwaop.jpg

Offline

 

#9 2008-09-02 21:50:22

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

big-bang wrote:

could somebody tell me about flash? scratch is my only programming language.

O.K., it's semi liek Scratch but you ave to type everything out. Like this:

onClipEvent (load){
var speed = 0;
var maxspeed = 20;
var minspeed = -20;
}
onClipEvent (enterFrame){
if ((Key.isDown(Key.RIGHT))and(speed<maxspeed)){
speed += 1;
}
speed = speed*.98
_x += speed;
}

I tink that's enough brackets… but that is it. Notice it uses the If block, and block, varaibles, etc


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#10 2008-09-02 21:51:32

big-bang
Scratcher
Registered: 2008-02-21
Posts: 1000+

Re: how do i get flash

ahhh i think my dad uses it to program.


http://i47.tinypic.com/6edrbm.jpghttp://i45.tinypic.com/dw9hmw.jpghttp://i50.tinypic.com/f28tvn.jpghttp://i45.tinypic.com/ruwaop.jpg

Offline

 

#11 2008-09-02 21:53:10

archmage
Scratcher
Registered: 2007-05-18
Posts: 1000+

Re: how do i get flash

big-bang wrote:

ahhh i think my dad uses it to program.

Thats cool. He probably already has a copy of flash then. See if he can teach you a thing or 2.


Hi, I am Archmage coder extraordinaire. I do Scratch,pascal,java,php,html, AS2 and AS3. Leave me a message if you want coding advice. Also check out my personal website, lots of good stuff about web development, Flash, and Scratch (v1 and v2) !

Offline

 

#12 2008-09-03 15:10:52

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

Yay scratch 1.3 is out   but i problably won't need it and thanks for all of the help

Offline

 

#13 2008-09-07 18:25:49

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

is it flash cs3?

Offline

 

#14 2008-09-07 18:43:47

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

thelasthorizon wrote:

is it flash cs3?

Yep. That's it


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#15 2008-09-09 15:37:23

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

yay i can download it tonight

Offline

 

#16 2008-09-09 17:20:08

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

thelasthorizon wrote:

yay i can download it tonight

Here is basic movement. It IS case sensitive (use Actionscript 2.0 . I find it easier):

onClipEvent (enterFrame)
if (Key.isDown(Key.RIGHT)){
_x += 5;
}
if (Key.isDown(Key.LEFT)){
_x -= 5;
}
}

that is left and right. I think you can do the up and down, as long as you know the Y axis is inverted, so you go up when subtracting from it (so to go up, it would be _y -= blank) and vice versa


onClipEvent (enterFrame) - for MC's (MovieClips), you need to start each script. This is like a hat block. Now the frame is on the timeline, so it is when you access that frame number it will do this

if (Key.isDown(Key.RIGHT)) - this is checking to see if the key is down. It only works for things like arrows and space (make sure they are all caps). If you want to use letters like WADS, you use numbers (and maybe a different line of code?)

_x += 5 - moves your MC 5 pixels(?) to the right. Vice versa for subtraction

} - these open ({) and close(}) the codes. It will automatically determine the placement, though usually when I get a syntax error, I have either A) the wrong amount of brackets, or B) to many parenthesis (make sure you close everything with these)

I'm sure Archmage could do a better job explaining…


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#17 2008-09-10 15:28:44

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

k thanks im horrible at it right now so thanks for the advice

Offline

 

#18 2008-09-12 15:25:16

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

when i download flash does it automatically download the flash player? when i go to test my scipt nohting happens at all. I tried to trace numbers and nothing happened

Offline

 

#19 2008-09-12 17:22:55

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: how do i get flash

thelasthorizon wrote:

when i download flash does it automatically download the flash player? when i go to test my scipt nohting happens at all. I tried to trace numbers and nothing happened

Alright. here is what to do:

Make an object (like a circle). Now right click, go down to "convert to symbol" and type in it's name (I'll use "guy"). Make sure movie Clip is selected (because those are the only ones that can move. Someone prove me wrong). Now accept. At the bottom left should be some tabs (like properties, compiler errors, etc). Click "properties". Now you will see a place that says "<instance name>". Type in whatever you named your Movieclip (so guy in this case). Now code!


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#20 2008-09-13 08:52:45

thelasthorizon
Scratcher
Registered: 2008-08-19
Posts: 100+

Re: how do i get flash

k thanks

Offline

 

Board footer