scimonster wrote:
Pecola1 wrote:
@hello12345678910, you should add at the end of your sig, a quote by me "BTW its Pacola1" LOL XD
did it again!
if it has to have the 1, you should at least check your spelling.
sparks wrote:
Haha, you spelt your name pacola last time you asked
*facepalm* Pecola wants hello12345678910 to use that quote because it's misspelled (and therefore funny in its context)! Pecola isn't accidentally misspelling it again! *facepalm*
Last edited by meowmeow55 (2011-01-02 13:09:41)
Offline
Pecola1 wrote:
@hello12345678910, you should add at the end of your sig, a quote by me "BTW its Pacola1" LOL XD
And why do you need the 1 Pecola1?
Anyway...
I have made a new block that shuffles text.
How it works (this is for people that can't see image shack):
Changes the text to a list
Reorders the list, using my randomly reorder
And then use my other block that changes the list back to text.
And here is the epic:
Last edited by SSBBM (2011-01-02 13:58:10)
Offline
More blocks uploaded!
List (copied from email attachments and slightly edited):
# of costumes; change costume by; if, if none are true; last costume; previous costume; wait then report.ysp; animate costumes; fade; highest in list; if on edge, bounce, else [; change layer by; switch random costume; repeat without delay; say nothing; say script; turn list into text
Offline
meowmeow55 wrote:
More blocks uploaded!
List (copied from email attachments and slightly edited):
# of costumes; change costume by; if, if none are true; last costume; previous costume; wait then report.ysp; animate costumes; fade; highest in list; if on edge, bounce, else [; change layer by; switch random costume; repeat without delay; say nothing; say script; turn list into text
Yay! I have some more, but I like to get a lot before I send it to you.
Offline
scimonster wrote:
Pecola1 wrote:
@hello12345678910, you should add at the end of your sig, a quote by me "BTW its Pacola1" LOL XD
did it again!
if it has to have the 1, you should at least check your spelling.
I know thats why he should add it to the end of his sig, that would make his quote funnier.
Offline
SSBBM wrote:
I have made a new block that shuffles text.
How it works (this is for people that can't see image shack):
Changes the text to a list
Reorders the list, using my randomly reorder
And then use my other block that changes the list back to text.
And here is the epic:
http://img508.imageshack.us/img508/3895/shuffled.gif
I like how you put epic into it! LOL BTW why not use transparent?
And the 1 in Pecola1 LOL (yes it took me longer to notice the one, but I really don't care I just thought that whoever it was might not see that I am Pecola1 and search my name and find someone else who copied my name (cuz I am epic) and not see my epic projects.
Last edited by Pecola1 (2011-01-02 17:59:47)
Offline
zorket wrote:
I've found a tip code! I might be able to make more impressive blocks.
Look how close our posts came.
Last edited by Pecola1 (2011-01-02 18:01:05)
Offline
Pecola1 wrote:
zorket wrote:
I've found a tip code! I might be able to make more impressive blocks.
Look how close our posts came.
Show me the code for the enter presentation mode again, please.
Offline
zorket wrote:
Pecola1 wrote:
zorket wrote:
I've found a tip code! I might be able to make more impressive blocks.
Look how close our posts came.
Show me the code for the enter presentation mode again, please.
On this page: http://scratch.mit.edu/forums/viewtopic … 8&p=40
Last edited by Pecola1 (2011-01-02 18:34:06)
Offline
SSBBM (or anyone else just at that time SSBM was on (or is on (ugh now he isn't on (i like putting in a bunch of parentheses like this) ) ) ) How do i retrieve a file on Panther? I searched all of my files on this computer with no hits.
Last edited by Pecola1 (2011-01-02 19:14:31)
Offline
The open browser block (I've been meaning to share this for a while ^^')
openBrowser Browser openBrowserView: (Browser new openEditString: nil) label: 'System Browser'
Be careful though; I tried to put it into a project, and the whole thing went wacky.
Offline
ESN wrote:
The open browser block (I've been meaning to share this for a while ^^')
Code:
openBrowser Browser openBrowserView: (Browser new openEditString: nil) label: 'System Browser'Be careful though; I tried to put it into a project, and the whole thing went wacky.
well, heres the complete code:
blockspec:
('open system browser' #- #openBrowser)
method:
openBrowser Browser openBrowserView: (Browser new openEditString: nil) label: 'System Browser'
This is a really great block. it allows you to open the browser without turning fillscreen off
can we both have credit?
(i cant upload pictures, sorry)
Last edited by scimonster (2011-01-03 00:51:48)
Offline
Updated BYOB downloads to include meowmeow55's new block links! Thanks for those, MM!
Thanks to Pecola1 for the christmas image that adorned the library in this chilly festive period! It's been taken down now, but look out for more library design competitions!
Offline
Press green flag, based on the tip by Pecola1. Thank you!
Blockspec:
('press green flag' #- #pressGo)
pressGo | t1 | t1 _ self ownerThatIsA: ScratchFrameMorph. t1 shoutGo
What it does: Presses the green flag when activated.
This doesn't really need to be added to the library because there is another one with a defferent code.
Offline
zorket wrote:
Press green flag, based on the tip by Pecola1. Thank you!
Blockspec:('press green flag' #- #pressGo)
Code:
pressGo | t1 | t1 _ self ownerThatIsA: ScratchFrameMorph. t1 shoutGoWhat it does: Presses the green flag when activated.
This doesn't really need to be added to the library because there is another one with a defferent code.
THAT's how it's done!
i was trying to figure that out.
Offline
scimonster wrote:
zorket wrote:
Press green flag, based on the tip by Pecola1. Thank you!
Blockspec:('press green flag' #- #pressGo)
Code:
pressGo | t1 | t1 _ self ownerThatIsA: ScratchFrameMorph. t1 shoutGoWhat it does: Presses the green flag when activated.
This doesn't really need to be added to the library because there is another one with a defferent code.THAT's how it's done!
i was trying to figure that out.
Lemme guess... It doesn't work in presentation mode.
Offline
I have made a save image for end user block.
My first block!
blockspec
Scratch-Objects --> ScriptableScratchMorph --- class --- block specs --> blockSpecs
('save image for end user' #- #saveImage)
Put it in control.
method
Scratch-Objects --> ScriptableScratchMorph --- instance --- other ops --> saveImage
saveImage | t1 | t1 _ self ownerThatIsA: ScratchFrameMorph. t1 saveImageForEndUser
Then go to Scratch-Blocks --> CommandBlockMorph --> accessing --> isStop: and add
| (selector = #saveImage)
That makes it a Cap block, cause you really can't do anything after.
EDIT: I suppose if you choose no...
Last edited by scimonster (2011-02-02 09:49:08)
Offline
sparks wrote:
So to all you curious Scratchers and viewers alike, I bid you welcome. Welcome to the Library!
Scratch blocks: [82]
BYOB blocks: [73]
Panther blocks: [35]
_________________________________
Want to add to the library? Please do! comment below for it to be added.
_________________________________
Special thanks to coolstuff for pushing to get this Itopic'd, nXIII for doing alot of the excellent graphics, SSBBM for great suggestions and graphics and everyone who posted their block code and asked for this to be Itopic'd, I couldn't have done it without you!
Comment below for it to be added.
Capitalization!
Offline