Lingo Dictionary
175
The format Director uses for the date varies, depending on how the date is formatted on
the computer.
•
In Windows, you can customize the date display by using the International control panel.
(Windows stores the current short date format in the System.ini file. Use this value to
determine what the parts of the short date indicate.)
•
On the Macintosh, you can customize the date display by using the Date and Time control panel.
Examples
This statement displays the abbreviated date:
put the abbreviated date
-- "Sat, Sep 7, 1991"
This statement displays the long date:
put the long date
-- "Saturday, September 7, 1991"
This statement displays the short date:
put the short date
-- "9/7/91"
This statement tests whether the current date is January 1 by checking whether the first four
characters of the date are 1/1. If it is January 1, the alert “Happy New Year!” appears:
if char 1 to 4 of the date = "1/1/" then alert "Happy New Year!"
Note:
The three date formats vary, depending on the country for which your operating system was designed. These
examples are for the United States. Use the
date
object to create and manipulate dates in a standard format.
See also
time()
,
date() (formats)
,
systemDate
date() (formats)
Syntax
date(
ISOFormatString
)
date(
ISOFormatInteger
)
date(
ISOFormatIntegerYear
,
ISOFormatIntegerMonth
,
ISOFormatIntegerDay
)
Description
Function and data type; creates a standard, formatted date object instance for use with other date
object instances in arithmetic operations and for use in manipulating dates across platforms and
in international formats.
When creating the date, use four digits for the year, two digits for the month, and two digits for
the day. The following expressions are equivalent:
Addition and subtraction operations on the date are interpreted as the addition and subtraction
of days.
integer:
set vacationStart = date(19980618)
string:
set vacationStart = date("19980618")
comma separated:
set vacationStart = date(1998, 06, 18)
Содержание DIRECTOR MX-LINGO DICTIONARY
Страница 1: ...Lingo Dictionary Macromedia Director MX...
Страница 756: ...Index 756...