Hi all!
I just copy a code from old project to new and delete something and then i saw that i made like one hiding effect
WindowWidth# = 200
WindowHeight# = 300
PosX# = 100
PosY# = 100
FOR a = 0 to 200
ax = rnd(640)
bx = rnd(480)
center text ax,bx,"DarkBASIC Professional"
next a
DO
Mx# = MOUSEX()
My# = MOUSEY()
LOCK PIXELS
FOR x# = PosX# TO WindowWidth#
FOR y# = PosY# TO WindowHeight#
DotX# = Mx# + x# - WindowWidth# / 2
DotY# = My# + y# - WindowHeight# / 2
PointColor = POINT(DotX#,DotY#)
Red = RGBR(PointColor) - 40
Green = RGBG(PointColor) - 40
Blue = RGBB(PointColor) - 40
IF Red > 255 THEN Red = 255
IF Green > 255 THEN Green = 255
IF Blue > 255 THEN Blue = 255
IF Red < 0 THEN Red = 0
IF Green < 0 THEN Green = 0
IF Blue < 0 THEN Blue = 0
DOT DotX#,DotY#,RGB(Red,Green,Blue)
NEXT x#
NEXT y#
UNLOCK PIXELS
LOOP
I have software and now I am ready to make DLL files