|  | Time-slots
|
Original Message | Time-slots Author RL on 05-20-2002 at 08:48 (EST) | Two questions :
1) I observed in demo that duration of all time slots are the same. Can the duration of the time slots be different during a particular day.. for example: 8.03, 9.03 then followed by 10.32 ?
2) Instead of givng a single time, can i label each time slot with the actual duration ..such as as " 8 am - 9 am" instead of having 2 slots "8 am" and "9 am" ?
Thank you.
|
|
| Messages In This Discussion |
1. RE: Time-slots Author Bill Weiner on 05-21-2002 at 04:15 (EST) | | 1) No, at this time the duration of all time slots must be the same. The start and stop times can vary based on whether it's the weekend or a weekday... but the time slots themselves must all have the same duration.
2) No, you can't configure the time slots to show the time in the format "8:00 am - 9:00 am" ... at least not without making a slight modification as described below:
STEP 1: Make a backup of your ugolf.pl script... just in case.
STEP 2: Open your ugolf.pl script with any text editor such as WordPad.
STEP 3: Do a search on the following line:
$temp_time_string = &format_time_string($minutes_counter);
And immediate AFTER that line, add these two lines:
$temp_time_string .= " - "; $temp_time_string .= &format_time_string($minutes_counter + $minutes_inc);
STEP 4: Save the script... as TEXT if your editor asks... and try it out!
|
|
|
|