Creating a color picker
hello, what im basicly tring to make is this http://www.clydesheds.com/template/Quaker.swf however i dont know how to start it i found something that will do somewhat the same thing but not really because it uses colors instead of the images, what i want to do is bring my image and be able to change the color of the roof and so on using symbols or whatever
myColor = new Color(_root.carColor);
//Declare path and function for 4 color button objects
_root.blue.onRelease = function(){
myColor.setRGB(0x0000ff)
}
_root.red.onRelease = function(){
myColor.setRGB(0xff0000)
}
_root.green.onRelease = function(){
myColor.setRGB(0x00ff00)
}
_root.black.onRelease = function(){
myColor.setRGB(0x000000)
}
this is what i found but it uses colors only, i want to be able to click on the button and replace what is there for a graphic symbol. any help is appreciated
___________________
"The secret to creativity is knowing how to hide your sources." -- Albert Einstein
