Hi Petr;
Thanks for your sample. But I could not understand well.
It seems to first copy a part of computer screen , not my window.
What I need is draw a line with random colors in the first line,
then go adding new lines at the top and the image rolling down.
At each image capture the last line drawn at first line will be added at the top of rolling image.
the code I was trying
SCREEN _NEWIMAGE(1200, 800, 32) 'this is my screen
DO
cor1 = INT(RND * 255) 'randomize colors
cor2 = INT(RND * 255)
cor3 = INT(RND * 255)
LINE (0, 0)-(1200, 0), _RGB(cor1, cor2, cor3) 'creates a random color line in the first row
* i need put here a command to copy the entire screen (1200x800) with the above line ploted
* i need put here a command to paste the captured image just one row bellow (2nd line) to the botton (botton line of the image will be discarded) (1200x799)
LOOP
A help will be very appreciated.
Thanks