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

#151 2009-03-09 18:05:41

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

I would like better control over the look of displayed variables... font, color, etc.


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#152 2009-03-09 18:13:35

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

I would like the ability to type in the scripts directly.  Drag-and-drop takes forever!


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#153 2009-03-10 13:17:24

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

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)


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#154 2009-03-10 16:03:33

Targethero
Scratcher
Registered: 2008-09-08
Posts: 1000+

Re: Scratch 1.4

You can do the bounce off useing blocks that already exist http://scratch.mit.edu/projects/Targethero/448805


http://img97.imageshack.us/img97/3981/targethero2.png http://ls.gd/bo

Offline

 

#155 2009-03-10 17:02:57

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

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.


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#156 2009-03-10 22:53:26

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

I would like to change the location and look of a variable programmatically.

Last edited by BoltBait (2009-03-18 11:34:41)


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#157 2009-03-12 07:51:02

demosthenes
Retired Community Moderator
Registered: 2008-02-19
Posts: 1000+

Re: Scratch 1.4

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've taken a long hiatus, but I still visit sometimes. Give me some time to answer any messages you post on my projects!

Offline

 

#158 2009-03-12 07:52:02

demosthenes
Retired Community Moderator
Registered: 2008-02-19
Posts: 1000+

Re: Scratch 1.4

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.


I've taken a long hiatus, but I still visit sometimes. Give me some time to answer any messages you post on my projects!

Offline

 

#159 2009-03-17 14:16:17

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

How about a Stop block that stops all scripts for the current sprite?

[blocks]Something between a <stop script> and <stop all>.[/blocks]


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#160 2009-03-17 14:21:16

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

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]


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#161 2009-03-17 14:29:12

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

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.


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#162 2009-03-18 11:25:22

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Scratch 1.4

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?


Converting my Scratch projects to Python!

Offline

 

#163 2009-03-18 13:38:36

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Scratch 1.4

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

 

#164 2009-03-22 05:37:24

ihaveamac
Scratcher
Registered: 2007-09-22
Posts: 1000+

Re: Scratch 1.4

I can't wait for 1.4 to come out!


~ihaveamac - visit ihaveamac.net

Offline

 

#165 2009-03-22 07:06:34

bhz
Scratcher
Registered: 2008-07-06
Posts: 100+

Re: Scratch 1.4

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

 

#166 2009-03-22 11:03:11

bosox397
Scratcher
Registered: 2008-02-17
Posts: 1000+

Re: Scratch 1.4

I want a

repeat for _ seconds block


Dear Scratch Users,
I'm done with scratch, or at least making projects. I have made one last big game, thats both fun and teaches a lesson about water. It'd mean a lot if you gave me feedback.                              http://scratch.mit.edu/projects/bosox397/569201

Offline

 

#167 2009-03-22 14:24:46

Xkhaoz
Scratcher
Registered: 2008-11-27
Posts: 1000+

Re: Scratch 1.4

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!


http://img2.imageshack.us/img2/7884/73593151.jpg Contest: http://scratch.mit.edu/projects/Xkhaoz/546746 I am part of the C.O.U.W.D.F.P.

Offline

 

#168 2009-03-22 15:36:25

hamsterkirby
Scratcher
Registered: 2009-03-13
Posts: 100+

Re: Scratch 1.4

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 powers

Will 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)


Y-100 and Y-107 shall pwn.
http://tinyurl.com/yaxc82v/.gif

Offline

 

#169 2009-03-23 08:28:51

hamsterkirby
Scratcher
Registered: 2009-03-13
Posts: 100+

Re: Scratch 1.4

And could Quick Look be implemented on the Mac version of Scratch 1.4?


Y-100 and Y-107 shall pwn.
http://tinyurl.com/yaxc82v/.gif

Offline

 

#170 2009-03-23 13:25:57

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

I would like to be able to "right-click change an IF block to an IF ELSE block".


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#171 2009-03-24 19:24:25

demosthenes
Retired Community Moderator
Registered: 2008-02-19
Posts: 1000+

Re: Scratch 1.4

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.


I've taken a long hiatus, but I still visit sometimes. Give me some time to answer any messages you post on my projects!

Offline

 

#172 2009-03-25 16:48:14

hamsterkirby
Scratcher
Registered: 2009-03-13
Posts: 100+

Re: Scratch 1.4

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.


Y-100 and Y-107 shall pwn.
http://tinyurl.com/yaxc82v/.gif

Offline

 

#173 2009-03-27 16:42:33

BoltBait
Scratcher
Registered: 2009-03-09
Posts: 1000+

Re: Scratch 1.4

How about a block like this:
--,__,----------------------------------------
[ Stop All Scripts Except This One ]
--,__,----------------------------------------

Where all scripts would stop before  the next block executes.


Animated sigs must be banned!
http://boltbait.com/j.pnghttp://boltbait.com/s.pnghttp://boltbait.com/d.pnghttp://boltbait.com/a.pnghttp://boltbait.com/p.png

Offline

 

#174 2009-03-27 16:50:14

bhz
Scratcher
Registered: 2008-07-06
Posts: 100+

Re: Scratch 1.4

Xkhaoz wrote:

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!

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 powers

Will 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

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

 

#175 2009-03-27 17:22:10

alexpja
Scratcher
Registered: 2008-06-12
Posts: 100+

Re: Scratch 1.4

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)


Sorry for never being on... I'm on Onverse now. So get inside, and Onverse yourself. Cya 'round.

Offline

 

Board footer