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

#1001 2010-12-27 18:45:25

zorket
Scratcher
Registered: 2010-05-25
Posts: 500+

Re: Welcome to the OLD local block library!

sparks wrote:

Opening the system browser in Scratch:

hold down the "Shift" (key with upward arrow on it by the ctrl key) key and then click in the hole in the "R" in the Scratch logo. A menu will open. Choose "Exit fullscreen". a white space will appear around the Scratch project. click on it and select "open" and then "browser" from the menu to open the green browser window.

Hey. sparks! I wanted to post the 1000th post, with a lot of exitement!


Marzipan11 must learn to not spoil

Offline

 

#1002 2010-12-27 19:13:26

SSBBM
Scratcher
Registered: 2009-10-09
Posts: 100+

Re: Welcome to the OLD local block library!

zorket wrote:

Hey. sparks! I wanted to post the 1000th post, with a lot of exitement!

Wow!!! 1000 posts. Is this a recored?


http://goo.gl/zVfAp http://goo.gl/laci8

Offline

 

#1003 2010-12-27 19:47:53

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

IDK. Scratch should have a place that it tells the records.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1004 2010-12-27 21:28:17

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

Bump!

Last edited by Pecola1 (2010-12-27 21:29:00)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1005 2010-12-28 03:52:32

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

Re: Welcome to the OLD local block library!

naw, it's not the record. I think the Panther development thread is the biggest post on the fora (at least this section)

156 pages
3882 posts.

on the Panther forum:

theSucessor wrote:

Roughly 11.3% of all posts in Advanced Topics are in here.

I just recalculated it.

36836 posts in advanced topics
____________________________   *100  =    10.5% of all posts are in Panther thread.

3882 posts in Panther thread

Looks like it's gone down  hmm

36836 posts in advanced topics
____________________________   *100  =    2.7% of all posts are in Panther thread.

1005 posts in library thread

Last edited by sparks (2010-12-28 04:09:25)


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

Offline

 

#1006 2010-12-28 05:53:04

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Welcome to the OLD local block library!

hmm   intersting calculation, sparks


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#1007 2010-12-28 06:37:54

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

Re: Welcome to the OLD local block library!

Why the "  hmm  " ? Did I get them wrong?


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

Offline

 

#1008 2010-12-28 08:33:44

hello12345678910
Scratcher
Registered: 2009-07-11
Posts: 100+

Re: Welcome to the OLD local block library!

sparks wrote:

Opening the system browser in Scratch:

hold down the "Shift" (key with upward arrow on it by the ctrl key) key and then click in the hole in the "R" in the Scratch logo. A menu will open. Choose "Exit fullscreen". a white space will appear around the Scratch project. click on it and select "open" and then "browser" from the menu to open the green browser window.

Is this in the Library?  'cause it's a good explaination of the Shift-Click-R method.


http://tinyurl.com/8yt32o9 http://tinyurl.com/6tgwp5r || Fish = F+I+S+H = 6+9+19+8 = 42<<The answer to Life, the Universe and Everything

Offline

 

#1009 2010-12-28 08:57:56

hello12345678910
Scratcher
Registered: 2009-07-11
Posts: 100+

Re: Welcome to the OLD local block library!

Ok,This is going to be a LONG post....

http://googleonlinestorage.com/thumb.php?id=2296b3b4066aa7edc0fa2e31575be497

These blocks (it's really only two blocks, i just changed the selectors) need their own input methods (if thats what you call them). so..

Go to scratchblocks-commandblockmorph-all-uncoleredargmorphfor:
and add the strip:

Code:

$Y = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #evaluators;
         choice: '='].
    $P = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #evaluators2;
         choice: 'and'].

go to scratchobjects-scriptablescratchmorph-blockspecs-blockspecs- and add

Code:

