How do I get so I can see my projects without being logged in???
Offline
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
I mean I don't think other members can see my projects
Offline
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
Hope that helped you understand.
Offline
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
Yes it did thanks coolstuff.
Offline
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:
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 endand on the stage:
Code:
When I recieve [backgroundchange] next background
Last edited by coolstuff (2010-05-21 20:14:52)
Offline
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 endTo change the background:
Code:
When Green Flag Clicked switch to costume [costume1] forever if <touching [sprite]> broadcast [backgroundchange] end endand 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?!?!
Offline
Thanks that helps me understand
What does Pen do? I can't get it to work. Sorry I have so many questions I'm learning!
Offline
JoseAwesomness wrote:
Thanks that helps me understand
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)
Offline
Can one of you guys look at my game... Underwater Danger and check it out? I hope you can see it!
Offline
K thanks shamrocker!
Offline
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)
Offline
JoseAwesomness wrote:
Thanks that helps me understand
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 Add a "pen up" block to stop pen marks
Offline
Wolfie1996 wrote:
JoseAwesomness wrote:
Thanks that helps me understand
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 Add a "pen up" block to stop pen marks
Add "clear" to clear all penmarks, and the color blocks to change pen color.
Offline
shamrocker wrote:
Wolfie1996 wrote:
JoseAwesomness wrote:
Thanks that helps me understand
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 Add a "pen up" block to stop pen marks
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 And "stamp" places a non-moving image of the sprite on the stage.
I think that just about covers all the pen blocks
Offline
<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)
Offline
Oh i'll just have to play with it more!
Offline
JoseAwesomness wrote:
Oh i'll just have to play with it more!
Yep! That's what Scratch is about! Experimenting and fun! Imagine, Program, Share!
Last edited by shamrocker (2010-05-22 15:40:09)
Offline