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

#226 2011-01-27 21:56:24

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Blocktalk

Daffy22 wrote:

Jwosty wrote:

Eventually, if I ever get it finished. I may release the .image and .changes files, along with some other important stuff. So yes, it will work on windows, there just wouldn't be any .exe file.  smile

Thats what SoftDEV should do.  sad

SoftDeV has released an image file.


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#227 2011-01-27 22:42:46

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

Re: Blocktalk

midnightleopard wrote:

Daffy22 wrote:

Jwosty wrote:

Eventually, if I ever get it finished. I may release the .image and .changes files, along with some other important stuff. So yes, it will work on windows, there just wouldn't be any .exe file.  smile

Thats what SoftDEV should do.  sad

SoftDeV has released an image file.

SoftDEV? What's that?


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

Offline

 

#228 2011-01-27 23:19:12

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

Re: Blocktalk

Wow that's VERY ironic... The day I upload Blocktalk to Mediafire, I find and fix the problem.  yikes
To put it short, the problem was that the blocks in the instance pane wouldn't run and the fix was only a matter of finding a hiding method.
Long and more detailed explanation: I knew the reason they wouldn't run is because somewhere, Scratch (Or Blocktalk for that matter  tongue ) has to find the blocks before it can do anything with them. I finally found the method that does so. It is located in
Scratch-Objects//ScriptableScratchMorph//scripts #scripts.
The original method is

Code:

scripts
    "Answer my scripts, a collection of HatBlockMorphs."

    (blocksBin isKindOf: Morph) ifFalse: [^ blocksBin].
    ^ blocksBin submorphs select: [:m | m isKindOf: HatBlockMorph]

And I modified it to

Code:

scripts
    "Answer my scripts, a collection of HatBlockMorphs."
    | scripts |
    scripts _ (blocksBin submorphs select: [:m | m isKindOf: HatBlockMorph])
                , (instanceBlocksBin submorphs select: [:m | m isKindOf: HatBlockMorph]).
    (blocksBin isKindOf: Morph)
        ifFalse: [^ blocksBin].
    ^ scripts

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

Offline

 

#229 2011-01-27 23:26:03

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

Re: Blocktalk

Also, since I have already uploaded it to mediafire, I might as well let you have the latest version. But just use it to look at the code; you might mess up your Scratch projects.
The latest version can be downloaded here. Be sure to check the topic post every once in a while for the latest build!


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

Offline

 

#230 2011-02-01 15:27:40

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

Re: Blocktalk

Updated to the latest version!

Fixed:
• Highlighting the correct tab at the start
• More tab... stuff


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

Offline

 

#231 2011-02-01 15:38:29

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

Re: Blocktalk

Is this almost done?

Offline

 

#232 2011-02-01 16:16:08

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

Re: Blocktalk

Hey, is there a way to report if a class exists or not?

Last edited by Jwosty (2011-02-01 16:16:19)


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

Offline

 

#233 2011-02-01 18:08:15

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

Re: Blocktalk

Bump!  sad


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

Offline

 

#234 2011-02-03 15:15:59

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

Re: Blocktalk

Smalltalk classNamed: 'name'.
If the class exists, it returns the class, otherwise it returns nil.


/* No comment */

Offline

 

#235 2011-03-03 16:30:34

luigis_1_fan
Scratcher
Registered: 2010-10-09
Posts: 7

Re: Blocktalk

wheres the link? YOU NEED THE LINK

Offline

 

#236 2011-03-04 17:50:23

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

Re: Blocktalk

TheSuccessor wrote:

Smalltalk classNamed: 'name'.
If the class exists, it returns the class, otherwise it returns nil.

Thanks! That helps  tongue

luigis_1_fan wrote:

wheres the link? YOU NEED THE LINK

Link?  hmm

____________

Also, I am taking a long break on another project. I'm not completely finished with it yet though xD
Thanks guys!  smile


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

Offline

 

#237 2011-03-20 21:20:12

laser314
Scratcher
Registered: 2010-07-16
Posts: 100+

Re: Blocktalk

When will this be done? I can't wait!


http://alpha.scratch.mit.edu/scratchr2/static//images/logo_sm.png 2.0 Alpha Tester!http://i49.tinypic.com/1zckcqb.png

Offline

 

#238 2011-05-20 06:37:38

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

Re: Blocktalk

Jwosty wrote:

