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

#1 2011-01-15 23:18:34

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

new morph?

I was hacking scratch(holding shift and clicking the r off-line  wink  ). I didn't get very far,only up until the world window when something caught my eye.a button that said New Morph... I clicked it.it took me to a new window that said Add A New Morph...I then clicked From Alphabetical List.it had tons of stuff!a clock!a little paint editor! even Tetris  smile  ! I clicked on a morph that said Bouncing Atoms.soon I realised that if I uploaded the project with Bouncing Atoms in the middle of the screen,I would have instant fame for making a project with no sprite and no script.it didn't work  sad  ,though.my question is,what are those for?the scratch team when they got bored making scratch  hmm  ?


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#2 2011-01-15 23:29:56

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: new morph?

They are Built In Squeak Morphs.

They have Absolutely NOTHING to do with Scratch.


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

#3 2011-01-15 23:44:34

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: new morph?

bbbeb wrote:

They are Built In Squeak Morphs.

They have Absolutely NOTHING to do with Scratch.

but why are they there?did the scratch team think that scratchers would get bored looking at blocks for hours and might want to play Tetris?


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#4 2011-01-16 02:49:40

WeirdF
Scratcher
Registered: 2009-05-31
Posts: 1000+

Re: new morph?

TVflea wrote:

bbbeb wrote:

They are Built In Squeak Morphs.

They have Absolutely NOTHING to do with Scratch.

but why are they there?did the scratch team think that scratchers would get bored looking at blocks for hours and might want to play Tetris?

Well, like bbbeb said, they are not to do with Scratch. Scratch was built on a programming language called Squeak, and all these morphs are just implemented into Squeak, not Scratch.

And yeah, you can't upload a project with a morph in unfortunately...

For more information on morphs, including an explanation of what each morph is, see this Scratch Wiki article: Scratch Morph

Last edited by WeirdF (2011-01-16 02:50:00)


http://i.cr3ation.co.uk/dl/s1/gif/847032b8a331def77529b6a0384db1fe_handfingers.gif

Offline

 

#5 2011-01-16 12:21:57

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: new morph?

WeirdF wrote:

TVflea wrote:

bbbeb wrote:

They are Built In Squeak Morphs.

They have Absolutely NOTHING to do with Scratch.

but why are they there?did the scratch team think that scratchers would get bored looking at blocks for hours and might want to play Tetris?

Well, like bbbeb said, they are not to do with Scratch. Scratch was built on a programming language called Squeak, and all these morphs are just implemented into Squeak, not Scratch.

And yeah, you can't upload a project with a morph in unfortunately...

For more information on morphs, including an explanation of what each morph is, see this Scratch Wiki article: Scratch Morph

so why didn't the scratch team take it of?


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#6 2011-01-16 12:29:51

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

Re: new morph?

they didn't take it off, they never added it. The online projects are played in a java player, which is programmed to turn scratch block scripts into a java player script and play the project. The java player does not know how to play a morph so it skips it and nothing appears  hmm


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

Offline

 

#7 2011-02-02 11:45:27

Jwosty
Scratcher
Registered: 2009-12-19
Posts: 500+

Re: new morph?

sparks wrote:

they didn't take it off, they never added it. The online projects are played in a java player, which is programmed to turn scratch block scripts into a java player script and play the project. The java player does not know how to play a morph so it skips it and nothing appears  hmm

Well, actually, anything in Smalltalk that you can see on the screen is a morph. Even the Sprites are morphs. The reason it doesn't show any morphs that aren't sprites or the stage on the online Java Player is because the uploader only uploads information about the sprites and stage, their sounds, their costumes, and their blocks. The Java Player then translates the blocks into executable Java code.


http://i39.tinypic.com/18ert5.png Google it.  smile

Offline

 

#8 2011-04-01 16:41:11

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

Re: new morph?

Is there a way to create a new morph?


♫ 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

 

#9 2011-04-01 23:10:58

wcfs96
New Scratcher
Registered: 2011-03-10
Posts: 37

Re: new morph?

Morph subclass: #NameOfSubClass "Create a new class with this to inherit Morph"

I suggest looking at the Morph class and looking at tutorials online, you can also inherit other morphs such as PasteUpMorph or StringMorph, etc..   smile

Offline

 

#10 2011-04-02 00:17:35

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: new morph?

scratcher7_13 wrote:

Is there a way to create a new morph?

i don't think so


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#11 2011-04-02 04:42:38

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

Re: new morph?

TVflea wrote:

scratcher7_13 wrote:

Is there a way to create a new morph?

i don't think so

Yes, you can. You just need to create a new class and add its definition to the new morph menu. It's a complicated matter, however.

Offline

 

#12 2011-04-02 09:09:38

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

Re: new morph?

TVflea wrote:

I was hacking scratch(holding shift and clicking the r off-line  wink  ). I didn't get very far,only up until the world window when something caught my eye.a button that said New Morph... I clicked it.it took me to a new window that said Add A New Morph...I then clicked From Alphabetical List.it had tons of stuff!a clock!a little paint editor! even Tetris  smile  ! I clicked on a morph that said Bouncing Atoms.soon I realised that if I uploaded the project with Bouncing Atoms in the middle of the screen,I would have instant fame for making a project with no sprite and no script.it didn't work  sad  ,though.my question is,what are those for?the scratch team when they got bored making scratch  hmm  ?

I have done this MILLIONS of times, I like the tetris one. LOL


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

 

#13 2011-04-03 15:27:15

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: new morph?

Pecola1 wrote:

TVflea wrote:

