We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I am interested in learning how to fade tint(255,255) to tint(255,0) with a key press, and then from tint(255,0) back to tint(255,255) with a key release on a movie. I can't figure out how to do this with imported video!
Answers
There is nothing different about using tint with an image or with a video frame.
Here is how you use
tint()
, example from the reference:Notice that it is called before
image()
in draw.Now here is a basic movie example, from the Video library reference:
Notice that it displays the video frame with
image()
.So, to recap -- call
tint()
beforeimage()
. Whether a still image or a video frame, it will tint the image.Also, here are some recent discussions on fading and fading video:
Thanks a lot for your help!!