I am starting a Scratch Mod called Blocktalk (It was originally called Scratchtalk, but I found out that it violates the tems of use). It will be like the bridge between Scratch and the language it was programmed in, Smalltalk and I hope it will let other advanced Scratch users learn Smalltalk.


The Differences

• It will include four categories in the top of the script editor instead of three:

Class Scripts, Instance Scripts, Costumes and Sounds.

• It will also have a few new blocks.

To do list
Add the class and instance framework by
   • Separate the Class scripting pane and Instance pane to only show certain blocks
   • Making each 'sprite' (later to be called a class; right now its still just a 'sprite') a real Smalltalk class
   • Separating the blocks for only what the


If you would like to help me develop this, you can suggest new features for future versions, or maybe provide artwork and/or sample projects, or in any other way you feel is appropriate.  wink
________________
Also, feel free to ask me anything about Blocktalk and I will try my best to answer it.  wink
And I will not be accepting any offers to program, sorry.  sad  But you can help me with any code, just tell me it!  smile
________________
You can download the latest (but unfinished) build here. But only use it to look at the code and maybe provide useful suggestions; as it might mess up your Scratch projects.

Have a great day!  smile

Please reupload to 4shared. Web filters (I call them Web Viruses) block mediafire.

Offline

 

#240 2011-05-20 22:33:23

jcpopp
Scratcher
Registered: 2010-10-30
Posts: 100+

Re: Blocktalk

Looks awesome so far!!!!!


Join Nitro Type! It really improves your typing skills  big_smile

Offline

 

#242 2011-06-11 09:19:58

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

Re: Blocktalk

rdococ wrote:

rdococ wrote:

Come on. Give me the 4shared download!

Here: http://www.4shared.com/folder/5DqkeV3V/_online.html. I uploaded the image file, the changes file, and the squeak sources.


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

 

#243 2011-06-11 11:07:25

cskidmsonic
Scratcher
Registered: 2011-01-22
Posts: 100+

Re: Blocktalk

Is development still going on?


This signature is TDD's fault... yes, I had to.

Offline

 

#244 2011-06-11 12:59:13

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

Re: Blocktalk

hello12345678910 wrote:

rdococ wrote:

rdococ wrote:

Come on. Give me the 4shared download!

Here: http://www.4shared.com/folder/5DqkeV3V/_online.html. I uploaded the image file, the changes file, and the squeak sources.

I now need the Sourceforge download.

Offline

 

#245 2012-05-28 12:31:42

barndawg
Scratcher
Registered: 2012-03-08
Posts: 81

Re: Blocktalk

I'd hopefully be good at ideas and artwork - i'll post them here.

------------------------------------------------------------------------------------------------------------------------------
SEE MY SITE AT: http://scratchfrommit.weebly.com/index.html


I... need... Scratch 0.1! Find the forum at http://scratch.mit.edu/forums/viewtopic.php?id=113354
http://www.danasoft.com/sig/ScratchforumBarndawg.jpg

Offline

 

#246 2012-05-28 12:32:43

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Blocktalk

This will be perfect for me.

Offline

 

#247 2012-05-28 12:50:45

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Blocktalk

I can't download.  hmm

Offline

 

#248 2012-05-28 12:54:40

barndawg
Scratcher
Registered: 2012-03-08
Posts: 81

Re: Blocktalk

Hey! Look at this! http://www.dafont.com/block-talk.font


I... need... Scratch 0.1! Find the forum at http://scratch.mit.edu/forums/viewtopic.php?id=113354
http://www.danasoft.com/sig/ScratchforumBarndawg.jpg

Offline

 

#249 2012-05-28 13:00:54

barndawg
Scratcher
Registered: 2012-03-08
Posts: 81

Re: Blocktalk

ImagineIt wrote:

I can't download.  hmm

Neither can I  sad


I... need... Scratch 0.1! Find the forum at http://scratch.mit.edu/forums/viewtopic.php?id=113354
http://www.danasoft.com/sig/ScratchforumBarndawg.jpg

Offline

 

#250 2012-05-29 02:39:44

barndawg
Scratcher
Registered: 2012-03-08
Posts: 81

Re: Blocktalk

Both of the files are still invalid!


I... need... Scratch 0.1! Find the forum at http://scratch.mit.edu/forums/viewtopic.php?id=113354
http://www.danasoft.com/sig/ScratchforumBarndawg.jpg

Offline

 

Board footer