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

#1 2010-09-02 18:41:23

IHeartGaming
Scratcher
Registered: 2010-07-23
Posts: 1000+

mouse down block won't work

The "mouse down?" block in Sensing doesn't work!?!?!

What in the world is going on?!?!?!?!?!?!?!?!?

Last edited by IHeartGaming (2010-09-02 18:42:35)


IHeartGaming

Offline

 

#2 2010-09-02 18:48:35

AtomicBawm3
Scratcher
Registered: 2009-06-27
Posts: 1000+

Re: mouse down block won't work

You're being pretty vague... could you post the script so that we can take a look at it?


http://i50.tinypic.com/j0yw0p.jpg

Offline

 

#3 2010-09-02 18:51:29

IHeartGaming
Scratcher
Registered: 2010-07-23
Posts: 1000+

Re: mouse down block won't work

Code:

When green flag clicked
Forever if mouse down and touching color [dark red]
  broadcast CloseWindow

Code:

When green flag clicked
Forever
  go to mouse-pointer

Yep, two scripts.

Last edited by IHeartGaming (2010-09-02 18:52:39)


IHeartGaming

Offline

 

#4 2010-09-02 19:00:05

fg123
Scratcher
Registered: 2008-11-13
Posts: 1000+

Re: mouse down block won't work

Is it touching red when you click?


Hai.

Offline

 

#5 2010-09-02 19:34:45

AtomicBawm3
Scratcher
Registered: 2009-06-27
Posts: 1000+

Re: mouse down block won't work

Make it one script into this:

Forever
  Go to (mouse-pointer)
  If (touching color dark red) and (mouse down)
    Broadcast (close window)
  end if
end forever

This should work.  I don't really like using the Forever If blocks just because they're one of the most unreliable blocks in my opinion.  This method is far more likely to work.


http://i50.tinypic.com/j0yw0p.jpg

Offline

 

#6 2010-09-03 07:14:35

Greentabby55
Scratcher
Registered: 2010-05-04
Posts: 50

Re: mouse down block won't work

Put this in the thing you're clicking.

<when[ Sprite? ]clicked>
<forever>
<if><mouse down?>
<broadcast[ something
<end>
<end>

Last edited by Greentabby55 (2010-09-03 07:14:48)

Offline

 

#7 2010-09-03 09:24:22

IHeartGaming
Scratcher
Registered: 2010-07-23
Posts: 1000+

Re: mouse down block won't work

I got it.


IHeartGaming

Offline

 

Board footer