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

#1 2007-12-12 15:04:21

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Animate Pictures

How do you animate pictures on scratch, i cant figure it out?

Offline

 

#2 2007-12-12 16:03:25

messd002
Scratcher
Registered: 2007-12-07
Posts: 100+

Re: Animate Pictures

Basically you have to flick between costumes and a fast pace.


Burn baby Burn!

Offline

 

#3 2007-12-12 16:15:11

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

...what,can you say it a little more understandable?

Offline

 

#4 2007-12-12 16:37:08

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

i figured it out but i cant collect items what scripts do i use?

Offline

 

#5 2007-12-12 17:08:45

funkymonkey
Scratcher
Registered: 2007-06-03
Posts: 1000+

Re: Animate Pictures

<when green flag clicked>
<forever>
<switch to costume[ ---
<wait( --- )secs>
<switch to costume[ ---
<wait( --- )secs>
<end>

if there are mose coustumes, just keep adding
<switch to costume[ ---
<wait( --- )secs>
untill you're done

Last edited by funkymonkey (2007-12-12 17:10:30)


http://i243.photobucket.com/albums/ff67/hprules_photos/banner2.jpg
Kuzimu: Dawn of a New Age                                                                                                  Coming May 2010

Offline

 

#6 2007-12-12 19:50:45

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

how do i make something move by its self with out me pressing a button?

Offline

 

#7 2007-12-13 01:41:53

Jens
Scratcher
Registered: 2007-06-04
Posts: 1000+

Re: Animate Pictures

You can do something like

[blocks]
<when green flag clicked>
<forever>
(your motion script)
<end>
[/blocks]

Then it will start moving when you press the green flag in Scratch. Online it will start moving right away, without you having to click on anything.


Jens Mönig

Offline

 

#8 2007-12-13 16:56:03

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

thank you

Offline

 

#9 2007-12-13 17:04:17

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

it dident work

Offline

 

#10 2007-12-13 17:08:27

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

which motion script, i want them to walk around freely

Offline

 

#11 2007-12-14 01:27:14

Jens
Scratcher
Registered: 2007-06-04
Posts: 1000+

Re: Animate Pictures

a first simple motion script could be something like this:

[blocks]
<when green flag clicked>
<forever>
<move( 10 )steps>
<wait( 0.3 )secs>
<if on edge, bounce>
<end>
[/blocks]

If your sprite is to look like a human / animal character you might want to set the sprite to turn only left / right to prevent it from turning upside down. Also you might want to switch between at least two costumes in each iteration to create an animated motion impression.

Another great way to learn is to download someone else's project that already does what you want to achieve and have a look at how it's done, or remix it, or export a particular sprite from that project and import it into your own project.

Did that help?


Jens Mönig

Offline

 

#12 2007-12-14 03:04:33

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

ok thank you

Offline

 

#13 2007-12-14 03:17:01

Tails33
Scratcher
Registered: 2007-12-12
Posts: 12

Re: Animate Pictures

man, now they they only move sideways!

Offline

 

#14 2007-12-14 03:29:04

Jens
Scratcher
Registered: 2007-06-04
Posts: 1000+

Re: Animate Pictures

you can make them go anywhere you want by using the blocks from the motion category changing the sprite's x-value makes it moves left/right, changing the sprite's y-value makes it move up/down. Changing the sprite's direction in combination with the 'move _ steps' block is another way to move it around. Just keep on experimenting!


Jens Mönig

Offline

 

#15 2008-01-14 18:07:54

jhnbytwoo
Scratcher
Registered: 2007-11-29
Posts: 40

Re: Animate Pictures

Jens wrote:

a first simple motion script could be something like this:

[blocks]
<when green flag clicked>
<forever>
<move( 10 )steps>
<wait( 0.3 )secs>
<if on edge, bounce>
<end>
[/blocks]

If your sprite is to look like a human / animal character you might want to set the sprite to turn only left / right to prevent it from turning upside down. Also you might want to switch between at least two costumes in each iteration to create an animated motion impression.

Another great way to learn is to download someone else's project that already does what you want to achieve and have a look at how it's done, or remix it, or export a particular sprite from that project and import it into your own project.

Did that help?

How do you set the sprite to only go left and right and not upsidedown?


"I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones."
--Albert Einstein

Offline

 

#16 2008-01-15 02:01:25

Jens
Scratcher
Registered: 2007-06-04
Posts: 1000+

Re: Animate Pictures

You can set the sprite's direction to 90 (for right) and specify the sprite to only turn left / right (by clicking on the little arrow-symbols in the sprite editor on top of the scripting area). This will make the sprite go only left and right without turning upside down.


Jens Mönig

Offline

 

#17 2008-01-15 06:35:11

Lanie624
Scratcher
Registered: 2007-07-13
Posts: 500+

Re: Animate Pictures

Go to the support page on scratch and you will see Scratch Cards that help with basic motion,animation,move to mouse pointer, e.t.c all that good stuff read them and mess around with the script and see if it works!  smile

Last edited by Lanie624 (2008-01-15 06:36:25)


smile

Offline

 

Board footer