How can I set the time of my analog clock to new york time using action AS2?
so far here is my as codes:
time=new Date();
seconds = time.getSeconds()
minutes = time.getMinutes()
hours = time.getHours()
hours = hours + (minutes/60);
seconds = seconds*6;
minutes = minutes*6;
hours = hours*30;
seconds_mc._rotation=seconds;
minutes_mc._rotation=minutes;
hours_mc._rotation=hours;
I make an animation on my website and put an analog clock, but i want to set the time to new york time?