Not directly, but in Flash MX you could use the drawing methods, to draw a colored rectangle to the dimensions of the movie.
PHP Code:
function
changeBG
(
col
) {
_root
.
createEmptyMovieClip
(
"bgClip"
,
0
);
bgClip
.
beginFill
(
col
,
100
);
bgClip
.
lineStyle
(
1
,
col
,
100
);
bgClip
.
moveTo
(
0
,
0
);
bgClip
.
lineTo
(
Stage
.
width
,
0
);
bgClip
.
lineTo
(
Stage
.
width
,
Stage
.
height
);
bgClip
.
lineTo
(
0
,
Stage
.
height
);
bgClip
.
endFill
();
}
changeBG
(
0xCCCCCC
); |