sparks wrote:
Pecola1 wrote:
sparks wrote:
@Librarians: You may want to check out the website development thread, I've added page editing support for some pages!
I'll be sure to! Last time I went on (the other day) everything said it was being worked on.
There's an "admin" link at the bottom of the pages in the footer
Yeah I saw.
Great idea, but I don't quite see why we should use that if were not devs.
Also, I found no where is the site even mentioned on this forum, and on the website dev thread it is not listed on the first post.
Though since it is in dev I see why it is not on this forum, but you should at least post it on the development forum.
Offline
DigiTechs wrote:
Just to ask, since about 50% (of what i've seen) of the images on the Block Libary, can't you remove the [GET ANTIDOTE MESSAGE HERE] message?
I'm not sure we can yet, because the images in the first post haven't been transferred.
Offline
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion
Offline
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion
Seems like %C works, but not %c.
Offline
I can't find any blocks... Has there been an update?
Offline
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion
It seems like a BYOB c-shaped input, which CAN be on reporters.
Offline
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion
%c is cslot, %C is color
Offline
roijac wrote:
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion%c is cslot, %C is color
What do you mean? %c is a color arg with a palette and %C is a color arg without a palette.
Offline
dreamod wrote:
roijac wrote:
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion%c is cslot, %C is color
What do you mean? %c is a color arg with a palette and %C is a color arg without a palette.
Yes, but he did it this way to allow for the BYOB blocks, which allow a C insert. Hence the %c for it.
Offline
dreamod wrote:
roijac wrote:
dreamod wrote:
NXII, I found a bug in your block renderer, I tried inserting a color arg morph (%c) and it changed the shape of the block to a mix between of a c block and a reporter.
http://blocks.scratchr.org/images/blocks/spec.php?s=glitch-block%c%20glitch&type=r&color=motion%c is cslot, %C is color
What do you mean? %c is a color arg with a palette and %C is a color arg without a palette.
Because there is no visual difference between %c and %C so why have 'em both when one can represent c inputs?
Offline
joefarebrother wrote:
dreamod wrote:
roijac wrote:
%c is cslot, %C is colorWhat do you mean? %c is a color arg with a palette and %C is a color arg without a palette.
Because there is no visual difference between %c and %C so why have 'em both when one can represent c inputs?
that's a good point.
Offline
I made a block, it saves the pen marks on screen to a given file.
block spec
('save pen trails to %s' #- #savePenTrailesTo:)
code
savePenTrailesTo: t1 | t2 | t2 _ t1. (t2 endsWith: '.gif') ifFalse: [t2 _ t2 , '.gif']. GIFReadWriter putForm: (owner penTrailsForm) onFileNamed: t2
Offline
Hey! Can someone make a block like this for me?
<touching [corner v]?>Thanks!
Offline
bazzasaysLol wrote:
Hey! Can someone make a block like this for me?
<touching [corner v]?>Thanks!
As in corner of the stage?
Offline
dreamod wrote:
I made a block, it saves the pen marks on screen to a given file.
block specCode:
('save pen trails to %s' #- #savePenTrailesTo:)code
Code:
savePenTrailesTo: t1 | t2 | t2 _ t1. (t2 endsWith: '.gif') ifFalse: [t2 _ t2 , '.gif']. GIFReadWriter putForm: (owner penTrailsForm) onFileNamed: t2
Sweet block, can't wait to try it out on my pc!
Offline
http://blocks.scratchr.org/images/blocks/spec.php?s=Glitch!!!%20&color=edsedryryr
glitch!!!
Offline
Squawkers13 wrote:
http://blocks.scratchr.org/images/blocks/spec.php?s=Glitch!!!%20&color=edsedryryr
glitch!!!
Well of course if you type in random rubbish, it's not going to produce a result you are expecting.
Offline
Squawkers13 wrote:
http://blocks.scratchr.org/images/blocks/spec.php?s=Glitch!!!%20&color=edsedryryr
glitch!!!
It's not a glitch, it's a syntax error. You've failed to specify a blockspec, category etc.
Offline
I made a "for-loop" block, similar to the "# from (x) to (y)" block made by MathWizz, but it takes a list.
Block image:
http://bit.ly/KLfvow
Block script image:
http://bit.ly/KLfIYM
Sprite file with the block:
http://bit.ly/KmvWmC
I'm new to the whole block-sharing thing, although I've used this site a lot to see other people's blocks. So, please let me know if I did anything wrong in the process of sharing my block. I'm looking forward to uploading more of the cool blocks I've created, but I'm doing this one alone first to see if I did it right.
Also, I'd prefer if these files find a home on your server, since I'd rather not host the files on my Public Dropbox indefinitely.
Thanks!
--Porygon131
Offline
There is already a
(#) for each (item) in (-list-)
block, # and item are upvars, list is a list input
Offline
Wow, the website is turning out AMAZING!
Offline
Here's a BYOB block I made called "range."
It's similar to the range function in Racket and Python. It takes three arguments, possibly (range 0 5 1), and returns a list of the range of numbers from the first argument up to but not including the second argument, using the third argument to step each time.
Example:
(range from 0 to 5 step 1) = (0, 1, 2, 3, 4)
It also works in reverse if you provide a negative step.
(range from 5 to 0 step -2) = (5, 3, 1)
Here are the files.
Image of block:
http://dl.dropbox.com/u/43555158/Temp/BYOB/rangeBlock/rangeBlock.gif
Image of block script:
http://dl.dropbox.com/u/43555158/Temp/BYOB/rangeBlock/rangeBlockScript.gif
Sprite file with block:
http://dl.dropbox.com/u/43555158/Temp/BYOB/rangeBlock/rangeBlock.ysp
Enjoy!
--Porygon131
Offline
i would like to request a block
for panther
hide cursor show cursor change cursor icon to [regular v]hide and show cuyrsor are self explanetory and
Offline
stickdude123 wrote:
i would like to request a block
for pantherhide cursor show cursor change cursor icon to [regular v]hide and show cuyrsor are self explanetory and
change cursor ranges to
-regular
-question
-loading
-link
please can someone try making these?
For the show and hide cursor blocks, just use the same code as the blocks in the Scratch section of the block library. I know how to make the change cursor block in Scratch, but I don't know how to make lists in Panther without opening the browser.
Offline