Actionscript 3 で、現在の時刻/日付が月曜日の午前 10 時から午後 5 時の間にあるかどうかを調べたいと考えています。
これは可能ですか?
Dateクラスをチェックしてください。これには多くのバリエーションがあると確信しています。
var now:Date = new Date();
if (now.day == 1 && now.hours >= 10 && now.hours <= 17)
{
// it's a monday and you're probably at work (between 10am - 5pm)
}