('%s %Y %s' #b #all:op:s: '' '=' '')('%b %P %b' #b #evaluate:with:to:)

under 'Operators'

Move over to Instance and Go to sensing. add

Code:

evaluate: t1 with: t2 to: t3 
    t2 = 'and'
        ifTrue: 
            [t1
                ifTrue: 
                    [t3 ifTrue: [^ true].
                    ^ false].
            ^ false].
    t2 = 'or'
        ifTrue: 
            [t1 ifTrue: [^ true].
            t3 ifTrue: [^ true]].
    t2 = 'xor'
        ifTrue: 
            [t1
                ifTrue: [t3 ifFalse: [^ true]].
            t3
                ifTrue: [t1 ifFalse: [^ true]]].
    ^ false

Press alt+s (command+s on a Macintosh) and type your initials if a box comes up. do the same for this:

Code:

all: t1 op: t2 s: t3 
    t2 = '=' ifTrue: [^ t1 = t3].
    t2 = '<' ifTrue: [^ t1 < t3].
    t2 = '>' ifTrue: [^ t1 > t3].
    ^ false

And this:

Code:

evaluators2
    ^ #('and' 'or' 'xor' )

And this:

Code:

evaluators
    ^ #('=' '<' '>' )

and that creates the http://googleonlinestorage.com/thumb.php?id=2296b3b4066aa7edc0fa2e31575be497 blocks.
They are designed to replace the blocks in which they perform.

P.S. Zorket gets created for inspiration!! (the http://img210.imageshack.us/img210/236/96866724.gif Block)

Last edited by hello12345678910 (2010-12-28 09:16:44)


http://tinyurl.com/8yt32o9 http://tinyurl.com/6tgwp5r || Fish = F+I+S+H = 6+9+19+8 = 42<<The answer to Life, the Universe and Everything

Offline

 

#1010 2010-12-28 10:22:17

kieru01
New Scratcher
Registered: 2010-12-06
Posts: 5

Re: Welcome to the OLD local block library!

thanks again  smile

Offline

 

#1011 2010-12-28 10:48:14

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

Re: Welcome to the OLD local block library!

No problem Kieru, all the best to your time in the Scratch community  smile


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

Offline

 

#1012 2010-12-28 11:51:24

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

sparks wrote:

Why the "  hmm  " ? Did I get them wrong?

No I think he is disappointed that this isn't the longest.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1013 2010-12-28 11:52:32

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

hello12345678910 wrote:

Ok,This is going to be a LONG post....

http://googleonlinestorage.com/thumb.ph … 31575be497

These blocks (it's really only two blocks, i just changed the selectors) need their own input methods (if thats what you call them). so..

Go to scratchblocks-commandblockmorph-all-uncoleredargmorphfor:
and add the strip:

Code:

$Y = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #evaluators;
         choice: '='].
    $P = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #evaluators2;
         choice: 'and'].

go to scratchobjects-scriptablescratchmorph-blockspecs-blockspecs- and add

Code:

('%s %Y %s' #b #all:op:s: '' '=' '')('%b %P %b' #b #evaluate:with:to:)

under 'Operators'

Move over to Instance and Go to sensing. add

Code:

evaluate: t1 with: t2 to: t3 
    t2 = 'and'
        ifTrue: 
            [t1
                ifTrue: 
                    [t3 ifTrue: [^ true].
                    ^ false].
            ^ false].
    t2 = 'or'
        ifTrue: 
            [t1 ifTrue: [^ true].
            t3 ifTrue: [^ true]].
    t2 = 'xor'
        ifTrue: 
            [t1
                ifTrue: [t3 ifFalse: [^ true]].
            t3
                ifTrue: [t1 ifFalse: [^ true]]].
    ^ false

Press alt+s (command+s on a Macintosh) and type your initials if a box comes up. do the same for this:

Code:

all: t1 op: t2 s: t3 
    t2 = '=' ifTrue: [^ t1 = t3].
    t2 = '<' ifTrue: [^ t1 < t3].
    t2 = '>' ifTrue: [^ t1 > t3].
    ^ false

And this:

Code:

evaluators2
    ^ #('and' 'or' 'xor' )

And this:

Code:

evaluators
    ^ #('=' '<' '>' )

and that creates the http://googleonlinestorage.com/thumb.ph … 31575be497 blocks.
They are designed to replace the blocks in which they perform.

P.S. Zorket gets created for inspiration!! (the http://img210.imageshack.us/img210/236/96866724.gif Block)

What is the xor? I forget.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1014 2010-12-28 12:06:01

rubiks_cube_guy238
Scratcher
Registered: 2009-07-02
Posts: 100+

Re: Welcome to the OLD local block library!

Xor outputs true if the two boolean inputs are not equal.

Last edited by rubiks_cube_guy238 (2010-12-28 12:06:18)


The glass is never half full nor half empty; it is twice as large as it needs to be.

Offline

 

#1015 2010-12-28 16:48:41

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

Ohhh.... I knew that (not)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1016 2010-12-29 18:53:19

zorket
Scratcher
Registered: 2010-05-25
Posts: 500+

Re: Welcome to the OLD local block library!

An error sensed in the <[true] as boolean> block by Pecola1. The REAL  blockspec:

('%s as boolean' #b #stringAsBoolean:)

The wrong one:

('%s as boolean' #b #stringAsBoolean)


Marzipan11 must learn to not spoil

Offline

 

#1017 2010-12-29 19:48:11

SSBBM
Scratcher
Registered: 2009-10-09
Posts: 100+

Re: Welcome to the OLD local block library!

New block:
http://img697.imageshack.us/img697/6007/listtotext.gif

Better version of Pecola1's block:

http://img89.imageshack.us/img89/5564/ascii.gif
I've sent meowmeow55 this block a while a go.

And these two blocks can be combined to make Pecola1's version.  smile


http://goo.gl/zVfAp http://goo.gl/laci8

Offline

 

#1018 2010-12-30 01:17:41

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

Re: Welcome to the OLD local block library!

SSBBM wrote:

New block:
http://img697.imageshack.us/img697/6007/listtotext.gif

Better version of Pecola1's block:

http://img89.imageshack.us/img89/5564/ascii.gif
I've sent meowmeow55 this block a while a go.

And these two blocks can be combined to make Pecola1's version.  smile

what's the code?

and you know Pecola1 wont see those cause there from imageshack

Offline

 

#1019 2010-12-30 13:02:26

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

Re: Welcome to the OLD local block library!

Click on the block image to see the code if it's a BYOB block, scimonster.


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

Offline

 

#1020 2010-12-30 13:16:27

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

Re: Welcome to the OLD local block library!

sparks wrote:

Click on the block image to see the code if it's a BYOB block, scimonster.

oh. of course.

Offline

 

#1021 2010-12-30 13:37:31

SSBBM
Scratcher
Registered: 2009-10-09
Posts: 100+

Re: Welcome to the OLD local block library!

scimonster wrote:

...and you know Pecola1 wont see those cause there from imageshack

Oh ya, man that's frustrating. What sites can you see, Pecola1?


http://goo.gl/zVfAp http://goo.gl/laci8

Offline

 

#1022 2010-12-30 13:45:54

jackrulez
Scratcher
Registered: 2009-08-01
Posts: 1000+

Re: Welcome to the OLD local block library!

SSBBM wrote:

zorket wrote:

Hey. sparks! I wanted to post the 1000th post, with a lot of exitement!

Wow!!! 1000 posts. Is this a recored?

No, there are people who have over 9000 (and no, that's not a meme reference).


Yawn, another boring text signature. I should really make something better.

Offline

 

#1023 2010-12-30 14:27:05

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

Re: Welcome to the OLD local block library!

jackrulez wrote:

SSBBM wrote:

zorket wrote:

Hey. sparks! I wanted to post the 1000th post, with a lot of exitement!

Wow!!! 1000 posts. Is this a recored?

No, there are people who have over 9000 (and no, that's not a meme reference).

He's referring to the posts in this thread, not to individual posts of a user.


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

Offline

 

#1024 2010-12-30 18:51:29

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Welcome to the OLD local block library!

SSBBM wrote:

scimonster wrote:

...and you know Pecola1 wont see those cause there from imageshack

Oh ya, man that's frustrating. What sites can you see, Pecola1?

Weebly. Google images. lemme check for more... I looked a while and found out I can't find any but i know there are other websites i have been to that allow me to see the pics. BTW scimonster, thats kinda freaky how you know that about me and remembered, I guess I did have to mention it a thousand times to tell everyone (exaggeration) LOL XD  lol  (shouldnt there be a smiley for XD?)

Last edited by Pecola1 (2010-12-31 15:30:01)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#1025 2010-12-30 23:09:55

SSBBM
Scratcher
Registered: 2009-10-09
Posts: 100+

Re: Welcome to the OLD local block library!

Pecola1 wrote:

Weebly. Google images...

Weebly you have to sign up for and google I don't know to add (yes, I know it pulls stuff other websites).

Another list block:
http://img190.imageshack.us/img190/7774/highestitemin.gif
The 'highest item in [list]' will report the item containing the highest number.
And I know this one is in image shack.


http://goo.gl/zVfAp http://goo.gl/laci8

Offline

 

Board footer