I draw my image with this
then I draw some ovals,red with black ovals inside.
My image goes under the black oval and disappears.
Why isn't the black oval transperent?
Thanks,
mudcat
Method draw() SetRotation(direction) DrawImage (image,x,y) SetRotation(0) End Method
then I draw some ovals,red with black ovals inside.
Method draw() SetColor 255,0,0 DrawOval x,y,size,size SetColor 0,0,0 DrawOval x+1,y+1,size-2,size-2 setcolor 255,255,255 End Method
My image goes under the black oval and disappears.
Why isn't the black oval transperent?
Thanks,
mudcat