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

#1451 2011-05-26 15:42:43

integrated
Scratcher
Registered: 2009-08-13
Posts: 5

Re: Cool custom blocks in Scratch

It doesn't work for me!!!!!!!!!

I can easily go up to opening "scriptablescratchmorph",but i can't find "click onto class"
hmm


You have just wasted time reading this  big_smile

Offline

 

#1452 2011-05-26 15:49:52

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

Re: Cool custom blocks in Scratch

integrated wrote:

It doesn't work for me!!!!!!!!!

I can easily go up to opening "scriptablescratchmorph",but i can't find "click onto class"
hmm

Just click the button that says 'class'.


♫ 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

 

#1453 2011-05-27 07:53:14

rdococ
Scratcher
Registered: 2009-10-11
Posts: 1000+

Re: Cool custom blocks in Scratch

bbbeb wrote:

Maybe this would work for the bounce block:

Code:

bounce
|t1|
t1_ self rotationDegrees.

self rotationDegrees: t2 * 2

I just tried that from the back of my head, i don't know if it works.

A nice version using 2 variables and works in any direction is:

Code:

bounceOff
    | t1 t2 |
    t1 _ self xPos.
    t2 _ self yPos.
    self forward: 700.
    self bounceOffEdge.
    self gotoX: t1 y: t2

Pasted from Catch! 1.2 beta's Squeak code.
EDIT: Doesn't work.

Last edited by rdococ (2011-05-27 07:54:26)

Offline

 

#1454 2011-05-27 19:30:02

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

jslomba wrote:

does anyone want to help with my mod MegaMod? I just need more blocks and how to make it so you can download it, etc.

anyoone?!


the the the the the

Offline

 

#1455 2011-05-29 18:03:39

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

3. Go to ScratchViewerMorph's rebuildCategorySelectors method and add (something) to the end of the small array definition (which looks like this:)

catList _ #(
        motion        control
        looks                sensing
        sound        operators
        pen            variables
        (something)).

where is rebuildCategorySelectors?


the the the the the

Offline

 

#1456 2011-05-29 18:25:49

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Cool custom blocks in Scratch

jslomba wrote:

3. Go to ScratchViewerMorph's rebuildCategorySelectors method and add (something) to the end of the small array definition (which looks like this:)

catList _ #(
        motion        control
        looks                sensing
        sound        operators
        pen            variables
        (something)).

where is rebuildCategorySelectors?

Scratch-UI-Panes >  ScratchViewerMorph

wink

Last edited by ProgrammingFreak (2011-05-29 18:32:59)

Offline

 

#1457 2011-05-29 19:37:10

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

ProgrammingFreak wrote:

jslomba wrote:

3. Go to ScratchViewerMorph's rebuildCategorySelectors method and add (something) to the end of the small array definition (which looks like this:)

where is rebuildCategorySelectors?

Scratch-UI-Panes >  ScratchViewerMorph

wink

oh, thanks.


the the the the the

Offline

 

#1458 2011-05-29 19:39:30

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Cool custom blocks in Scratch

jslomba wrote:

ProgrammingFreak wrote:

jslomba wrote:


where is rebuildCategorySelectors?

Scratch-UI-Panes >  ScratchViewerMorph

wink

oh, thanks.

No problem.  big_smile

Offline

 

#1459 2011-05-31 16:52:14

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

anyone want to help with my mod? LS97? ProgrammingFreak? ANYONE?! the forum thread is
here


the the the the the

Offline

 

#1460 2011-05-31 22:22:49

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

bump


the the the the the

Offline

 

#1461 2011-06-05 09:07:42

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Cool custom blocks in Scratch

bumpity


the the the the the

Offline

 

#1462 2011-06-05 09:35:00

integrated
Scratcher
Registered: 2009-08-13
Posts: 5

Re: Cool custom blocks in Scratch

scratcher7_13 wrote:

integrated wrote:

It doesn't work for me!!!!!!!!!

I can easily go up to opening "scriptablescratchmorph",but i can't find "click onto class"
hmm

Just click the button that says 'class'.

THANK YOU!  big_smile


You have just wasted time reading this  big_smile

Offline

 

#1463 2011-06-05 17:02:49

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

Um, I tried this but i got a bit stuck. I'm trying to get the URL block to work, and I have to problems. I want to replace the [blocks]<when I receive[ [/blocks] with something, but I don't know what I need to put. Also, my thing (I'm clicking the save for end-user) just quits when I try to save.Why?! Any help is much needed.


http://goo.gl/RDqKF

Offline

 

#1464 2011-06-06 04:18:56

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

Re: Cool custom blocks in Scratch

Save image for end-user is supposed to close it.

Offline

 

#1465 2011-06-06 08:07:47

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

oh whoops  hmm  well, how do you save it then?


http://goo.gl/RDqKF

Offline

 

#1466 2011-06-06 08:10:31

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

Re: Cool custom blocks in Scratch

Save image for end-user saves your changes to Scratch.image, so that they will be there next time you open Scratch.

Offline

 

#1467 2011-06-06 08:17:33

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

Right, I think I get that, but how do you actually save your changes?


http://goo.gl/RDqKF

Offline

 

#1468 2011-06-06 08:27:01

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

Re: Cool custom blocks in Scratch

TuragaTreeko wrote:

Right, I think I get that, but how do you actually save your changes?

In the System Browser?

Offline

 

#1469 2011-06-06 09:58:24

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

yeah, in the browser. I always try to go to the ops but it says changes have not been saved is it okay to discard changes. Thank you for any and all help.


http://goo.gl/RDqKF

Offline

 

#1470 2011-06-06 10:00:27

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

Re: Cool custom blocks in Scratch

TuragaTreeko wrote:

yeah, in the browser. I always try to go to the ops but it says changes have not been saved is it okay to discard changes. Thank you for any and all help.

Right-click and choose accept.  wink

Offline

 

#1471 2011-06-06 10:04:47

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

really. really. wow. how did I not get that!? i feel like a moron...


http://goo.gl/RDqKF

Offline

 

#1472 2011-06-06 10:06:57

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

Re: Cool custom blocks in Scratch

TuragaTreeko wrote:

really. really. wow. how did I not get that!? i feel like a moron...

It's OK, some people have a hard time with it. As long as you got it eventually, that's OK.  smile

Offline

 

#1473 2011-06-06 12:06:55

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

[block]<when green flag clicked>[/block]

I would like to thank all of the master scratchers here for helping me out. it is much appreciated.


http://goo.gl/RDqKF

Offline

 

#1474 2011-06-06 12:25:50

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

Re: Cool custom blocks in Scratch

You're very welcome.  big_smile

Offline

 

#1475 2011-06-06 12:44:35

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: Cool custom blocks in Scratch

any chance any one could help me with the other question i posted?   the one with the [block]<when I receive[ <when I receive[ [/block]? thanx.


http://goo.gl/RDqKF

Offline

 

Board footer