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

#1151 2011-01-09 04:01:22

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Welcome to the OLD local block library!

comp500 wrote:

EDIT #2: Another one:
http://img151.imageshack.us/img151/3800/keypressed.gif(made by LS97, same forum as above)

Code:

keyPressed
  (Sensor keyPressed: 65)
        ifTrue: [^ 'a'].
    (Sensor keyPressed: 66)
        ifTrue: [^ 'b'].
    (Sensor keyPressed: 67)
        ifTrue: [^ 'c'].
    (Sensor keyPressed: 68)
        ifTrue: [^ 'd'].
    (Sensor keyPressed: 69)
        ifTrue: [^ 'e'].
    (Sensor keyPressed: 70)
        ifTrue: [^ 'f'].
    (Sensor keyPressed: 71)
        ifTrue: [^ 'g'].
    (Sensor keyPressed: 72)
        ifTrue: [^ 'h'].
    (Sensor keyPressed: 73)
        ifTrue: [^ 'i'].
    (Sensor keyPressed: 74)
        ifTrue: [^ 'j'].
    (Sensor keyPressed: 75)
        ifTrue: [^ 'k'].
    (Sensor keyPressed: 76)
        ifTrue: [^ 'l'].
    (Sensor keyPressed: 77)
        ifTrue: [^ 'm'].
    (Sensor keyPressed: 78)
        ifTrue: [^ 'n'].
    (Sensor keyPressed: 79)
        ifTrue: [^ 'o'].
    (Sensor keyPressed: 80)
        ifTrue: [^ 'p'].
    (Sensor keyPressed: 81)
        ifTrue: [^ 'q'].
    (Sensor keyPressed: 82)
        ifTrue: [^ 'r'].
    (Sensor keyPressed: 83)
        ifTrue: [^ 's'].
    (Sensor keyPressed: 84)
        ifTrue: [^ 't'].
    (Sensor keyPressed: 85)
        ifTrue: [^ 'u'].
    (Sensor keyPressed: 86)
        ifTrue: [^ 'v'].
    (Sensor keyPressed: 87)
        ifTrue: [^ 'w'].
    (Sensor keyPressed: 88)
        ifTrue: [^ 'x'].
    (Sensor keyPressed: 89)
        ifTrue: [^ 'y'].
    (Sensor keyPressed: 90)
        ifTrue: [^ 'z'].
    (Sensor keyPressed: 32)
        ifTrue: [^ 'space'].
    (Sensor keyPressed: 1)
        ifTrue: [^ 'home'].
    (Sensor keyPressed: 4)
        ifTrue: [^ 'end'].
    (Sensor keyPressed: 5)
        ifTrue: [^ 'insert'].
    (Sensor keyPressed: 9)
        ifTrue: [^ 'tab'].
    (Sensor keyPressed: 11)
        ifTrue: [^ 'page up'].
    (Sensor keyPressed: 12)
        ifTrue: [^ 'page down'].
    (Sensor keyPressed: 127)
        ifTrue: [^ 'delete'].
    ^ 'none'

Code:

