In the Scratch editor's upper left corner there are 8 catagories of items. I would like an additional catagory called "Favorites" where I can place all of my favorite blocks and variables for easy access while scripting.
Right now, I drag a a few items out into the scripts area and "right-click, duplicate" to keep them handy.
Last edited by BoltBait (2009-03-10 13:21:33)
Offline
You can do the bounce off useing blocks that already exist http://scratch.mit.edu/projects/Targethero/448805
Offline
I would like to see a Comment block. This would do nothing to the running code, but allow explanations in the scripts view. Currently, I use a "set comment variable to ...." instead of a real comment block.
A real comment block would be better because it would be a different color (so it stands out) and wouldn't degrade performance of the running script.
Offline
BoltBait wrote:
I would like to see a Comment block. This would do nothing to the running code, but allow explanations in the scripts view. Currently, I use a "set comment variable to ...." instead of a real comment block.
A real comment block would be better because it would be a different color (so it stands out) and wouldn't degrade performance of the running script.
Yes! That's what they used to have and now the comment block is just a bubble.
Offline
BoltBait wrote:
In the Scratch editor's upper left corner there are 8 catagories of items. I would like an additional catagory called "Favorites" where I can place all of my favorite blocks and variables for easy access while scripting.
Right now, I drag a a few items out into the scripts area and "right-click, duplicate" to keep them handy.
That would be great, I always end up having to recreate code or duplicate it.
Offline
How about a block that will really stop all activity and not allow it to continue? You know, like an END block that really ends and won't allow anything to happen until the green flag is pressed again?
[blocks]Currently, if you use <stop all>, the user can still click on things which may allow scripts to start running again.[/blocks]
Offline
How about some very basic string handling like this:
A block that would break a string up into characters or words and place the results into a list*:
[ Unpack [words v] of (MyString) into (MyList) ]
[ Unpack [characters v] of (MyString) into (MyList) ]
And the reverse*:
[ Pack (MyList) into (MyString) as [words v] ]
[ Pack (MyList) into (MyString) as [characters v] ]
I think this would be the absolute minimum about of string handling you could get by with to actually create useful programs.
*Using "words" would insert spaces between entries (or split at spaces), "characters" would not.
Offline
filo5 wrote:
When 1.4 is coming out?
As far as I know it comes out when it comes out. (Maybe in a month Take a long time to program stuff. Took practically 3 months to have 1.3 come out.)
Offline
Offline
Targethero wrote:
You can do the bounce off useing blocks that already exist http://scratch.mit.edu/projects/Targethero/448805
Doesn't really work perfectly
Point it in direction 90 and the stick in direction45. wierd
Offline
I want a
repeat for _ seconds block
Offline
bosox397 wrote:
I want a
repeat for _ seconds block
Me too! That would help so much! It would be one of the best improvements to Scratch ever!
Offline
bhz wrote:
Bluestribute wrote:
What about a power block. Instead of doing something like:
2*2*2*2*2
You could do:
2^5
It would kinda be like the mod block, but powersWill this work? or is it more complicated than doing x*x*x.....?
http://scratch.mit.edu/projects/bhz/260290
there could also be a factorial block
Last edited by hamsterkirby (2009-03-22 15:37:18)
Offline
And could Quick Look be implemented on the Mac version of Scratch 1.4?
Offline
BoltBait wrote:
I would like to be able to "right-click change an IF block to an IF ELSE block".
That would be invaluable! I don't know how many times I've had to do that by hand.
Offline
filo5 wrote:
I posted it alredy but it will be great when you add text functions (charAt(),comparing texts,maybe even md5 encoding).
PS. When 1.4 is coming out?
Paddle2see wrote:
Sorry, no one has told me the date. It is in Beta testing now so it might be fairly soon.
Offline
How about a block like this:
--,__,----------------------------------------
[ Stop All Scripts Except This One ]
--,__,----------------------------------------
Where all scripts would stop before the next block executes.
Offline
Xkhaoz wrote:
bosox397 wrote:
I want a
repeat for _ seconds blockMe too! That would help so much! It would be one of the best improvements to Scratch ever!
I think the timer will come in handy
reset timer
repeat until ( timer > 2 )
scripts here
end
hamsterkirby wrote:
bhz wrote:
Bluestribute wrote:
What about a power block. Instead of doing something like:
2*2*2*2*2
You could do:
2^5
It would kinda be like the mod block, but powersWill this work? or is it more complicated than doing x*x*x.....?
http://scratch.mit.edu/projects/bhz/260290there could also be a factorial block
http://scratch.mit.edu/projects/bhz/382082
again...too complicated?
BoltBait wrote:
I would like to be able to "right-click change an IF block to an IF ELSE block".
I would love that
Offline
demosthenes wrote:
BoltBait wrote:
I would like to see a Comment block. This would do nothing to the running code, but allow explanations in the scripts view. Currently, I use a "set comment variable to ...." instead of a real comment block.
A real comment block would be better because it would be a different color (so it stands out) and wouldn't degrade performance of the running script.Yes! That's what they used to have and now the comment block is just a bubble.
i hate the new cbox (comment box)
Offline