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

#1 2010-07-06 13:17:20

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

New Blocks And Ideas For The Next Version

<stop script> and <stop all> aren't that useful to me 'cause I would want stop sprite.

I think <next costume> is useful but I need previous costume aswell.

<go to[ anywhere] would be useful.

<when[ enter ]key pressed>, <when[ backspace ]key pressed>, <when[ [ ]key pressed> and stuff like that.

<forever if> I recive within (  ) secs] would be cool.

<else>

<end>

If I think of any more I will post them here.

Last edited by sonicjosh (2010-07-06 13:18:50)


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#2 2010-07-06 13:18:41

juststickman
Scratcher
Registered: 2009-05-31
Posts: 1000+

Re: New Blocks And Ideas For The Next Version

Go to anywhere makes no sense...


http://is.gd/iBQi2 Add grob to your sig and help with world dominiation!http://is.gd/iBQ9Q                                                             Hey guys, we're seriously naming our team bob?

Offline

 

#3 2010-07-06 13:19:37

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

Yeah it does! It would make the sprite go anywhere.


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#4 2010-07-06 13:33:13

TimeFreeze
Scratcher
Registered: 2008-08-11
Posts: 500+

Re: New Blocks And Ideas For The Next Version

previous costume: [switch to costume (costume # -1)]
go to anywhere: [go to x:(pick random -240 to 240) y:(pick random -180 to 180)]

<I recieve> has been suggested many times, it's not happening.


There are 10 types of people in this world: Those who understand binary, and those who don't. --[insert unrelated transition]-- GRANDILOQUENCE FTW!

Offline

 

#5 2010-07-06 13:37:48

juststickman
Scratcher
Registered: 2009-05-31
Posts: 1000+

Re: New Blocks And Ideas For The Next Version

sonicjosh wrote:

Yeah it does! It would make the sprite go anywhere.

What do you mean by anywhere? Show a mockup or something, going anywhere doesn't make sense in programming.


http://is.gd/iBQi2 Add grob to your sig and help with world dominiation!http://is.gd/iBQ9Q                                                             Hey guys, we're seriously naming our team bob?

Offline

 

#6 2010-07-06 14:47:56

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: New Blocks And Ideas For The Next Version

sonicjosh wrote:

Yeah it does! It would make the sprite go anywhere.

Anywhere on the screen? You can just use this:

Code:

Go to X: (pick random -240 to 240) Y: (pick random -180 to 180)

Although I'm not entirely sure what you're talking about, so I could have dramatically misevaluated what you were trying to say  big_smile

Offline

 

#7 2010-07-06 15:05:05

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

Thanks for everyone who told me you can do that stuff already.

<go to[ anywhere] = <go to x sad  <pick random( -240 )to( 240 )y sad  <pick random( -180 )to( 180 )

previous costume = I'm not sure about this one yet. Can you help me out?


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#8 2010-07-06 15:08:38

coolstuff
Community Moderator
Registered: 2008-03-06
Posts: 1000+

Re: New Blocks And Ideas For The Next Version

sonicjosh wrote:

Thanks for everyone who told me you can do that stuff already.

<go to[ anywhere] = <go to x sad  <pick random( -240 )to( 240 )y sad  <pick random( -180 )to( 180 )

previous costume = I'm not sure about this one yet. Can you help me out?

Something like this should do the trick:

Code:

switch to costume ((costume #) - (1))

Offline

 

#9 2010-07-06 15:14:18

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

Now I get it!

previous costume = <switch to costume[ (( (costume #)  <-> 1 ))


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#10 2010-07-06 15:24:22

BlackMarket
Scratcher
Registered: 2010-06-05
Posts: 100+

Re: New Blocks And Ideas For The Next Version

For the forever if i recieve within ( ) seconds...
thats the stupidest thing ever.
just do this:

make a variable, name it "recieve"
then, wherever you WOULD HAVE broadcasted, change it to setting the variable to yes.

Now use this script:

http://www.freeimagehosting.net/uploads/a5c1b4f7dc.gif


http://img844.imageshack.us/img844/3924/blackmarketlogo.png
                                      I'm (your) Back.

Offline

 

#11 2010-07-06 15:27:33

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

If you looked at the title then will have noticed it also said ideas. I forgot to put those.

1. It would be nice if we could use controllers on Scratch for example:

<When X button pressed> could be a PS3 block. The XBox 360 controller block would be <When A button pressed>. If you could use a Wiimote then you could have
<When Motion detected>. Then again that block could be used for the PS3 controller because of Sixaxis...

2. Use of a mic would also be nice. (If it isn't already possible.)

Instead of just a sensor boards mic we could use ordinary mics.

Thats all I can think of for now...


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#12 2010-07-06 15:33:47

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

Thanks BlackMarket for letting me know that that was possible. I'm not going to put that one down like the other ones and besides BlackMarket already made a picture.


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

#13 2010-07-06 15:35:16

BlackMarket
Scratcher
Registered: 2010-06-05
Posts: 100+

Re: New Blocks And Ideas For The Next Version

sonicjosh wrote:

If you looked at the title then will have noticed it also said ideas. I forgot to put those.

1. It would be nice if we could use controllers on Scratch for example:

<When X button pressed> could be a PS3 block. The XBox 360 controller block would be <When A button pressed>. If you could use a Wiimote then you could have
<When Motion detected>. Then again that block could be used for the PS3 controller because of Sixaxis...

2. Use of a mic would also be nice. (If it isn't already possible.)

Instead of just a sensor boards mic we could use ordinary mics.

Thats all I can think of for now...

1. Only thing is, you'd need the adapters and all the programs  hmm

2. Go to the SOUNDS tab of any sprite and click record  smile


http://img844.imageshack.us/img844/3924/blackmarketlogo.png
                                      I'm (your) Back.

Offline

 

#14 2010-07-06 15:42:55

BlackMarket
Scratcher
Registered: 2010-06-05
Posts: 100+

Re: New Blocks And Ideas For The Next Version

sonicjosh wrote:

Thanks BlackMarket for letting me know that that was possible. I'm not going to put that one down like the other ones and besides BlackMarket already made a picture.

You're welcome bud  smile


http://img844.imageshack.us/img844/3924/blackmarketlogo.png
                                      I'm (your) Back.

Offline

 

#15 2010-07-06 16:43:06

sonicjosh
Scratcher
Registered: 2007-10-28
Posts: 86

Re: New Blocks And Ideas For The Next Version

You wouldn't need to get the adapters because the PS3 controller conects up with the charger cable and the XBox controller can be bought with a wire attached (and it's cheaper too  smile !) Though you would need bluetooth connected to your computer for a Wiimote.

When you say programs do you mean drivers? If you do then when you plug the controller in they automatically install (for me anyway...)

When I said mic I ment like when you make a noise and the sensor board picks it up not put sound into projects.. For example if you said anything into the mic it would do what the block said for it to do. smile


http://i35.tinypic.com/14yacn6.jpg
Need help with your mod? Visit Mod Central!

Offline

 

Board footer