Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように生成されたタイムスタンプに24時間を追加しようとしています。
var date:Date = new Date(); var timeStamp:Number = date.time;
ありがとう
タイムスタンプにミリ秒単位で24時間を追加するだけで済みます
timeStamp += 60 * 60 * 24 * 1000; //24 hours in milliseconds