Xilef Staff 11,516 Dec 9, 2007 #1 What is the transparency percentage of the background to a window skin? The background is the 128x128 square to the left of a window skin. Thanks.
What is the transparency percentage of the background to a window skin? The background is the 128x128 square to the left of a window skin. Thanks.
Yeyinde Sponsor 1,122 Dec 9, 2007 #2 background_area / total_area = (128*128) / (192*128) = 16384 / 24576 = 66.6...% Simple math. Upvote 0 Downvote
Xilef Staff 11,516 Dec 9, 2007 #3 Thanks yey. (How did you know you could find the transparency % out of it's height and width?) Upvote 0 Downvote
Yeyinde Sponsor 1,122 Dec 9, 2007 #4 Woops. I though you where asking for the percentage of the area the background takes. Transparency percentage = (255 - opacity) / 255 The default Window_Message has an opacity of 160. (255 - 160) / 255 = 95 / 255 = 37.25% transparant Upvote 0 Downvote
Woops. I though you where asking for the percentage of the area the background takes. Transparency percentage = (255 - opacity) / 255 The default Window_Message has an opacity of 160. (255 - 160) / 255 = 95 / 255 = 37.25% transparant