hey all,
thanks to h88 i am using the following code which works great
myColor = new Color(timeChange);
Time = new Date();
Hours = Time.getHours();
if (Hours == “8”) {
myColor.setRGB(0x00FFFF);
} else if (Hours == “9”) {
myColor.setRGB(0x00FFFF);
}
BUT, is it possible to only specify this color to a specific set of frames (can be designated by frame number or frame label) within the timeChange movie clip???
the problem is that any image, object placed after the intial frames that i want the designated color get that color also!!!
TargetMC is the subMC of timeChange, so the changing of colors during the amount of time set would only change to the SubMC, which is called (TargetMC).
h88…
i think i’ve to ashamed from myself…
it’s woking now…
i put the child_mc in frame No. 2 so it didn’t work (i think this is the reason)… :-\
anyway thanx man C:-)
hey all,
thanks h88 for another one!!!
is it possible within the same code to sepcifiy that it apply to a second subclip???
that is:
myColor = new Color(timeChange.fadeInBackground AND SUBCLIP 2);
so the background fades in, then when a user clicks a button the background fades out, using the same color (the color according to the time of course)