
slideShowProInstance.albumBackgroundAlpha
Property; a Number that sets the alpha (transparency) value of each album background in the gallery. Setting this to 0 effectively removes each album's background.
AS2: 0 - 100
AS3: 0 - 1
The following examples change albumBackgroundAlpha to half opaque.
AS2:
my_ssp.albumBackgroundAlpha = 50;
AS3:
my_ssp.albumBackgroundAlpha = .5;

