Help with mask on a scrollView

I have a scroll View and it works perfect.

scrollView = widget.newScrollView     {         left = 600,         top = 10,         width = 373,         height = 504,         scrollWidth = 373,         scrollHeight = 504,         maskFile = "mask373x504.png"     }

But something very strange happened.

I copy and paste the code to use it in another app. and it works

but the white file for a mask, instead of having all white like it should…

has transparent diagonal lines on it! – very strange

the mask it’s just a white background with black borders.

and it works fine in another app, but here has those lines

does anyone knows why?

Victor

because the width is an odd number

masks have to have each dimension evenly divisible by 4.  I also like to make sure there is at least 4 pixels of black around each edge and that the final mask size is also divisible by 4.

Thank you very much works great

I just change it for 372 by 504

– there is so much to learn…

after six months and really nice friends like you, I have learned a lot, maybe 2%

but I really like it…

thanks a lot!

because the width is an odd number

masks have to have each dimension evenly divisible by 4.  I also like to make sure there is at least 4 pixels of black around each edge and that the final mask size is also divisible by 4.

Thank you very much works great

I just change it for 372 by 504

– there is so much to learn…

after six months and really nice friends like you, I have learned a lot, maybe 2%

but I really like it…

thanks a lot!