MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 743

Director scripting reference
Table of Contents

Advertisement

domain
Usage
-- Lingo syntax
dvdObjRef.domain
// JavaScript syntax
dvdObjRef.domain;
Description
DVD property; returns a symbol that indicates the current domain. Read-only.
Example
This statement returns the current domain:
-- Lingo syntax
trace (member(1).domain)
// JavaScript syntax
trace (member(1).domain);
See also
DVD
doubleClick
Usage
-- Lingo syntax
_mouse.doubleClick
// JavaScript syntax
_mouse.doubleClick;
Description
Mouse property; tests whether two mouse clicks within the time set for a double-click occurred as
a double-click rather than two single clicks (
treats them as single clicks (
Example
This statement branches the playhead to the frame Enter Bid when the user double-clicks the
mouse button:
-- Lingo syntax
if (_mouse.doubleClick) then
_movie.go("Enter Bid")
end if
// JavaScript syntax
if (_mouse.doubleClick) {
_movie.go("Enter Bid");
}
See also
clickLoc, clickOn,
-- #title
// #title
TRUE
). Read-only.
FALSE
Mouse
), or if they didn't occur within the time set,
doubleClick
743

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Director mx 2004

Table of Contents