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

#26 2010-10-12 08:21:45

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

just letting you know i updated it

Offline

 

#27 2010-10-12 12:24:26

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial


/* No comment */

Offline

 

#28 2010-10-15 16:26:39

dav09
Scratcher
Registered: 2009-03-25
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

yeah it surly will be sticky!

Offline

 

#29 2010-10-21 10:27:52

whizzer
Scratcher
Registered: 2008-05-27
Posts: 500+

Re: Squeak - A step-by-step beginner's tutorial

LS97 wrote:

ScratchReallyROCKS wrote:

Someone should sticky this......

i already asked for this to be stickied, but it hasnt yet  sad

then, ScratchReallyROCKS wrote:

EDIT: Oh, and to help Mac users, where you wrote:

I recommend you also copy the SCRATCH.EXE file....

could you add SCRATCH.APP too? Not that I'm complaining, I just think It would look and work better.

i could add that, but it might confuse windows users too. plus, i'm nt sure about the files and plugins that Mac uses  hmm

LS97, on Mac it is EXACTLY the same as Windows, except Scratch.exe is Scratch.app. If you look carefully in the Browser, you can find Mac code!  big_smile

Summary
Squeak image, changes, and sources files are platform-independent (if that's the right word).

Yay! My first post with LOADS of BBCode!  smile


http://i46.tinypic.com/33df6me.png I'm whizzer0 for all things Minecraft.

Offline

 

#30 2011-02-24 17:47:25

spud2451
Scratcher
Registered: 2010-05-01
Posts: 100+

Re: Squeak - A step-by-step beginner's tutorial

i read the tutorial but i still don't get it could you help me


http://www.xenopages.comze.com/upload/rippleos.gif

Offline

 

#31 2011-03-22 20:05:52

thebuilderdd
Scratcher
Registered: 2008-01-26
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Do you know how to add a custom logo?

Offline

 

#32 2011-03-22 20:07:38

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

See here.


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#33 2011-03-22 20:09:23

thebuilderdd
Scratcher
Registered: 2008-01-26
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

scratcher7_13 wrote:

See here.

I am using the source code, so no.

Offline

 

#34 2011-03-23 15:37:40

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

xt449 wrote:

xt449 wrote:

Is there a way, with the Scratch Skin and all, to only change/embed a new default sprite?

Please help me I am developing....

Yes. Export it and name it "default.sprite" and place in the costumes folder.  smile

Offline

 

#35 2011-03-23 16:04:09

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Maybe you wouldn't mind posting tutorials here when I've fixed the site?


/* No comment */

Offline

 

#36 2011-03-23 16:56:10

thebuilderdd
Scratcher
Registered: 2008-01-26
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Add your own custom blocks? Please?

Offline

 

#37 2011-03-24 04:32:51

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

xt449 wrote:

scimonster wrote:

xt449 wrote:

Please help me I am developing....

Yes. Export it and name it "default.sprite" and place in the costumes folder.  smile

:that only changes it until you remove it.

What do you mean?

Offline

 

#38 2011-03-24 05:26:30

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

This is looking very good! You appear to have forgotten to mention that whenever you set a variable to something new, a period is required at the end of the line. This is very important, you get a syntax error without it so you should make a point of reminding people to include it! In declaring variables, I would add something along the lines of "arguments (spaces on the block that users can change (e.g. type in)) automatically declare variables to themselves so that if you have a block with three arguments the variables t1, t2 and t3 will already have been created.". You could also point out that variables can be declared made up of any string without spaces in it so that variables can be more conveniently named and I think that spaces before the first and after the last variables you declare are not necessary so you should be able to do |t1 t2 t3| rather than | t1 t2 t3 |

I may have just grasped completely the wrong end of the stick as my smalltalk knowledge is limited to coding blocks so the syntax elsewhere may be different.


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#39 2011-03-24 05:29:10

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

sparks wrote:

This is looking very good! You appear to have forgotten to mention that whenever you set a variable to something new, a period is required at the end of the line. This is very important, you get a syntax error without it so you should make a point of reminding people to include it! In declaring variables, I would add something along the lines of "arguments (spaces on the block that users can change (e.g. type in)) automatically declare variables to themselves so that if you have a block with three arguments the variables t1, t2 and t3 will already have been created.". You could also point out that variables can be declared made up of any string without spaces in it so that variables can be more conveniently named and I think that spaces before the first and after the last variables you declare are not necessary so you should be able to do |t1 t2 t3| rather than | t1 t2 t3 |

I may have just grasped completely the wrong end of the stick as my smalltalk knowledge is limited to coding blocks so the syntax elsewhere may be different.

About the defining variables, I think not using spaces just adds them.

Offline

 

#40 2011-03-24 05:32:05

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

I'm thinking it might be a cool idea to allow users to contribute sections to this guide. You could then make the first post the home post with links to chapters and if you think that a submitted piece of work is correct you can link it up to the home post or ask for changes to be made or just ignore it! I think Wikifying this thread to an extent so that viewers can ask to make a change to a post or add a post might be just what this place needs! There are a lot of squeak tutorials around - bringing them together into one concise dictionary of helpful instructions would benifit everyone!


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#41 2011-03-24 05:39:43

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

sparks wrote:

I'm thinking it might be a cool idea to allow users to contribute sections to this guide. You could then make the first post the home post with links to chapters and if you think that a submitted piece of work is correct you can link it up to the home post or ask for changes to be made or just ignore it! I think Wikifying this thread to an extent so that viewers can ask to make a change to a post or add a post might be just what this place needs! There are a lot of squeak tutorials around - bringing them together into one concise dictionary of helpful instructions would benifit everyone!

Why not make a real wiki?  big_smile

Offline

 

#42 2011-03-24 05:41:58

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

I was just thinking that! And the I though Oh god no, not another thing I'm working on! No, honestly though, A scratch smalltalk wiki might be a nice idea! The block library could even be a subdivision!


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#43 2011-03-24 05:42:58

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Then again, could it be made part of the actually scratch wiki?


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#44 2011-03-24 05:50:03

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Let me check...
I'll get back to you later, when I get a reply from a wiki admin.
Here. (You should give your views.)

Last edited by scimonster (2011-03-24 05:58:55)

Offline

 

#45 2011-03-24 05:58:30

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Sounds good. I don't appear to be able to log in to Scratch Wiki... I created an account to make the Panther page, but I can't seem to get in or email a new password.


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#46 2011-03-24 05:59:57

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

You can't? You have a page.  hmm  Try with your regular password.

Offline

 

#47 2011-03-24 06:01:23

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

I've tried every password I've ever used...


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#48 2011-03-24 06:04:22

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Wouldn't it be saved to your computer?

Offline

 

#49 2011-03-24 06:07:21

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Changed computers since I made the account...


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#50 2011-03-24 06:08:57

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Squeak - A step-by-step beginner's tutorial

Too bad. Hey, if the Library might be allowed a page, would it be allowed an account?

Offline

 

Board footer