Simple question ;)

My site is minimal and similar to this

http://www.migberlin.com/03/index.html

When you press the text button it stays the colour green.
How is this done?

Something like “when pressed stay a certain color” :cubs:

I use this command on my textbutton to open the next line of textbuttons.

on(release) {
loadMovie(“minimal3.swf”, 2); //
}

Please help me :crazy:

[AS]
text_mc.onRollOver = function()
{
this.letters_txt.textColor = 0xFF0000;
};
text_mc.onRollOut = function()
{
this.letters_txt.textColor = 0x000000;
};
text_mc.onRelease = function()
{
this.letters_txt.textColor = 0xFF0000;
delete this.onRollOut;
delete this.onRollOver;
};
[/AS]

something like that…

Where do i insert the AS`?

Just at the same place as
this script?

on(release) {
loadMovie(“minimal3.swf”, 2); //
}

Thankls

it depends on your setup. you should learn the code that i supplied and work it into your application. don’t just plop code down not knowing how it works.

Ok great. Thanks for helping!

Simon