vote up 0 vote down star

I am building a control to allow me to set a meeting time, and I would like it to use as a default, the current time rounded up to the nearest 15 minute interval. So if it is currently 6:07, it would read 6:15 as the start time.

Does anyone know how this might be accomplished, or have run across a code snippit that would put me on the right track?

flag

2 Answers

vote up 0 vote down

Try this

var date:Date = new Date();
var min:Number = date.minutes;
var h:Number = date.hours;
min = min + (15 - min % 15);
h += min / 60;
min = min % 60;
date.hours = h;
date.minutes = min;
trace(date.toTimeString());
link|flag
Thanks! That works very well. I went ahead and modified it slightly to the following, which allows me to specify the interval: protected function roundTimeToInterval( date:Date, interval:int ):Date { var min:Number = date.minutes; var h:Number = date.hours; min = min + (interval - min % interval); h += min / 60; min = min % 60; date.hours = h; date.minutes = min; return date; } – Nick Sep 18 at 11:36
vote up 0 vote down

Thanks! That works very well. I went ahead and modified it slightly to the following, which allows me to specify the interval:

protected function roundTimeToInterval( date:Date, interval:int ):Date
{
	var min:Number = date.minutes;
	var h:Number = date.hours;
	min = min + (interval - min % interval);
	h += min / 60;
	min = min % 60;
	date.hours = h;
	date.minutes = min;

	return date;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.