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

#26 2010-12-03 20:29:06

kinker
Scratcher
Registered: 2010-08-01
Posts: 100+

Re: xCubed - my mod

it only has one blank text file


Put in the weirdness: http://i54.tinypic.com/zl6fph.pnghttp://img821.imageshack.us/i/gobanim2.gif/kinker style! [url]http://internetometer.com/image/16724.png[/url]♬♫ 92% of teens have moved on to rap. If you are part of the 8% who still listen to real music, copy and paste this into your signature. ♫♪

Offline

 

#27 2010-12-03 20:31:26

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

Re: xCubed - my mod

kinker wrote:

it only has one blank text file

Called "Eat that, impatient people!"!  big_smile

(It's not reallycalledthat)


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

Offline

 

#28 2010-12-04 09:03:46

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

Re: xCubed - my mod

It is still under development.


/* No comment */

Offline

 

#29 2011-01-01 14:43:31

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

Re: xCubed - my mod

Down to page 5?!  yikes

BUMP!

Anyway, I hope to release an alpha by the end of January that will contain all the new UI features but not the new blocks yet.


/* No comment */

Offline

 

#30 2011-01-01 15:20:37

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

Re: xCubed - my mod

You mentioned my [run code on --sprite/stage--] block, but I've updated the block since.
The new code is:

Code:

doTellSpriteTo
    | t1 t2 t3 |
    t1 _ stackFrame expression.
    t2 _ stackFrame arguments.
    t2 size = 0
        ifTrue: 
            [t3 _ t1 argumentAt: 1.
            ^ self pushStackFrame: (ScratchStackFrame new expression: t3)].
    self popStackFrame.
    t3 _ t1 fullCopy. 
    t3
        allMorphsDo: [:t4 | (t4 respondsTo: #receiver:)
                ifTrue: [t4 receiver: (ScriptableScratchMorph new coerceSpriteArg: t2 first)]]. 
    self pushStackFrame: (ScratchStackFrame new expression: t3 firstBlockList)

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

Offline

 

#31 2011-01-02 14:15:24

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

Re: xCubed - my mod

rubiks_cube_guy238 wrote:

You mentioned my [run code on --sprite/stage--] block, but I've updated the block since.
The new code is:

Code:

doTellSpriteTo
    | t1 t2 t3 |
    t1 _ stackFrame expression.
    t2 _ stackFrame arguments.
    t2 size = 0
        ifTrue: 
            [t3 _ t1 argumentAt: 1.
            ^ self pushStackFrame: (ScratchStackFrame new expression: t3)].
    self popStackFrame.
    t3 _ t1 fullCopy. 
    t3
        allMorphsDo: [:t4 | (t4 respondsTo: #receiver:)
                ifTrue: [t4 receiver: (ScriptableScratchMorph new coerceSpriteArg: t2 first)]]. 
    self pushStackFrame: (ScratchStackFrame new expression: t3 firstBlockList)

Thanks.  smile


/* No comment */

Offline

 

Board footer