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

#2026 2011-09-11 16:00:38

tpaley
Scratcher
Registered: 2011-05-22
Posts: 100+

Re: ITopic: Welcome to your local block library!

here:
[img"]http://i51.tinypic.com/245dco8.gif[/"img]

[IMG"]http://i53.tinypic.com/5zno7l.jpg[/"IMG]

(the quotation marks are because it won't let me post it.)

~tpaley


http://i49.tinypic.com/2z82h3d.gif

Offline

 

#2027 2011-09-11 18:18:17

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: ITopic: Welcome to your local block library!

tpaley wrote:

here:
http://i51.tinypic.com/245dco8.gif

http://i53.tinypic.com/5zno7l.jpg

(the quotation marks are because it won't let me post it.)

~tpaley

OK, I quoted and took out the quotes so now everyone can see the images through my post.  That should work.   smile

Offline

 

#2028 2011-09-11 18:28:56

Nuparu11
New Scratcher
Registered: 2011-09-11
Posts: 6

Re: ITopic: Welcome to your local block library!

tpaley wrote:

here:
[img"]http://i51.tinypic.com/245dco8.gif[/"img]

[IMG"]http://i53.tinypic.com/5zno7l.jpg[/"IMG]

(the quotation marks are because it won't let me post it.)

~tpaley

1. I'm confused as to the first one. What does it do, exactly?

2. Recursion... well, that's nice.

Offline

 

#2029 2011-09-11 18:54:08

tpaley
Scratcher
Registered: 2011-05-22
Posts: 100+

Re: ITopic: Welcome to your local block library!

the first one can make a string of blocks that will play in order.
It's the create your own block button but without needing to press the button.
you put 1 block in each space (infinite spaces) and it will run so you won't need to click edit to see the blocks used to make the code.
Basically just a "create your own block" block.

Does that make sense?


http://i49.tinypic.com/2z82h3d.gif

Offline

 

#2030 2011-09-11 19:01:10

Nuparu11
New Scratcher
Registered: 2011-09-11
Posts: 6

Re: ITopic: Welcome to your local block library!

tpaley wrote:

the first one can make a string of blocks that will play in order.
It's the create your own block button but without needing to press the button.
you put 1 block in each space (infinite spaces) and it will run so you won't need to click edit to see the blocks used to make the code.
Basically just a "create your own block" block.

Does that make sense?

Ah okay!
Thanks!

Offline

 

#2031 2011-09-12 12:00:16

frowned
Scratcher
Registered: 2010-11-02
Posts: 42

Re: ITopic: Welcome to your local block library!

I have a whole list of bitwise operations to add:
AND

Code:

and: bin n: n
      ^ bin bitAnd: n

OR

Code:

or: bin n: n
      ^ bin bitOr: n

XOR

Code:

xor: bin n: n
      ^ bin bitXor: n

< <

Code:

shiftleft: bin n: n
      ^ bin bitShift: n

> >

Code:

shiftright: bin n: n
      ^ bin bitShift: (n negated)

results:
http://dl.dropbox.com/u/20328726/binops.bmp

Offline

 

#2032 2011-09-12 12:14:57

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: ITopic: Welcome to your local block library!

tpaley wrote:

the first one can make a string of blocks that will play in order.
It's the create your own block button but without needing to press the button.
you put 1 block in each space (infinite spaces) and it will run so you won't need to click edit to see the blocks used to make the code.
Basically just a "create your own block" block.

Does that make sense?

do you know this option:
http://dl.dropbox.com/u/38975042/something.gif?

Last edited by roijac (2011-09-12 12:23:18)

Offline

 

#2033 2011-09-12 12:40:03

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

Re: ITopic: Welcome to your local block library!

frowned, what do those do?

Offline

 

#2034 2011-09-12 12:50:17

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: ITopic: Welcome to your local block library!

scimonster wrote:

frowned, what do those do?

these are bitwise operations

Offline

 

#2035 2011-09-12 13:29:22

joefarebrother
Scratcher
Registered: 2011-04-08
Posts: 1000+

Re: ITopic: Welcome to your local block library!

http://i55.tinypic.com/2zpr3tk.gif
I know it dosn't look like EXACTLY what you want, but that is actually impossible. Here are the scripts:
http://i53.tinypic.com/t4z610.gif


My latest project is called http://tinyurl.com/d2m8hne! It has http://tinyurl.com/d395ygk views, http://tinyurl.com/cnasmt7 love-its, and http://tinyurl.com/bwjy8xs comments.
http://tinyurl.com/756anbk   http://tinyurl.com/iplaychess

Offline

 

#2036 2011-09-12 16:29:50

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

Re: ITopic: Welcome to your local block library!

joefarebrother wrote:

http://i55.tinypic.com/2zpr3tk.gif
I know it dosn't look like EXACTLY what you want, but that is actually impossible. Here are the scripts:
http://i53.tinypic.com/t4z610.gif

Yeah that is kinda close and a lot easier then the alternative. Although are you sure it's  impossible to convert a script into a list of all the blocks? I would think that of all the awesome things BYOB can do that would be one of them.


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

Offline

 

#2037 2011-09-12 19:40:20

tpaley
Scratcher
Registered: 2011-05-22
Posts: 100+

Re: ITopic: Welcome to your local block library!

roijac wrote:

tpaley wrote:

the first one can make a string of blocks that will play in order.
It's the create your own block button but without needing to press the button.
you put 1 block in each space (infinite spaces) and it will run so you won't need to click edit to see the blocks used to make the code.
Basically just a "create your own block" block.

Does that make sense?

do you know this option:
http://dl.dropbox.com/u/38975042/something.gif?

no


http://i49.tinypic.com/2z82h3d.gif

Offline

 

#2038 2011-09-12 19:50:32

tpaley
Scratcher
Registered: 2011-05-22
Posts: 100+

Re: ITopic: Welcome to your local block library!

SSBBM wrote:

joefarebrother wrote:

http://i55.tinypic.com/2zpr3tk.gif
I know it dosn't look like EXACTLY what you want, but that is actually impossible. Here are the scripts:
http://i53.tinypic.com/t4z610.gif

Yeah that is kinda close and a lot easier then the alternative. Although are you sure it's  impossible to convert a script into a list of all the blocks? I would think that of all the awesome things BYOB can do that would be one of them.

uh...
no I don't.

this is an example what the block should look like:

http://i52.tinypic.com/vnkwgl.gif

that is useful though.

The problem is that you can't un-pause.

Last edited by tpaley (2011-10-17 19:21:36)


http://i49.tinypic.com/2z82h3d.gif

Offline

 

#2039 2011-09-13 04:35:26

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

Re: ITopic: Welcome to your local block library!

It's quite a poser... You could post the problem on the BYOB thread and see if Jens or bharvey have any suggestions?


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

Offline

 

#2040 2011-09-13 07:18:50

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

Re: ITopic: Welcome to your local block library!

How do you guys like the statistics post? Click for awesome new formatting ;D

Offline

 

#2041 2011-09-13 11:39:15

joefarebrother
Scratcher
Registered: 2011-04-08
Posts: 1000+

Re: ITopic: Welcome to your local block library!

SSBBM wrote:

joefarebrother wrote:

http://i55.tinypic.com/2zpr3tk.gif
I know it dosn't look like EXACTLY what you want, but that is actually impossible. Here are the scripts:
http://i53.tinypic.com/t4z610.gif

Yeah that is kinda close and a lot easier then the alternative. Although are you sure it's  impossible to convert a script into a list of all the blocks? I would think that of all the awesome things BYOB can do that would be one of them.

no you definitly can't convert scripts to lists, or freeze launched scripts. You could say somthing about it in the byob discussion thread.


My latest project is called http://tinyurl.com/d2m8hne! It has http://tinyurl.com/d395ygk views, http://tinyurl.com/cnasmt7 love-its, and http://tinyurl.com/bwjy8xs comments.
http://tinyurl.com/756anbk   http://tinyurl.com/iplaychess

Offline

 

#2042 2011-09-13 15:53:38

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

Re: ITopic: Welcome to your local block library!

Nice statistics page, Sci  big_smile


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

Offline

 

#2043 2011-09-14 03:27:43

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

Re: ITopic: Welcome to your local block library!

sparks wrote:

Nice statistics page, Sci  big_smile

Thanks!  big_smile

Offline

 

#2044 2011-09-14 14:10:15

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

Re: ITopic: Welcome to your local block library!

joefarebrother wrote:

http://i55.tinypic.com/2zpr3tk.gif
I know it dosn't look like EXACTLY what you want, but that is actually impossible. Here are the scripts:
http://i53.tinypic.com/t4z610.gif

This is what i've used, just I used it on Scratch, only thing is it is very confusing using scratch and it uses a long script. Thanks for the awesome script!  big_smile  (ive been using  big_smile  a lot today)


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

 

#2045 2011-09-14 14:15:22

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

Re: ITopic: Welcome to your local block library!

Hmmmm... I've noticed that I am still listed as top block contributor... I thought someone already got higher than me? During summer when I was on vacation?


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

 

#2046 2011-09-14 14:41:05

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

Re: ITopic: Welcome to your local block library!

Pecola1 wrote:

Hmmmm... I've noticed that I am still listed as top block contributor... I thought someone already got higher than me? During summer when I was on vacation?

Is HM123's count above yours? If not, finish adding all the blocks since the post after the most recent update.  tongue  It's a race between you, Hardmath123, and Greenatic! XD

Offline

 

#2047 2011-09-14 17:55:36

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: ITopic: Welcome to your local block library!

scimonster wrote:

Pecola1 wrote:

Hmmmm... I've noticed that I am still listed as top block contributor... I thought someone already got higher than me? During summer when I was on vacation?

Is HM123's count above yours? If not, finish adding all the blocks since the post after the most recent update.  tongue  It's a race between you, Hardmath123, and Greenatic! XD

Actually, if you would just do an update, I think I'm currently on top.   tongue   I could be wrong though, but there's one way to find out!   wink

Offline

 

#2048 2011-09-15 11:03:54

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

Re: ITopic: Welcome to your local block library!

Maybe Sunday I'll do another. You're in the 30s now though. ;D

Offline

 

#2049 2011-09-15 13:58:42

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

Re: ITopic: Welcome to your local block library!

I'm sorry, but I'm going to have to resign from being a librarian. I don't have the time anymore to help out.  sad

Good luck with this amazing library.


/* No comment */

Offline

 

#2050 2011-09-15 14:06:28

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

Re: ITopic: Welcome to your local block library!

Sorry to hear that, successor! You've been a great help  smile  I don't suppose you can finish the blocks-as-images thing for the library when you have a moment so they render arguments?


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

Offline

 

Board footer