netDone()
411
Parameters
netID
Optional. Specifies the ID of the network operation to test.
Example
The following handler uses the
netDone
function to test whether the last network operation has
finished. If the operation is finished, text returned by
netTextResult
is displayed in the field cast
member Display Text.
-- Lingo syntax
on exitFrame
if netDone() = 1 then
member("Display Text").text = netTextResult()
end if
end
// JavaScript syntax
function exitFrame() {
if (netDone() == 1) {
member("Display Text").text = netTextResult();
}
}
This handler uses a specific network ID as an argument for
netDone
to check the status of a
specific network operation:
-- Lingo syntax
on exitFrame
-- stay on this frame until the net operation is
-- completed
global mynetID
if netDone(mynetID) = FALSE then
go to the frame
end if
end
// JavaScript syntax
function exitFrame() {
// stay on this frame until the net operation is completed
global mynetID;
if (!(netDone(mynetID))) {
_movie.go(_movie.frame);
}
}
See also
getNetText()
,
netTextResult()
,
gotoNetMovie
,
preloadNetThing()
Содержание DIRECTOR MX 2004-DIRECTOR SCRIPTING
Страница 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Страница 48: ...48 Chapter 2 Director Scripting Essentials...
Страница 100: ...100 Chapter 4 Debugging Scripts in Director...
Страница 118: ...118 Chapter 5 Director Core Objects...
Страница 594: ...594 Chapter 12 Methods...
Страница 684: ...684 Chapter 14 Properties See also DVD...
Страница 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Страница 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Страница 889: ...netPresent 889 _player alert Sorry the Network Support Xtras could not be found See also Player...
Страница 1102: ...1102 Chapter 14 Properties...