Display Date and Time in a certain country

Hi guys!

By default, when you visit a website that is made entirely in Flash and there is a Tme and Date movie clip feature… you know… it gets the current time and date of your computer so you’re actually seeing your own time, right?

What I’ve always wanted to do is when you visit a website that is made entirely in Falsh, and you have a Time and Date movie clip that tells the creators current time and the current date instead of just getting the values of your computer time and displaying your own. I’m in the Philippines so I want the visitors of my site to view what time and date is it in the Philippines.

Can it be done?

i need to display time of hongkong … and i am using this code to display time right now , it basically shows time from the pc you are @. i am really a beginer in actionscript so it would be great if someone could help me out and tell me wat changes should i make in the actionscript. thank you

function howlong(arg) {
    if (length(arg)==1) {
        arg = "0" + arg;
        return arg;
        }
    else {
        arg = arg;
        return arg;
        }
    }
myDate = new Date();

hr = howlong(String(myDate.getHours()));
mnt = howlong(String(myDate.getMinutes()));

daytext = myDate.getDay();
dd = myDate.getDate();
mm = myDate.getMonth();
yyyy = myDate.getFullYear();

switch (daytext) {
    case 0:    daytext = "Sunday";
            break;
    case 1:    daytext = "Monday";
            break;
    case 2:    daytext = "Tuesday";
            break;
    case 3:    daytext = "Wednesday";
            break;
    case 4:    daytext = "Thursday";
            break        
    case 5:    daytext = "Friday";
            break;
    case 6:    daytext = "Saturday";
            break
    }

switch (mm) {
    case 0:        mm = "January";
                break;
    case 1:        mm = "February";
                break;
    case 2:        mm = "March";
                break;
    case 3:        mm = "April";
                break;
    case 4:        mm = "May";
                break        
    case 5:        mm = "June";
                break;
    case 6:        mm = "July";
                break
    case 7:        mm = "August";
                break
    case 8:        mm = "September";
                break
    case 9:        mm = "October";
                break
    case 10:    mm = "November";
                break
    case 11:    mm = "December";
                break
    }


textdate = (hr + ":" + mnt + " - " + daytext + "," + dd + " " + mm + " " + yyyy)