How to make this!

Does anybody know about some tutorials or other information i need to make something like this one:
http://www.stringweb.no/botorget/hus/

Some basic translation for thos who doesn’t know norwegian:

Legg til: Add
Fargekart: ColorChart

So, can anyone help??

FH

what are you trying to do? be more specific

Trying to make the same colorchanger and objekt changer on other pictures.
My idea is to make something like that only with car’s. Where i can add styling and changing colors!

well there are tons of ways of doing that. if your looking to do that with a car i would prob suggest making the body of the car a movie clip and use setRGB():

here’s some code to get you started. place this code inside your movie clip


colorObj = new Color(this);
colorObj.setRGB(0x000000);
_root.button.onRelease = function() {
                colorObj.setRGB(0x009900);
};

play around with it, LIB explaned all this to me and i use the color object all the time now.

there are probably other ways of doing it using prototypes and such but for that, i can’t really help.

Thx so far!
But i’m all new at this so… I need everything from the start…

btw, can i use jpg files or does i have to draw the pictures in flash?

FH

naw you can draw use jpgs the only problem with that is that they can get messed up with change in scale and they move around really chopy :frowning:

Is it possible to import cad files from autocad in to flash/fireworks?

Have exported png file from autocad and imported in to flash.
Looks ok.
But how can i make color changes on parts of that image?

If I were doing this, I would try removing the color from the area that you want to change, so that area of the image is transparent. I would then put a symbol in the layer below the image that’s left over (after removing the color). Then, when you click the color in the color picker, set the color of the lower symbol to the color you’ve selected. I’m sure there’re other ways to do this, but that’d probably work.

Sounds like a good way!
I’m gona try that!

thx for the help!