no clue how to do that. if i post the code hear. could you modify it to be, offset? if soo hear you go!
/* START OF TIME CODE */
_root.onEnterFrame = function ()
{
var _loc3 = new Date();
var _loc1 = _loc3.getHours();
var _loc2 = _loc3.getMinutes();
var _loc4 = _loc3.getSeconds();
var _loc5;
if (_loc1 >= 12)
{
_loc5 = "PM";
}
else
{
_loc5 = "AM";
} // end else if
if (_loc1 == 0)
{
_loc1 = 12;
} // end if
if (_loc1 > 12)
{
_loc1 = _loc1 - 12;
} // end if
if (_loc1 < 10)
{
_loc1 = " " + _loc1;
} // end if
if (_loc2 < 10)
{
_loc2 = "0" + _loc2;
} // end if
if (_loc4 < 10)
{
_loc4 = "0" + _loc4;
} // end if
time_txt.text = _loc1 + ":" + _loc2 + " " + _loc5;
time2_txt.text = _loc1 + ":" + _loc2 + ":" + _loc4 +" " + _loc5;
hours_txt.text = _loc1 + ":";
mins_txt.text = _loc2 + " ";
ampm_txt.text = _loc5;
};
/* END OF TIME CODE, START OF DATE CODE*/
var currentDate=new Date();
var weekDay=currentDate.getDay();
var weekDay_string:String;
var year=currentDate.getFullYear();
var month=currentDate.getMonth();
var month_string:String;
var numberDay=currentDate.getDate();
var numberDay_string:String;/* I use numberDay_string variable for adding a 0 before the days between 1 and 9. It's look better this way. */if (numberDay<10){
numberDay_string="0"+numberDay;
}else{
numberDay_string=numberDay;
}
/* I use a swich-case block for displaing months by their name, as everybody know them. ActionScript see them like numbers between 0 and 11, starting with January */
switch (month){
case(0):month_string="1"; break;
case(1):month_string="2"; break;
case(2):month_string="3"; break;
case(3):month_string="4"; break;
case(4):month_string="5"; break;
case(5):month_string="6"; break;
case(6):month_string="7"; break;
case(7):month_string="8"; break;
case(

:month_string="9"; break;
case(9):month_string="10"; break;
case(10):month_string="11"; break;
case(11):month_string="12"; break;
}
/* I use a swich-case block for displaing days of the week by their name. ActionScript see them like numbers between 0 and 6, starting with Sunday*/
switch (weekDay){
case(0):weekDay_string="Su"; break;
case(1):weekDay_string="Mo"; break;
case(2):weekDay_string="Tu"; break;
case(3):weekDay_string="We"; break;
case(4):weekDay_string="Th"; break;
case(5):weekDay_string="Fr"; break;
case(6):weekDay_string="Sa"; break;}
/* display the date in the desired way*/
displayDate_txt.text=weekDay_string+", "+month_string+" "+numberDay_string+" ";
day_txt.text = weekDay_string + ",";
month_txt.text = month_string;
date_txt.text = numberDay_string;
/* END OF DATE CODE*/