I was hacking scratch(holding shift and clicking the r off-line  wink  ). I didn't get very far,only up until the world window when something caught my eye.a button that said New Morph... I clicked it.it took me to a new window that said Add A New Morph...I then clicked From Alphabetical List.it had tons of stuff!a clock!a little paint editor! even Tetris  smile  ! I clicked on a morph that said Bouncing Atoms.soon I realised that if I uploaded the project with Bouncing Atoms in the middle of the screen,I would have instant fame for making a project with no sprite and no script.it didn't work  sad  ,though.my question is,what are those for?the scratch team when they got bored making scratch  hmm  ?

I have done this MILLIONS of times, I like the tetris one. LOL

i like the bouncing atoms one  big_smile


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#14 2011-04-04 13:32:33

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

Re: new morph?

TVflea wrote:

Pecola1 wrote:

TVflea wrote:

I was hacking scratch(holding shift and clicking the r off-line  wink  ). I didn't get very far,only up until the world window when something caught my eye.a button that said New Morph... I clicked it.it took me to a new window that said Add A New Morph...I then clicked From Alphabetical List.it had tons of stuff!a clock!a little paint editor! even Tetris  smile  ! I clicked on a morph that said Bouncing Atoms.soon I realised that if I uploaded the project with Bouncing Atoms in the middle of the screen,I would have instant fame for making a project with no sprite and no script.it didn't work  sad  ,though.my question is,what are those for?the scratch team when they got bored making scratch  hmm  ?

I have done this MILLIONS of times, I like the tetris one. LOL

i like the bouncing atoms one  big_smile

I found a project once which was based of that.


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

 

#15 2011-04-04 16:40:51

legomany3448
Scratcher
Registered: 2010-08-30
Posts: 36

Re: new morph?

I myself have wondered why some of them are there...however, look at teh apint editor.  Where have you seen that?  (hint hint)  The Multiline String Morph?  Download Panther (http://pantherprogramming.weebly.com/index.html) adn look at teh "About Panther" thing in the "help" menu.  Those kind of little things make Scratch what it is.  The clock?  Okay, I admid, that's a little coo-kou.  Maybe there wasn't a clock in the MIT lab where Scratch was created...Get the idea?  Hope it helps!

     I heard you were hacking Scratch.  http://customblocks.weebly.com/index.html might help you.   wink

EDIT: Sorry about the typos.   sad

Last edited by legomany3448 (2011-04-04 16:41:59)


¿uʍop-ǝpısdn pɐǝɹ noʎ uɐɔ
Click here to get EPIC custom blocks on Scratch!

Offline

 

#16 2011-04-04 22:41:13

TVflea
Scratcher
Registered: 2010-08-14
Posts: 1000+

Re: new morph?

legomany3448 wrote:

I myself have wondered why some of them are there...however, look at teh apint editor.  Where have you seen that?  (hint hint)  The Multiline String Morph?  Download Panther (http://pantherprogramming.weebly.com/index.html) adn look at teh "About Panther" thing in the "help" menu.  Those kind of little things make Scratch what it is.  The clock?  Okay, I admid, that's a little coo-kou.  Maybe there wasn't a clock in the MIT lab where Scratch was created...Get the idea?  Hope it helps!

     I heard you were hacking Scratch.  http://customblocks.weebly.com/index.html might help you.   wink

EDIT: Sorry about the typos.   sad

the Scratch team did not create those


-iNetMaster-'s not dead, get used to it. ! big_smile .
http://is.gd/YrQzXX

Offline

 

#17 2011-07-05 08:52:11

lights0123
Scratcher
Registered: 2010-12-12
Posts: 69

Re: new morph?

TVflea wrote:

I was hacking scratch (holding shift and clicking the r off-line  wink  ). I didn't get very far, only up until the world window when something caught my eye.a button that said New Morph... I clicked it. it took me to a new window that said Add A New Morph...I then clicked From Alphabetical List. it had tons of stuff!a clock! a little paint editor! even Tetris  smile  ! I clicked on a morph that said Bouncing Atoms. soon I realised that if I uploaded the project with Bouncing Atoms in the middle of the screen, I would have instant fame for making a project with no sprite and no script. it didn't work  sad  ,though.my question is,what are those for? the scratch team when they got bored making scratch  hmm  ?

well, you can't upload morphs, (exept some!  smile  i was looking for that project when i found this instead.

Last edited by lights0123 (2011-07-05 08:52:35)


http://mag.racked.eu/cimage/6243ueu/Achievement++get%21/Use+MultiMC%21/mca.png

Offline

 

#18 2011-07-05 08:58:47

lights0123
Scratcher
Registered: 2010-12-12
Posts: 69

Re: new morph?

when I do tetris, i put it in the middle of scratch, then delete scratch.


http://mag.racked.eu/cimage/6243ueu/Achievement++get%21/Use+MultiMC%21/mca.png

Offline

 

#19 2011-07-06 13:27:53

XComputers
Scratcher
Registered: 2011-06-30
Posts: 83

Re: new morph?

I once uploaded a switch morph and a button morph. Thankfully, it worked. But sadly, it stopped working, so I had to delete the projects.


http://i49.tinypic.com/8vruv5.jpg Go here to learn more or to help develop Apputunaria. Check my signature later to see if X Programming has a forum yet. Learning AI

Offline

 

#20 2011-07-06 14:15:21

ZeroLuck
Scratcher
Registered: 2010-02-23
Posts: 500+

Re: new morph?

Jwosty wrote:

The Java Player then translates the blocks into executable Java code.

No. The Java Player doesn't translate them into Java code, but it execute the blocks
with its own script-engine!


http://3.bp.blogspot.com/-oL2Atzp0Byw/T465vIQ36dI/AAAAAAAAADo/1vqL4PvhkM0/s1600/scratchdachwiki.png

Offline

 

Board footer