Movieclip change Color
I made a rectangle to a movieclip and want to change the color on a mouseover. I can change the color of the textfield but with my background rectangle it's not working (not working code is bold and italic).
This is my code for now:
var _this = this;
stage.enableMouseOver(3);
_this.Start_Level_1.on('mouseover', function(){
_this.Start_Level_1.Start_Level_1_Grafik.color = 'blue';
_this.Start_Level_1.Start_Level_1_Text.color = 'black';
});
Thanks for your help.
