Lingo Dictionary
109
Example
This frame script assumes that a Flash movie cast member named Navigation Movie has been set
up with its
broadcastProps
property set to
FALSE
. The script momentarily allows changes to a
Flash movie cast member to be broadcast to its sprites currently on the Stage. It then sets the
viewScale
property of the Flash movie cast member, and that change is broadcast to its sprite.
The script then prevents the Flash movie from broadcasting changes to its sprites.
Dot syntax:
on enterFrame
member("Navigation Movie").broadcastProps = TRUE
member("Navigation Movie").viewScale = 200
member("Navigation Movie").broadcastProps = FALSE
end
Verbose syntax:
on enterFrame
set the broadcastProps of member "Navigation Movie" = TRUE
set the viewScale of member "Navigation Movie" = 200
set the broadcastProps of member "Navigation Movie" = FALSE
end
browserName()
Syntax
browserName
pathName
browserName()
browserName(#enabled,
trueOrFalse
)
Description
System property, command, and function; specifies the path or location of the browser. You can
use the FileIO Xtra to display a dialog box that allows the user to search for a browser. The
displayOpen()
method of the FileIO Xtra is useful for displaying an Open dialog box.
The form
browserName()
returns the name of the currently specified browser. Placing a
pathname, like one found using the FileIO Xtra, as an argument in the form
browserName(fullPathToApplication)
allows the property to be set. The form
browserName(#enabled,
trueOrFalse
)
determines whether the specified browser launches
automatically when the
goToNetPage
command is issued.
This command is only useful playing back in a projector or in Director, and has no effect when
playing back in a browser.
This property can be tested and set.
Examples
This statement refers to the location of the Netscape browser:
browserName "My Disk:My Folder:Netscape"
This statement displays the browser name in a Message window:
put browserName()
Содержание DIRECTOR MX-LINGO DICTIONARY
Страница 1: ...Lingo Dictionary Macromedia Director MX...
Страница 756: ...Index 756...