Ask a Question related to Macromedia Flash, Design and Development.
-
z #1
Changing Background color in swf
Any help will be apriciated.
How to make choose color background in movie.
I would like to make a option for visitors to choose background color of a
movie among 4 different colors
Thanx in advance
I hope you all remember how is to be a newbie :))
z Guest
-
Background color keeps changing in full screen view
I have created an interactive catalogue with pseudo off-page navigation in InDesign. I have made the Indesign background colour black to blend... -
Changing Background Graphic
I am trying to change the logo at the top of our home page that was apparently created as a "background" graphic in Dreamweaver. Can I do this in... -
Changing the background color on tab controls
You cannot change the BackColor of a tab control, but you can set its BackStyle to Transparent if you want it to appear the same color as the... -
can't see background color
Hello, I'm using MX, and whenever I open either a new or existing web page, the background color of the page is a light blue color, when they... -
Changing menu background in OSX?
While Aqua is nice I do not like bare white spaces or bare white spaces with light grey lines and there are lots of these in Aqua. I want to... -
joan #2
Re: Changing Background color in swf
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 = function () {
myColor = new Color("myBG");
myColor.setRGB(this.thisColor);
updateAfterEvent();
};
this.button0.thisColor = 0x0000FF;
this.button1.thisColor = 0x00FF00;
this.button2.thisColor = 0xFF0000;
this.button3.thisColor = 0xFFFF00;
this.button0.onRelease = changeBGcolor;
this.button1.onRelease = changeBGcolor;
this.button2.onRelease = changeBGcolor;
this.button3.onRelease = changeBGcolor;
this.button0.buttonTxt.text = "button0";
this.button1.buttonTxt.text = "button1";
this.button2.buttonTxt.text = "button2";
this.button3.buttonTxt.text = "button3";
"z" <zrados@inet.hr> wrote in message news:ctli6p$41t$1@sunce.iskon.hr...> Any help will be apriciated.
>
> How to make choose color background in movie.
>
> I would like to make a option for visitors to choose background color of a
> movie among 4 different colors
>
> Thanx in advance
>
>
> I hope you all remember how is to be a newbie :))
>
>joan Guest



Reply With Quote

