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

#1 2008-08-23 12:30:41

registeel
Scratcher
Registered: 2008-04-27
Posts: 500+

1.3 Beta

people say they have the scratch 1.3 beta... but where can you find it?

Offline

 

#2 2008-08-23 12:37:00

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

Re: 1.3 Beta

[edited out by Scratch Team until official version is released]

Offline

 

#3 2008-08-23 12:46:57

registeel
Scratcher
Registered: 2008-04-27
Posts: 500+

Offline

 

#4 2008-08-23 13:03:44

dingdong
Scratcher
Registered: 2007-08-09
Posts: 1000+

Re: 1.3 Beta

hmmppphh this only annoys me more, did they listen to us at all!!!! we asked fro what definitely was too many blocks, but could they at least used 1!!! instead they made lists! which already existed and widely known! why is scratch spiraling downwards!! > sad


http://img851.imageshack.us/img851/2829/superanbanner.png
click the image for my music

Offline

 

#5 2008-08-23 13:06:28

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

Re: 1.3 Beta

I just have one question: What do lists do?

Offline

 

#6 2008-08-23 13:07:30

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

Re: 1.3 Beta

Lists didn't exist in the previous version.


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

 

#7 2008-08-23 13:17:36

dingdong
Scratcher
Registered: 2007-08-09
Posts: 1000+

Re: 1.3 Beta

archmage wrote:

Lists didn't exist in the previous version.

smart one! don't even remember jens project! it was for scratch hackers thing!


http://img851.imageshack.us/img851/2829/superanbanner.png
click the image for my music

Offline

 

#8 2008-08-23 13:30:29

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

Re: 1.3 Beta

dingdong wrote:

archmage wrote:

Lists didn't exist in the previous version.

smart one! don't even remember jens project! it was for scratch hackers thing!

That doesn't count because that wasent official and you couldent upload projects. Lists will be very useful, smart programmers will be able to do many new things.


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

 

#9 2008-08-23 13:31:44

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

Re: 1.3 Beta

I just dont understand the meaning of lists.How does it work?

Offline

 

#10 2008-08-23 13:34:31

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

Re: 1.3 Beta

keroro645 wrote:

I just dont understand the meaning of lists.How does it work?

Lists are just groups of variables.


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

 

#11 2008-08-23 13:35:28

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

Re: 1.3 Beta

I guess ill under stand better when sample projects come out with 1.3

Offline

 

#12 2008-08-23 13:59:25

fullmoon
Retired Community Moderator
Registered: 2007-06-04
Posts: 1000+

Re: 1.3 Beta

A list is a variable that can hold more than one value at a time. To use lists, you specify the value you want to store in the list and which index (or slot, or position) you want to store it in. So it's basically a way to store a lot of data without creating a lot of variables. An example:

//Records what you draw with the pen tool then draws it back

When Flag Clicked:
Delete all of xpos
Delete all of ypos 
Clear
Repeat Until (key [space] pressed?){
  go to [mouse pointer]
  If (mouse down?)
     add (mouse x) to xpos
     add (mouse y) to ypos
     pen down
  Else
    pen up
}
Clear
Pen up
Go To X:(xpos at 1) Y: (xpos at 1)
Pen down
Step=2
Repeat ((length of xpos)-1){
  //With lists, you must specify which index to get data from. We do this with the
  //variable "step", which will increase by 1
  Go To X:(xpos at (step)) Y: (ypos at (step))
}

The Scratch team asked us not to discuss the beta on the forums, so I'm sorry, but I flagged this post (muhahahaha!).


http://i302.photobucket.com/albums/nn100/fullmoon32/wow.jpg

Offline

 

#13 2008-08-23 14:01:33

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

Re: 1.3 Beta

I get it now.ok cool

Offline

 

#14 2008-08-23 14:49:54

SonicPops
Scratcher
Registered: 2007-06-10
Posts: 100+

Re: 1.3 Beta

I flagged it too  smile


smile  Go Crank. Inc!  smile
Not much to say  wink

Offline

 

#15 2008-08-23 14:59:35

Bobby500
Scratcher
Registered: 2008-04-19
Posts: 1000+

Re: 1.3 Beta

keroro645 wrote:

[edited out by Scratch Team until official version is released]

Whats with the cloak and dagger?  tongue

Offline

 

#16 2008-08-23 15:05:14

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

Re: 1.3 Beta

Bobby500 wrote:

keroro645 wrote:

[edited out by Scratch Team until official version is released]

Whats with the cloak and dagger?  tongue

huh?

Offline

 

#17 2008-08-23 15:06:33

hmnwilson
Scratcher
Registered: 2007-07-04
Posts: 1000+

Re: 1.3 Beta

dingdong wrote:

hmmppphh this only annoys me more, did they listen to us at all!!!! we asked fro what definitely was too many blocks, but could they at least used 1!!! instead they made lists! which already existed and widely known! why is scratch spiraling downwards!! > sad

I agree. What was the point of making the topic a sticky that many people posted their ideas in and then none of them were even used? I hope they at least put some in the full version...

The lists weren't in the last version (unless yuo meant on other programming languages). I can't wait for the full version. I've thought of at least 5 different ways I could use them. Only 1 thing... I wish lists could be shown/hidden using blocks, just like variables *will* be.

...and hopefully the auto-compression when saving glitch will be fixed, as well.

Last edited by hmnwilson (2008-08-23 15:15:32)


I'm taking a break from Scratch until 2.0 comes out. Any messages sent between then and now probably won't be read - sorry.
(Oct. 20, 2011)

Offline

 

Board footer