Hides or shows a stamp, text object, or circle. Here's a program that hides or shows a stamp, some text, and a circle every time you tap the screen.
Note that hiding a stamp, text object, or circle does not delete it. Once you add an object, it never gets deleted unless you call reset().
Hidden stamps (whether they got that way via hide() or explode() or pop()) generally don't interact with the "world". For example, if you check for hit() vs. a hidden sprite, false will be returned.
This code will show text, because both stamps are visible and overlap.
This will not show text, because one of the stamps is hidden, and therefore can't be "hit."