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

#176 2009-03-27 17:27:14

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

Re: Scratch 1.4

As for the comment block...

I like the way they've handled this in version 1.4

I can hardly wait for its release!


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

 

#177 2009-03-27 17:38:55

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

Re: Scratch 1.4

ram123 wrote:

I think they should put this <when green flag clicked>
                                         <forever>
                                         <if<touching[ground >
                                         <<move(10)steps>
                                         <end>

This is possible with blocks.

<when green flag clicked>
<forever>
   <if> <touching[ ground (sprite)
  <move( 10 )steps>
   <end>
<end>


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

Offline

 

#178 2009-03-27 18:02:02

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

Re: Scratch 1.4

FiremariomkiZX wrote:

More space for the Site. *so like 30MB can be supported*

We are talking about the program. Not the site.

fg123 wrote:

how about when enter key pressed.

Enter key is like the green flag.


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

Offline

 

#179 2009-03-30 12:57:23

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

Re: Scratch 1.4

I would like to be able to link to another project.

For example, at some point in my project, I would like to cause the user to be taken to another scratch project.


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

 

#180 2009-03-30 16:02:51

Paddle2See
Scratch Team
Registered: 2007-10-27
Posts: 1000+

Re: Scratch 1.4

BoltBait wrote:

I would like to be able to link to another project.

For example, at some point in my project, I would like to cause the user to be taken to another scratch project.

I thought this would be a cool feature too, kind of like the old BASIC "chain" command.  As I thought about it more, I wasn't sure how you would deal with the multiple environment issues though.  You would want it to work in Scratch, which lives in various file systems so you would want to be able to put in a filepath to the target project - but it would have to be OS independent.  Then, you also would want it to work online, where you would need a URL to the target project.  So that would present some difficulties to the implementation  smile


http://i39.tinypic.com/2nav6o7.gif

Offline

 

#181 2009-03-30 16:39:25

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

Re: Scratch 1.4

True.  And, it would also have to be "safe" for the kids.

That is why I would limit it to linking to a project on the Scratch web site ONLY!

Now, personally, I would love to have MUCH more flexibility (like the ability to link to ANY url).  But, at a minimum, I would like to be able to link to other scratch projects.

I was thinking that this would be very useful for creating menus of games/projects or long games (like adventure games that get too big for a single project).

Now, what would be really cool, is the ability to send a piece of data along with the chain request!  That way, we could continue a long game and save some information (like score or inventory, etc.) between sessions.

Last edited by BoltBait (2009-03-30 16:41:47)


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

 

#182 2009-04-03 14:05:53

Stickman704
Scratcher
Registered: 2009-01-31
Posts: 1000+

Re: Scratch 1.4

I would like a
glide (number) seconds to (Sprite)


Dun dun dun dun dun dun.... dun dun dun dun dun dun...  tongue

Offline

 

#183 2009-04-04 17:52:00

billyedward
Scratcher
Registered: 2008-01-03
Posts: 500+

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

It would work.
In fact, I've done it, and the (( )^( )) block will be out in streak 0.1!
The thing about a block for that, rather than repeated multiplication, is that you can change the number of times it multiplies, not just what number it multiplies.
I will see if I can make a tutorial on how to do this, as it is really rather easy to do.


"I'd love to change the world, but they haven't released the source code yet."
Check out the latest version of Streak --> http://billy.scienceontheweb.net/Streak

Offline

 

#184 2009-04-04 18:02:01

billyedward
Scratcher
Registered: 2008-01-03
Posts: 500+

Re: Scratch 1.4

bhz wrote:

bounce off color [ ]
bounce off [ ]

This would not work, or would be more trouble than it's worth.
You see, it could turn around when it touches a colour, but that could be done with
<when green flag clicked>
<forever if><touching color[ FFFF00 ]>
<turn cw( 180 )degrees>
<end>

To actually have it bounce, scratch will have to sample the whole screen, single out that colour, find the portion it is hitting, determine the tangent, and rotate the sprite. Also, because of how squeak sketchMorphs work, the same would have to be done on the transparent part of a sprite, to bounce off it.
Also, because one pixel could trigger this block, when it hits scratch will return every direction as that of the surface(as you need at least 2 points to plot a line), and that will not work.

Oh well, good idea, though!


"I'd love to change the world, but they haven't released the source code yet."
Check out the latest version of Streak --> http://billy.scienceontheweb.net/Streak

Offline

 

#185 2009-04-05 07:38:07

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

Re: Scratch 1.4

Stickman704 wrote:

I would like a
glide (number) seconds to (Sprite)

glide [ number ] secs to x: [ ( x position ) of ( sprite ) ] y: [ ( y position ) of ( sprite) ]

Offline

 

#186 2009-04-09 02:53:56

BlueFlame
Scratcher
Registered: 2008-08-17
Posts: 100+

Re: Scratch 1.4

harrypotter345 wrote:

Number the scripts so the following could done:
Stop [Script #]
Stop [Script #] in [seconds] after [happening*]
Play [Script #] after [happening*]
Play [Script #] after [Other script #] has stopped
Stop [Script #] after [Other script #] has started playing

*By happening I mean... flag clicked or after a broadcast has been received.
smile    smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile   smile

Genious Idea. That was totally what I was thinking!!!


Scape - The mindbending puzzle by coolstuff  big_smile

Offline

 

#187 2009-04-09 02:57:37

BlueFlame
Scratcher
Registered: 2008-08-17
Posts: 100+

Re: Scratch 1.4

alexpja wrote:

FiremariomkiZX wrote:

More space for the Site. *so like 30MB can be supported*

We are talking about the program. Not the site.

fg123 wrote:

how about when enter key pressed.

Enter key is like the green flag.

Enter key is like the green flag?
Yeah, well...       It works on Scratch but not on the website so...
I propose that they make it so the green flag is not enter on Scratch. Then make a totally new block: The enter key pressed block.

Ingenious.


Scape - The mindbending puzzle by coolstuff  big_smile

Offline

 

#188 2009-04-09 17:50:12

1st_look-shot-kill
Scratcher
Registered: 2009-01-29
Posts: 3

Re: Scratch 1.4

Make it so that a sprite's point of rotation can change!
That would make true 3D games a bit easier to make.

Offline

 

#189 2009-04-10 10:20:23

jokoman
Scratcher
Registered: 2008-11-06
Posts: 100+

Re: Scratch 1.4

how about a block like-broadcast (Random broadcast thingy) for (X) secs to (random sprite) or just-broadcast (Random broadcast thingy) to (random sprite).  smile   smile   smile   smile   smile

Last edited by jokoman (2009-04-10 10:22:16)

Offline

 

#190 2009-04-13 17:30:20

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

Re: Scratch 1.4

I would like to be able to read and write cookies.

This would allow a game to have a local high score list that would last more than just the current run of the program.

Now, if this was implemented, you would have to limit the scope of the cookie code to only the current game.  You could do this by prepending the game number to the cookie name.

Last edited by BoltBait (2009-04-13 17:31:13)


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

 

#191 2009-04-17 06:17:58

deatheater
Scratcher
Registered: 2008-04-11
Posts: 1000+

Re: Scratch 1.4

What about a, pen above sprite: sprite 1, block?

Offline

 

#192 2009-04-17 10:26:22

BWOG
Scratcher
Registered: 2008-09-19
Posts: 1000+

Re: Scratch 1.4

Make it be able to load .bmp files, and maybe .ogg music files

Offline

 

#193 2009-04-17 12:06:14

DsGameMaker
Scratcher
Registered: 2009-04-14
Posts: 89

Re: Scratch 1.4

NIce suggestion!

Offline

 

#194 2009-04-17 13:47:35

henley
Scratcher
Registered: 2008-06-21
Posts: 1000+

Re: Scratch 1.4

If you are making a game and you move something with the cursor, you don't want the REAL computer cursor in the way so a block that says : [set sprite to cursor] would be nice but i am not sure if it is a possible block to make. The function of the block would be to change the look of your cursor to a sprite in scratch. And it would hide the sprite making the mouse pointer into the sprite instead of the normal look of the cursor.

                                             One of Henley's
                                         ...:::Bright Ideas:::...


"I've worked so hard for you and you give me nothing in return. Do you need help... Or do I?"

Offline

 

#195 2009-04-17 17:21:30

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

Re: Scratch 1.4

The block could make the cursor hide the computer cursor then you have to do all the programming in Scratch to make it work.

Offline

 

#196 2009-04-17 19:30:46

DsGameMaker
Scratcher
Registered: 2009-04-14
Posts: 89

Re: Scratch 1.4

Magnie wrote:

The block could make the cursor hide the computer cursor then you have to do all the programming in Scratch to make it work.

Cursor hide isn't good.How will you build your project if you click the green Flag!?!?!!

Offline

 

#197 2009-04-17 21:59:25

happysmiles
Scratcher
Registered: 2009-02-15
Posts: 500+

Re: Scratch 1.4

make a "wait until broadcast ______"<wait until><broadcast[ _______

Last edited by happysmiles (2009-04-17 21:59:53)


Sample Quiz v.3.  roll  Robot-X  wink  Baking Cookies  big_smile  Coming Soon:
http://img154.imageshack.us/img154/6876/thisone.png

Offline

 

#198 2009-04-18 16:23:04

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

Re: Scratch 1.4

jokoman wrote:

how about a block like-broadcast (Random broadcast thingy) for (X) secs to (random sprite) or just-broadcast (Random broadcast thingy) to (random sprite).  smile   smile   smile   smile   smile

Use multiple broadcasts.
For the for X secs part...
If timer in use:
Make a variable. I'll call it v.
The broadcast will be called b.
I'll call the time you want the broadcast to work t.
Scripts:
set [ v ] to [ timer ]
repeat until [ ( timer ) > ( [ v ] + [ t ] ) ]
  broadcast [ b ]

Timer not in use:
No variable needed. Just the broadcast b.
the time you want the broadcast to work will again be t.
Scripts:
reset timer
repeat until [ ( timer ) > ( t ) ]
  broadcast [ b ]

happysmiles wrote:

make a "wait until broadcast ______"<wait until><broadcast[ _______[/blocks]

Make a variable. I'll call it v.
The broadcast will be called b.
Scripts:
when flag clicked
set [ v ] to [ 0 ]

when I receive [ b ]
set [ v ] to 1
wait [ 1 ] secs
set [ v ] to 0

wait until [ b ]
= wait until [ ( b ) = ( 1 ) ]

Last edited by bhz (2009-04-18 16:27:52)

Offline

 

#199 2009-04-18 20:13:53

ManaUser
Scratcher
Registered: 2009-03-11
Posts: 100+

Re: Scratch 1.4

DsGameMaker wrote:

Cursor hide isn't good.How will you build your project if you click the green Flag!?!?!!

How about cursor change then. Like the cursor could have costumes basically.


http://i.imgur.com/SPYSM.gif http://i.imgur.com/t9k1Z.gif http://i.imgur.com/OwYVa.gif http://i.imgur.com/0qlZq.gif

Offline

 

#200 2009-04-18 20:17:37

archmage
Scratcher
Registered: 2007-05-18
Posts: 1000+

Re: Scratch 1.4

Flash has a cursor hide command. Cursor changing can't be done because it involves messing with system files.


Hi, I am Archmage coder extraordinaire. I do Scratch,pascal,java,php,html, AS2 and AS3. Leave me a message if you want coding advice. Also check out my personal website, lots of good stuff about web development, Flash, and Scratch (v1 and v2) !

Offline

 

Board footer