('key pressed' #r #keyPressed)

I'm in a hurry.

Add it to scratch and panther.

W00T! 47 pages!

Last edited by comp500 (2011-01-09 04:01:51)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#1152 2011-01-09 13:43:49

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

Re: Welcome to the OLD local block library!

comp500 wrote:

comp500 wrote:

EDIT #2: Another one:
http://img151.imageshack.us/img151/3800/keypressed.gif(made by LS97, same forum as above)

Code:

keyPressed
  (Sensor keyPressed: 65)
        ifTrue: [^ 'a'].
    (Sensor keyPressed: 66)
        ifTrue: [^ 'b'].
    (Sensor keyPressed: 67)
        ifTrue: [^ 'c'].
    (Sensor keyPressed: 68)
        ifTrue: [^ 'd'].
    (Sensor keyPressed: 69)
        ifTrue: [^ 'e'].
    (Sensor keyPressed: 70)
        ifTrue: [^ 'f'].
    (Sensor keyPressed: 71)
        ifTrue: [^ 'g'].
    (Sensor keyPressed: 72)
        ifTrue: [^ 'h'].
    (Sensor keyPressed: 73)
        ifTrue: [^ 'i'].
    (Sensor keyPressed: 74)
        ifTrue: [^ 'j'].
    (Sensor keyPressed: 75)
        ifTrue: [^ 'k'].
    (Sensor keyPressed: 76)
        ifTrue: [^ 'l'].
    (Sensor keyPressed: 77)
        ifTrue: [^ 'm'].
    (Sensor keyPressed: 78)
        ifTrue: [^ 'n'].
    (Sensor keyPressed: 79)
        ifTrue: [^ 'o'].
    (Sensor keyPressed: 80)
        ifTrue: [^ 'p'].
    (Sensor keyPressed: 81)
        ifTrue: [^ 'q'].
    (Sensor keyPressed: 82)
        ifTrue: [^ 'r'].
    (Sensor keyPressed: 83)
        ifTrue: [^ 's'].
    (Sensor keyPressed: 84)
        ifTrue: [^ 't'].
    (Sensor keyPressed: 85)
        ifTrue: [^ 'u'].
    (Sensor keyPressed: 86)
        ifTrue: [^ 'v'].
    (Sensor keyPressed: 87)
        ifTrue: [^ 'w'].
    (Sensor keyPressed: 88)
        ifTrue: [^ 'x'].
    (Sensor keyPressed: 89)
        ifTrue: [^ 'y'].
    (Sensor keyPressed: 90)
        ifTrue: [^ 'z'].
    (Sensor keyPressed: 32)
        ifTrue: [^ 'space'].
    (Sensor keyPressed: 1)
        ifTrue: [^ 'home'].
    (Sensor keyPressed: 4)
        ifTrue: [^ 'end'].
    (Sensor keyPressed: 5)
        ifTrue: [^ 'insert'].
    (Sensor keyPressed: 9)
        ifTrue: [^ 'tab'].
    (Sensor keyPressed: 11)
        ifTrue: [^ 'page up'].
    (Sensor keyPressed: 12)
        ifTrue: [^ 'page down'].
    (Sensor keyPressed: 127)
        ifTrue: [^ 'delete'].
    ^ 'none'

Code:

('key pressed' #r #keyPressed)

I'm in a hurry.

Add it to scratch and panther.

W00T! 47 pages!

You have to give the Panther code for it to count.


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

 

#1153 2011-01-09 15:10:43

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Welcome to the OLD local block library!

Pecola1 wrote:

comp500 wrote:

comp500 wrote:

EDIT #2: Another one:
http://img151.imageshack.us/img151/3800/keypressed.gif(made by LS97, same forum as above)

Code:

keyPressed
  (Sensor keyPressed: 65)
        ifTrue: [^ 'a'].
    (Sensor keyPressed: 66)
        ifTrue: [^ 'b'].
    (Sensor keyPressed: 67)
        ifTrue: [^ 'c'].
    (Sensor keyPressed: 68)
        ifTrue: [^ 'd'].
    (Sensor keyPressed: 69)
        ifTrue: [^ 'e'].
    (Sensor keyPressed: 70)
        ifTrue: [^ 'f'].
    (Sensor keyPressed: 71)
        ifTrue: [^ 'g'].
    (Sensor keyPressed: 72)
        ifTrue: [^ 'h'].
    (Sensor keyPressed: 73)
        ifTrue: [^ 'i'].
    (Sensor keyPressed: 74)
        ifTrue: [^ 'j'].
    (Sensor keyPressed: 75)
        ifTrue: [^ 'k'].
    (Sensor keyPressed: 76)
        ifTrue: [^ 'l'].
    (Sensor keyPressed: 77)
        ifTrue: [^ 'm'].
    (Sensor keyPressed: 78)
        ifTrue: [^ 'n'].
    (Sensor keyPressed: 79)
        ifTrue: [^ 'o'].
    (Sensor keyPressed: 80)
        ifTrue: [^ 'p'].
    (Sensor keyPressed: 81)
        ifTrue: [^ 'q'].
    (Sensor keyPressed: 82)
        ifTrue: [^ 'r'].
    (Sensor keyPressed: 83)
        ifTrue: [^ 's'].
    (Sensor keyPressed: 84)
        ifTrue: [^ 't'].
    (Sensor keyPressed: 85)
        ifTrue: [^ 'u'].
    (Sensor keyPressed: 86)
        ifTrue: [^ 'v'].
    (Sensor keyPressed: 87)
        ifTrue: [^ 'w'].
    (Sensor keyPressed: 88)
        ifTrue: [^ 'x'].
    (Sensor keyPressed: 89)
        ifTrue: [^ 'y'].
    (Sensor keyPressed: 90)
        ifTrue: [^ 'z'].
    (Sensor keyPressed: 32)
        ifTrue: [^ 'space'].
    (Sensor keyPressed: 1)
        ifTrue: [^ 'home'].
    (Sensor keyPressed: 4)
        ifTrue: [^ 'end'].
    (Sensor keyPressed: 5)
        ifTrue: [^ 'insert'].
    (Sensor keyPressed: 9)
        ifTrue: [^ 'tab'].
    (Sensor keyPressed: 11)
        ifTrue: [^ 'page up'].
    (Sensor keyPressed: 12)
        ifTrue: [^ 'page down'].
    (Sensor keyPressed: 127)
        ifTrue: [^ 'delete'].
    ^ 'none'

Code:

('key pressed' #r #keyPressed)

I'm in a hurry.

Add it to scratch and panther.

W00T! 47 pages!

You have to give the Panther code for it to count.

ok, but they can change it into panther code.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#1154 2011-01-09 16:26:34

jcml
Scratcher
Registered: 2010-10-08
Posts: 12

Re: Welcome to the OLD local block library!

Pecola1 wrote:

This is key pressed extra keys.
First go to ScriptableScratchMorph> instance> sensing ops> asciiFor:
add the strip:

Code:

'enter' localized = t2 ifTrue: [^ Character cr asciiValue].
    'shift' localized = t2 ifTrue: [^ 16].
    'control' localized = t2 ifTrue: [^ 17].
    'alt' localized = t2 ifTrue: [^ 18].
    'backspace' localized = t2 ifTrue: [^ 8].
    'escape' localized = t2 ifTrue: [^ 27].
    'f1' localized = t2 ifTrue: [^ 112].
    'f3' localized = t2 ifTrue: [^ 114].
    'f4' localized = t2 ifTrue: [^ 115].
    'f5' localized = t2 ifTrue: [^ 116].
    'f6' localized = t2 ifTrue: [^ 117].
    'f7' localized = t2 ifTrue: [^ 118].
    'f8' localized = t2 ifTrue: [^ 119].
    'f9' localized = t2 ifTrue: [^ 120].
    'f10' localized = t2 ifTrue: [^ 121].
    'f11' localized = t2 ifTrue: [^ 122].
    'f12' localized = t2 ifTrue: [^ 123].
'tab' localized = t2 ifTrue: [^ 9].

Then switch to keyNames:
add the strip

Code:

'shift' 'control' 'alt' 'backspace' 'escape' 'f1' 'f2' 'f3' 'f4' 'f5' 'f6' 'f7' 'f8' 'f9' 'f10' 'f11' 'f12' 'tab'

i've opened sytem browser but i cant find ScriptableScratchMorph> instance> sensing ops> asciiFor: or  keyNames:
help (P.S. ive edited scratch source code befor but i need some help)


I need help for one huge a mesh game i need to no how to make a world-wide scratch program if you have any idea's just coment on one of my projects

Offline

 

#1155 2011-01-09 17:39:15

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

Re: Welcome to the OLD local block library!

Three things.

One: Does anyone know about a squeak tutorial? I'm interested in learning it, but know nothing.

Two: Would you like me do make some pictures of block requests? EDIT: Too late I did it anyways,
http://img819.imageshack.us/img819/430/runbutifpause.gif
http://img830.imageshack.us/img830/8151/lastcastsent.gif
http://img821.imageshack.us/img821/1456/savecos.gif
http://img692.imageshack.us/img692/7884/distoxy.gif
http://img510.imageshack.us/img510/7717/saying.gif

Three: I have a block request.

block name:
distance to x: () y: ()
Requested for:
BYOB

Last edited by SSBBM (2011-01-09 17:51:11)


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

Offline

 

#1156 2011-01-09 17:44:23

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

Re: Welcome to the OLD local block library!

SSBBM wrote:

block name:
distance to x: y:
Requested for:
BYOB

Give me a minute, I'll do it.


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

Offline

 

#1157 2011-01-09 17:48:02

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

Re: Welcome to the OLD local block library!

SSBBM, here's an unfinished squeak tutorial I'm building - feel free to look at it!

guide


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

Offline

 

#1158 2011-01-09 17:51:11

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

Re: Welcome to the OLD local block library!

wait a sec, glitched

http://img89.imageshack.us/img89/7056/byobdistanceto.gif

Last edited by bbbeb (2011-01-09 17:55:13)


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

Offline

 

#1159 2011-01-09 18:04:58

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

Re: Welcome to the OLD local block library!

sparks wrote:

SSBBM, here's an unfinished squeak tutorial I'm building - feel free to look at it!

guide

Thank you sparks. I looked only looked at the block spec part and so far I get it.  smile


bbbeb wrote:

wait a sec, glitched

http://img89.imageshack.us/img89/7056/byobdistanceto.gif

That's not what I meant. I'm looking for a block a lot like the distance to [sprite] block with 1 number.

Oh, and I updated my previous post BTW.


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

Offline

 

#1160 2011-01-09 18:20:15

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

Re: Welcome to the OLD local block library!

sparks wrote:

http://dl.dropbox.com/u/6273449/download.bmp  http://img145.imageshack.us/img145/4254/revolve.gif Shared by SSBBM

Credit should be given to Kileymeister.


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

Offline

 

#1161 2011-01-09 19:22:03

floppy_gunk
Scratcher
Registered: 2008-11-14
Posts: 500+

Re: Welcome to the OLD local block library!

SSBBM wrote:

I have a block request.

block name:
distance to x: () y: ()
Requested for:
BYOB

http://img820.imageshack.us/img820/6180/dist.gif

Here you go!  smile


http://img163.imageshack.us/img163/1917/2856lg.jpg Get it now!  smile

Offline

 

#1162 2011-01-09 19:41:12

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

Re: Welcome to the OLD local block library!

floppy_gunk wrote:

http://img820.imageshack.us/img820/6180/dist.gif

Here you go!  smile

Thanks both of you. bbbeb, floppy_gunk's block was what I wanted, sorry you misunderstood  sad  .


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

Offline

 

#1163 2011-01-09 20:07:29

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

Re: Welcome to the OLD local block library!

jcml wrote:

Pecola1 wrote:

This is key pressed extra keys.
First go to Scratch-Objects> ScriptableScratchMorph> instance> sensing ops> asciiFor:
add the strip:

Code:

'enter' localized = t2 ifTrue: [^ Character cr asciiValue].
    'shift' localized = t2 ifTrue: [^ 16].
    'control' localized = t2 ifTrue: [^ 17].
    'alt' localized = t2 ifTrue: [^ 18].
    'backspace' localized = t2 ifTrue: [^ 8].
    'escape' localized = t2 ifTrue: [^ 27].
    'f1' localized = t2 ifTrue: [^ 112].
    'f3' localized = t2 ifTrue: [^ 114].
    'f4' localized = t2 ifTrue: [^ 115].
    'f5' localized = t2 ifTrue: [^ 116].
    'f6' localized = t2 ifTrue: [^ 117].
    'f7' localized = t2 ifTrue: [^ 118].
    'f8' localized = t2 ifTrue: [^ 119].
    'f9' localized = t2 ifTrue: [^ 120].
    'f10' localized = t2 ifTrue: [^ 121].
    'f11' localized = t2 ifTrue: [^ 122].
    'f12' localized = t2 ifTrue: [^ 123].
'tab' localized = t2 ifTrue: [^ 9].

Then switch to keyNames:
add the strip

Code:

'shift' 'control' 'alt' 'backspace' 'escape' 'f1' 'f2' 'f3' 'f4' 'f5' 'f6' 'f7' 'f8' 'f9' 'f10' 'f11' 'f12' 'tab'

i've opened sytem browser but i cant find ScriptableScratchMorph> instance> sensing ops> asciiFor: or  keyNames:
help (P.S. ive edited scratch source code befor but i need some help)

Oh! Sorry its Scratch-Objects> ScriptableScratchMorph> instance> sensing ops> asciiFor: I will edit it


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

 

#1164 2011-01-09 20:17:58

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: Welcome to the OLD local block library!

Pecola1 wrote:

Hardmath123 wrote:

Pecola1 wrote:


I know but it also SELECTS different codes like broadcasting. That is how it is used in block specs.

So it's like this:

Code:

 docodingof: t1

#t1

should do the coding of the inout (i.e. 'forward: 10' will make it go forward 10 steps)?

Yes, notice how whoever put on the press green flag used:

Code:

pressGreenFlag
     #pressGreenFlagButton

But it didn't work, why? Because it was not in the same class as pressGreenFlagButton. I am not sure exactly how or why but this is what I am pretty sure is true.
BTW great block!
Just found out:
the

Code:

 docodingof: t1

#t1

block will not work because it has to be:

Code:

 docodingof: t1

^#t1

but that wont work because the # before t1 makes t1 not the insert, it tries to do t1 instead, even when you make it a reporter it will report t1. I couldn't find a way to fix it  hmm  .

Arg, I said a SELECTOR is like a STRING! So "^ 't1'" will return 't1' and "^ #t1" will return #t1!


http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#1165 2011-01-09 20:34:04

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: Welcome to the OLD local block library!

MathWizz wrote:

Arg, I said a SELECTOR is like a STRING! So "^ 't1'" will return 't1' and "^ #t1" will return #t1!

I would suggest self perform: t1.


nXIII

Offline

 

#1166 2011-01-09 20:42:42

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

Re: Welcome to the OLD local block library!

SSBBM wrote:

floppy_gunk wrote:

http://img820.imageshack.us/img820/6180/dist.gif

Here you go!  smile

Thanks both of you. bbbeb, floppy_gunk's block was what I wanted, sorry you misunderstood  sad  .

sad  ok.


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

Offline

 

#1167 2011-01-09 20:49:11

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII wrote:

MathWizz wrote:

Arg, I said a SELECTOR is like a STRING! So "^ 't1'" will return 't1' and "^ #t1" will return #t1!

I would suggest self perform: t1.

WERE HAVE YOU BEEEEEEEEEEEEEEEEEEEENNNNN??? [/offtopic] Yes, I know that, but it still is like a string.


http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#1168 2011-01-09 21:44:14

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII wrote:

MathWizz wrote:

Arg, I said a SELECTOR is like a STRING! So "^ 't1'" will return 't1' and "^ #t1" will return #t1!

I would suggest self perform: t1.

It's the ghost of nXIII! Back from the dead to haunt all unfinished projects. XD

Offline

 

#1169 2011-01-10 05:21:28

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: Welcome to the OLD local block library!

sparks wrote:

SSBBM, here's an unfinished squeak tutorial I'm building - feel free to look at it!

guide

I made this.


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#1170 2011-01-10 11:21:25

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Welcome to the OLD local block library!

smile


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#1171 2011-01-10 18:54:02

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

Re: Welcome to the OLD local block library!

Forgotten/Didn't add blocks:

By SSBBM
http://img252.imageshack.us/img252/3895/shuffled.gif

http://img190.imageshack.us/img190/7774/highestitemin.gif

http://img340.imageshack.us/img340/6007/listtotext.gif

http://img31.imageshack.us/img31/1710/lowercase.gif

http://img5.imageshack.us/img5/945/uppercase.gif

http://img826.imageshack.us/img826/5116/error.gif

http://img515.imageshack.us/img515/1918/errorblock.png by Guinea_Pig_Girl

By  floppy_gunk.
http://img600.imageshack.us/img600/6678/altarea.gif

http://img683.imageshack.us/img683/6439/area.gif

http://img835.imageshack.us/img835/4793/atan2.gif

http://img375.imageshack.us/img375/676/each.gif

http://img840.imageshack.us/img840/8797/log.gif

http://img31.imageshack.us/img31/8272/pointc.gif

http://img267.imageshack.us/img267/9818/root.gif

http://img140.imageshack.us/img140/298/same.gif

http://img405.imageshack.us/img405/770/signbo.gif

http://img211.imageshack.us/img211/797/slice.gif

http://img207.imageshack.us/img207/1043/speedq.gif

http://img694.imageshack.us/img694/9907/freq.gif

http://img820.imageshack.us/img820/6180/dist.gif for SSBBM

And then the ones here.

I'm going to try to have all the files for the blocks and the pictutres for the ones here (same link as the first one).

Last edited by SSBBM (2011-01-10 18:57:30)


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

Offline

 

#1172 2011-01-11 02:39:05

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Welcome to the OLD local block library!

comp500 wrote:

Pecola1 wrote:

comp500 wrote:


Add it to scratch and panther.

W00T! 47 pages!

You have to give the Panther code for it to count.

ok, but they can change it into panther code.

ADD IT!!!!!!!!!!!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#1173 2011-01-11 02:43:28

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

Re: Welcome to the OLD local block library!

comp500 wrote:

comp500 wrote:

Pecola1 wrote:

You have to give the Panther code for it to count.

ok, but they can change it into panther code.

ADD IT!!!!!!!!!!!

YOU have to change it to panther.
and din't you notice that sparks isn't adding stuff for a little while

Last edited by scimonster (2011-01-11 02:53:37)

Offline

 

#1174 2011-01-11 02:52:11

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

Re: Welcome to the OLD local block library!

http://www.freeimagehosting.net/uploads/295bf84b78.gif
spec:
('save image for end user' #- #saveImmage)
method (other ops):
saveImage
    | t1 |
    t1 _ self ownerThatIsA: ScratchFrameMorph.
    t1 saveImageForEndUser

Offline

 

#1175 2011-01-11 03:15:51

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Welcome to the OLD local block library!

scimonster wrote:

comp500 wrote:

comp500 wrote:


ok, but they can change it into panther code.

ADD IT!!!!!!!!!!!

YOU have to change it to panther.
and din't you notice that sparks isn't adding stuff for a little while

OH.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

Board footer