Do you want me to make a seperate thread?
Offline
already have ^_^
Block website discussion moved to this thread
Last edited by sparks (2010-12-20 14:42:55)
Offline
sparks wrote:
Hi!
I like the page ideas. Is there a way we can give each blocks tags? So name, submitter, type, catagory and mod? Then people could do tag searching
I think that if possible, the "add a block" form should, once completed be on display to any website moderators, then they can check the block for rudeness or stupidity before submitting the block for public viewing. This will allow us to keep the site as safe and young-people friendly as the Scratch site - Something I think is important!
P.S. it's spelt "Discussion"!
Something to think about: Would it be a good idea to nick the style sheet and layout of the Scratch site for our website? It might make Scratch users (and their parents) less worried about an external site.
________________________________________________________________________________owetre18 wrote:
Block Request - Scratch
ask %sThis script worked for me!
thank you!
Offline
Okay, great ProgrammingFreak you seem to be doing well. Can you post the hamachi details? Thanks
And for Sparks... The share page isn't set up yet
I'm cool with those options too
(they'll probally be hosted else were. Not sure yet )
Last edited by Daffy22 (2010-12-20 16:09:31)
Offline
Daffy22 wrote:
Okay, great ProgrammingFreak you seem to be doing well. Can you post the hamachi details? Thanks
And for Sparks... The share page isn't set up yet
I'm cool with those options too
(they'll probally be hosted else were. Not sure yet )
we've moved this discussion to a new thread!
Offline
sparks wrote:
Daffy22 wrote:
Okay, great ProgrammingFreak you seem to be doing well. Can you post the hamachi details? Thanks
And for Sparks... The share page isn't set up yet
I'm cool with those options too
(they'll probally be hosted else were. Not sure yet )we've moved this discussion to a new thread!
oops, my mistake.
Offline
scimonster wrote:
Pecola1 wrote:
zorket wrote:
Pecola, why?
WHY WHAT!?!?!?!??! BTW its Pacola1
you misspelled your own name. its Pecola1
LOL! EPIC FAIL TO ME! XD
Offline
sparks wrote:
Operators
Shared by Zorket
Blockspec('%T %s' #r #do:to:)
Code:
do: t1 to: t2 t1 = 'reverse' ifTrue: [^ t2 reversed]. t1 = 'shuffle' ifTrue: [^ t2 shuffled]. t1 = 'uppercase' ifTrue: [^ t2 asUppercase]. t1 = 'lowercase' ifTrue: [^ t2 asLowercase]. t1 = 'report' ifTrue: [^ t2].Scratch blocks> commandBlockMorph> all> uncoloredArgMorphFor: add a strip:
Code:
$T = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #mixingNames; choice: 'reverse'].Scratch objects> scriptableScratchMorph> LOW then press class> otherOps:
Code:
mixingNames ^ #('lowercase' 'uppercase' 'reverse' 'shuffle' 'report' )
this has the wrong code. fixed:
$T = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #mixingNames; choice: 'reverse'].
i got rid of the ChoiceOrExpressionArgMorph and replaced it with ChoiceArgMorph. it doesn't let you insert something in the first one.
and sparks also wrote:
Shared by Hardmath123.
Blockspec:('%T' #r #getconstant:)
Code:
getconstant: t1
t1 = 'pi' ifTrue: [^ '3.141592653'].
t1 = 'phi' ifTrue: [^ '1.61803399'].
t1 = 'e' ifTrue: [^ '2.71828183'].
t1 = 'sqrt 2' ifTrue: [^ '1.41421356'].
^ 3.141592653Scratch-Objects»ScriptableScratchMorph»sensing
constants
^ #('pi' 'phi' 'e' 'sqrt 2' )Scratch-Blocks»CommandBlockMorph»-- all --»uncoloredArgMorphFor:
REPLACE ALL WITHCode:
uncoloredArgMorphFor: t1 | t2 | t2 _ t1 at: 2. $a = t2 ifTrue: [^ AttributeArgMorph new choice: 'volume']. $b = t2 ifTrue: [^ BooleanArgMorph new]. $c = t2 ifTrue: [^ ColorArgMorph new showPalette: true]. $C = t2 ifTrue: [^ ColorArgMorph new showPalette: false]. $d = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '0'; menuSelector: #directionMenu]. $D = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '48'; menuSelector: #midiDrumMenu]. $e = t2 ifTrue: [^ EventTitleMorph new]. $f = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #mathFunctionNames; choice: 'sqrt']. $g = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #graphicEffectNames; choice: 'color']. $H = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #hookupSensorNames]. $h = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #hookupBooleanSensorNames]. $I = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '1'; menuSelector: #midiInstrumentMenu]. $i = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '1'; menuSelector: #listIndexMenu]. $k = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #keyNames; choice: 'space']. $L = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #listVarMenu]. $l = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #costumeNames; choice: 'costume1']. $m = t2 ifTrue: [^ SpriteArgMorph new]. $M = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #motorNames]. $n = t2 ifTrue: [^ ExpressionArgMorph new numExpression: '10']. $N = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '60'; menuSelector: #noteSelector]. $s = t2 ifTrue: [^ ExpressionArgMorph new stringExpression: '']. $S = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #soundNames; choice: 'pop']. $v = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #varNamesMenu; choice: '']. $W = t2 ifTrue: [^ ChoiceArgMorph new getOptionsSelector: #motorDirection]. $x = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #sceneNames; choice: '']. $y = t2 ifTrue: [^ ExpressionArgMorphWithMenu new numExpression: '1'; menuSelector: #listIndexForDeleteMenu]. $T = t2 ifTrue: [^ ChoiceOrExpressionArgMorph new getOptionsSelector: #constants; choice: 'pi']. ^ ExpressionArgMorph new numExpression: '10'What it does:
Reports the selected constant.
this just made it so that the other one doesn't work. maybe make one lowercase. and change the second one to add a line.
Last edited by scimonster (2010-12-21 04:54:46)
Offline
now that i am trying to make some blocks myself, i realize the hard work involved in this. so, i'd like to take a minute to thank everyone for their time and effort in making the blocks featured here.
and of course-the scratch team for making scratch editable, and just making it.
great job everyone
Offline
Hey guys, I plan do do a block update today. In other news:
In just 10 hours the deadline for the christmas competition is due! Just click the link on my sig to find out more.
Development is beginning on a block library website - your thoughts on this are greatly appreciated!
Offline
some blocks i made:
http://img257.imageshack.us/i/deriativeblock.gif
http://img143.imageshack.us/i/deriative.gif
http://img34.imageshack.us/i/roundblock.gif (round down)
http://img249.imageshack.us/i/round.gif
http://img146.imageshack.us/i/rootblock.gif
http://img692.imageshack.us/i/epicroot.gif
http://img404.imageshack.us/i/primeblock.gif
http://img571.imageshack.us/i/primecheck.gif
http://img257.imageshack.us/i/factorialblock.gif
http://img814.imageshack.us/i/factorial.gif
there we go.
Last edited by beary605 (2010-12-22 18:39:45)
Offline
beary605 wrote:
some blocks i made:
[url][img]http://img257.imageshack.us/i/deriativeblock.gif[img][/url]
[url][/url]
[url][img]http://img34.imageshack.us/i/roundblock.gif[img][/url] (round down)
[url][/url]
[url][/url]
[url][/url]
[url][/url]
[url][/url]
[url][/url]
[url][/url]
is this where i post it? or should i post this somewhere else?
ugh, they won't load.
Offline
ssss wrote:
beary605 wrote:
some blocks i made:
[url][url]http://img257.imageshack.us/i/deriativeblock.gif
[url]http://img143.imageshack.us/i/deriative.gif[/url]
[url][url]http://img34.imageshack.us/i/roundblock.gif (round down)
[url]http://img249.imageshack.us/i/round.gif[/url]
[url]http://img146.imageshack.us/i/rootblock.gif[/url]
[url]http://img692.imageshack.us/i/epicroot.gif[/url]
[url]http://img404.imageshack.us/i/primeblock.gif[/url]
[url]http://img571.imageshack.us/i/primecheck.gif[/url]
[url]http://img257.imageshack.us/i/factorialblock.gif[/url]
[url]http://img814.imageshack.us/i/factorial.gif[/url]
is this where i post it? or should i post this somewhere else?
ugh, they won't load.
HAHAHA! This forum has run ot of space for images Can u believe it?
Offline
SSBBM wrote:
ssss wrote:
HAHAHA! This forum has run ot of space for images Can u believe it?
Wow, didn't know there was a limit. That's weird. I guess some old one we don't need should be deleted?
WRONG!
Did he put [img](website with image)[/img]?
Offline
ssss, bbbeb, beary605 WELCOME TO THE BLOCK LIBRARY!
Offline
scimonster wrote:
now that i am trying to make some blocks myself, i realize the hard work involved in this. so, i'd like to take a minute to thank everyone for their time and effort in making the blocks featured here.
and of course-the scratch team for making scratch editable, and just making it.
great job everyone
Thanks
Offline
If the image above (^) Is shown then we may have run out of picture space.
IT WORKED!
Last edited by Pecola1 (2010-12-21 23:58:23)
Offline
thecrazyguy wrote:
BYOB block: http://img522.imageshack.us/img522/6805/atxy.gif
Couldnt you just do report < < (x position) = ( AY R X) > AND < (y position) = ( AY R Y ) > >
Last edited by Pecola1 (2010-12-22 00:08:58)
Offline
Pecola1 wrote:
thecrazyguy wrote:
BYOB block: http://img522.imageshack.us/img522/6805/atxy.gif
Couldnt you just do report < < (x position) = ( AY R X) > AND < (y position) = ( AY R Y ) > >
It was testing the [img] tags
Offline
2 new blocks!
The first one is the distance from the sprite to the x/y position
The second is the distance from a x/y position to another x/y position
and
Offline
I've noticed some images not loading properly recently - namely the tinypic images such as TESTED and the Panther block image.... I do wonder why that is happening as it's clearly not just my computer as I initially thought... I can't see a thread running out of space because it's not hosting the image, it's just displaying it... I know there's a maximum amount of data (and characters) you can have in a post but I can't see why this is happening... maybe the image hosters are to blame with a technical problem at their end?
Offline