|
AT yener90
When the background slideshow is displayed the black area below the image is lager than the black area above the image.I think the image is not in the center of the screen.I temporally fixed that by editing a line in the script.(by adding 50 pixels to the top position). I don't know if this is a permanent solution .
Top:= GetSystemMetrics(1) /2 - BackgroundPicSizeCalcY / 2 //original
Top:= GetSystemMetrics(1) /2 - BackgroundPicSizeCalcY / 2 +50 //edited
Last edited by darshana; 09-03-2012 at 08:19.
|