[font=verdana, arial, helvetica][size=2]Hi all,
with the code below, I can change the colour of the movie clip.
I need the colour of that movie clip to stay the same also after
next time visiting the page. I think it’s made by the action SharedObject. Can someone help me with that, please? Thanks.
[color=blue]function changeColor(code, obj) {
var ColorSet = new Color(obj);
ColorSet.setRGB(parseInt(code, 16));
}
this.bt.onRelease = function() {
changeColor(“6699CC”, “point”);
};[/color][/size][/font]