ops e il bello è che c'era anche scritto in maiuscolo!!

beh cmq in tal caso basta un piccolo script di DOM

nell'html scrivi:

function changeBG(arg) {
if(document.getElementsByTagName) {
var t=document.getElementsByTagName("body");
var tt=t[0];
tt.style.background=arg;
}
}

e da flash al tu pulsante semplicemente metti

bottone.onRelease=function() {
getURL("javascript:changeBG('#F00');");
}

oppure anche con lo sfondo se vuoi

bottone.onRelease=function() {
getURL("javascript:changeBG('#F00 url(sfondo.gif) no-repeat top left');");
}

non l'ho testato ma dovrebbe essere ok

ciauz