0

I have a Flash file. I'm working on this demo project where I want to customize the color of the panels according to the thumbnails when clicked on them. The colors of the front floor must change accordingly to the color mentioned and same goes for the front wall.

I have uploaded the .FLA file here
The SWF file is here
Can anyone please help me out on this query on how i can implement it the simplest way possible without the use of Cold Fusion?

Lemdor
  • 150
  • 3
  • 15

1 Answers1

0

You can try something very simple with GreenSock´s TweenMax.

Something like:

import com.greensock.TweenMax;

mybutton.addEventListener(MouseEvent.CLICK, change_red);

function change_red(e:MouseEvent):void{    
TweenMax.to{panel_a, 1,{tint:0xff0000});
}

There are many other ways to achieve your goal, but I think this is the easiest way.

For further information about TweenMax take a look to the GreenSock website

Good luck!

enguez
  • 73
  • 9