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

#1 2010-05-21 18:45:40

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

I am confused!?!

How do I get so I can see my projects without being logged in???

Offline

 

#2 2010-05-21 18:48:51

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: I am confused!?!

I'm sorry, I don't quite understand what you mean. You want to see your projects without being logged in - you can just go to your My Stuff page at any given time, whether you're logged in or not.

Offline

 

#3 2010-05-21 19:44:24

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

I mean I don't think other members can see my projects

Offline

 

#4 2010-05-21 19:45:13

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: I am confused!?!

JoseAwesomness wrote:

I mean I don't think other members can see my projects

Yes, they can. They can just use the link that I mentioned above. Anybody can see anybody's projects  smile
Hope that helped you understand.  smile

Offline

 

#5 2010-05-21 20:10:13

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

Another question I have is if two sprites touch how do you back the background change or the costume change? :{ I have played games where this happens.

Offline

 

#6 2010-05-21 20:11:18

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

Yes it did thanks coolstuff.  smile

Offline

 

#7 2010-05-21 20:13:44

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: I am confused!?!

JoseAwesomness wrote:

Another question I have is if two sprites touch how do you back the background change or the costume change? :{ I have played games where this happens.

Simple: For a costume change, put this script on the sprite whose costume you want changed:

Code:

When Green Flag Clicked
switch to costume [costume1]
forever
  if <touching [sprite]>
    switch to costume [costume2]
  end
end

To change the background:

Code:

When Green Flag Clicked
switch to costume [costume1]
forever
  if <touching [sprite]>
    broadcast [backgroundchange]
  end
end

and on the stage:

Code:

When I recieve [backgroundchange]
next background

Last edited by coolstuff (2010-05-21 20:14:52)

Offline

 

#8 2010-05-21 23:14:17

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

coolstuff wrote:

JoseAwesomness wrote:

Another question I have is if two sprites touch how do you back the background change or the costume change? :{ I have played games where this happens.

Simple: For a costume change, put this script on the sprite whose costume you want changed:

Code:

When Green Flag Clicked
switch to costume [costume1]
forever
  if <touching [sprite]>
    switch to costume [costume2]
  end
end

To change the background:

Code:

When Green Flag Clicked
switch to costume [costume1]
forever
  if <touching [sprite]>
    broadcast [backgroundchange]
  end
end

and on the stage:

Code:

When I recieve [backgroundchange]
next background

Trying it....



It works!
Even though I am helping people, I get the 60-second-rule. Is that even fair?!?!


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

#9 2010-05-22 12:53:21

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

Thanks that helps me understand
smile  What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!

Offline

 

#10 2010-05-22 13:06:46

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

JoseAwesomness wrote:

Thanks that helps me understand
smile  What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!

It's okay! We love answering questions and helping people learn. Pen makes penmarks on the stage. I think it is a little hard to put into text... play around and then tell us when it does! Make sure you at least do 10 tests with it.

Last edited by shamrocker (2010-05-22 13:07:03)


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

#11 2010-05-22 13:07:33

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

Can one of you guys look at my game... Underwater Danger and check it out? I hope you can see it!

Offline

 

#12 2010-05-22 13:09:01

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

K thanks shamrocker!

Offline

 

#13 2010-05-22 13:12:22

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

I checked it out. It needs to restart when you click the green flag though, that's all.

Last edited by shamrocker (2010-05-22 13:12:38)


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

#14 2010-05-22 13:14:12

Wolfie1996
Retired Community Moderator
Registered: 2009-07-08
Posts: 1000+

Re: I am confused!?!

JoseAwesomness wrote:

Thanks that helps me understand
smile  What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!

To add on to what shamrocker said, make sure you add in a "pen down" block - otherwise there'll be no pen marks  wink  Add a "pen up" block to stop pen marks  smile


"...Jargon - the practice of never calling a spade a spade, when you might instead call it a manual earth-restructing implement..." - Bill Bryson, Mother Tongue

Offline

 

#15 2010-05-22 14:09:04

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

Wolfie1996 wrote:

JoseAwesomness wrote:

Thanks that helps me understand
smile  What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!

To add on to what shamrocker said, make sure you add in a "pen down" block - otherwise there'll be no pen marks  wink  Add a "pen up" block to stop pen marks  smile

Add "clear" to clear all penmarks, and the color blocks to change pen color.


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

#16 2010-05-22 14:12:31

Wolfie1996
Retired Community Moderator
Registered: 2009-07-08
Posts: 1000+

Re: I am confused!?!

shamrocker wrote:

Wolfie1996 wrote:

JoseAwesomness wrote:

Thanks that helps me understand
smile  What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!

To add on to what shamrocker said, make sure you add in a "pen down" block - otherwise there'll be no pen marks  wink  Add a "pen up" block to stop pen marks  smile

Add "clear" to clear all penmarks, and the color blocks to change pen color.

And shade blocks to change the shade, and size for... well, er, size  big_smile  And "stamp" places a non-moving image of the sprite on the stage.

I think that just about covers all the pen blocks  big_smile


"...Jargon - the practice of never calling a spade a spade, when you might instead call it a manual earth-restructing implement..." - Bill Bryson, Mother Tongue

Offline

 

#17 2010-05-22 14:16:57

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

<pen down>  --Lets you make pen marks if a certain thing happens.

<clear>   --Clears all pen marks

<pen up>   --Stops pen marks

<change pen color by(     --Changes pen colour

<set pen color to(     --Sets pen colour

<change pen shade by(    --Changes pen shade

<set pen shade to(      --Sets pen shade

<change pen size by(    --Changes size... duh.

<set pen size to(    --Sets pen size... duh again.

<stamp>   --Stamps... duh.

All that can be posted on the forums.

Last edited by shamrocker (2010-05-22 14:17:30)


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

#18 2010-05-22 15:31:32

JoseAwesomness
Scratcher
Registered: 2010-05-21
Posts: 8

Re: I am confused!?!

Oh i'll just have to play with it more!  smile

Offline

 

#19 2010-05-22 15:39:56

shamrocker
Scratcher
Registered: 2009-03-19
Posts: 1000+

Re: I am confused!?!

JoseAwesomness wrote:

Oh i'll just have to play with it more!  smile

Yep! That's what Scratch is about! Experimenting and fun! Imagine, Program, Share!

Last edited by shamrocker (2010-05-22 15:40:09)


http://i46.tinypic.com/2s1b32e.png
respect the oxford comma

Offline

 

Board footer