still a newbie :)
but this seems to work:
first, create a rectangle on the stage, convert it to a movie clip (F8), =
and name the instance on the stage myBG
second, make a movie clip with a text box named buttonTxt, drag four =
instances of the movie clip onto the stage and name them button0, =
button1, button2 and button3 (e.g.)
third, enter the following script in the actions panel
changeBGcolor =3D function () {
myColor =3D new Color("myBG");
myColor.setRGB(this.thisColor);
updateAfterEvent();
};
this.button0.thisColor =3D 0x0000FF;
this.button1.thisColor =3D 0x00FF00;
this.button2.thisColor =3D 0xFF0000;
this.button3.thisColor =3D 0xFFFF00;
this.button0.onRelease =3D changeBGcolor;
this.button1.onRelease =3D changeBGcolor;
this.button2.onRelease =3D changeBGcolor;
this.button3.onRelease =3D changeBGcolor;
this.button0.buttonTxt.text =3D "button0";
this.button1.buttonTxt.text =3D "button1";
this.button2.buttonTxt.text =3D "button2";
this.button3.buttonTxt.text =3D "button3";
[quoted text, click to view] "z" <zrados@inet.hr> wrote in message =
news:ctli6p$41t$1@sunce.iskon.hr...
> Any help will be apriciated.
>=20
> How to make choose color background in movie.
>=20
> I would like to make a option for visitors to choose background color =
of a
> movie among 4 different colors
>=20
> Thanx in advance
>=20
>=20
> I hope you all remember how is to be a newbie :))
>=20