Chapter 3
200
The following handler tests for a double-click. When the user clicks the mouse, a repeat loop runs
for the time set for a double-click (20 ticks in this case). If a second click occurs within 20 ticks,
the
doubleClickAction
handler runs. If a second click doesn’t occur within the specified period,
the
singleClickAction
handler runs:
on mouseUp
if the doubleClick then exit
startTimer
repeat while the timer < 20
if the mouseDown then
doubleClickAction
exit
end if
end repeat
singleClickAction
end mouseUp
See also
clickOn
,
the mouseDown (system property)
,
the mouseUp (system property)
downloadNetThing
Syntax
downloadNetThing
URL
,
localFile
Description
Command; copies a file from the Internet to a file on the local disk, while the current movie
continues playing. Use
netDone
to find out whether downloading is finished.
•
URL—
The filename of any object that can be downloaded: for example, an FTP or HTTP
server, an HTML page, an external cast member, a Director movie, or a graphic
•
localFile—
The pathname and filename for the file on the local disk
Director movies in authoring mode and projectors support the
downLoadNetThing
command,
but the Shockwave player does not. This protects users from unintentionally copying files from
the Internet.
Although many network operations can be active at one time, running more than four concurrent
operations usually slows down performance unacceptably.
Neither the Director movie’s cache size nor the setting for the Check Documents option affects
the behavior of the
downloadNetThing
command.
Note:
Director for Java does not support the downloadNetThing command.
Example
These statements download an external cast member from a URL to the Director application
folder and then make that file the external cast member named Cast of Thousands:
downLoadNetThing("http://www.cbDeMille.com/Thousands.cst", the \
applicationPath&"Thousands.Cst")
castLib("Cast of Thousands").fileName = the applicationPath&"Thousands.Cst"
See also
importFileInto, netDone(), preloadNetThing()
Содержание DIRECTOR MX-LINGO DICTIONARY
Страница 1: ...Lingo Dictionary Macromedia Director MX...
Страница 756: ...Index 756...