From Test-Scratch-Wiki
This article or section documents a feature not included in the current version of Scratch (3.0). It is only useful from a historical perspective. |
This tutorial shows you how to detect if the right mouse is down in Scratch 1.4.
Note: | This will only work offline in presentation mode. |
Script
The When () Clicked block fires either when the item is clicked with the left mouse button or the right mouse button. The Mouse Down? block, however, only reports true if the left mouse button is down.
when Stage clicked if <mouse down?> set [mouse v] to [left] else set [mouse v] to [right] end
You now have a script that will detect if the right mouse button is clicked.
Example Uses
- Adding a hidden menu
- Making Operating System projects more realistic