Lingo Dictionary > A-C > copyrightInfo

 

copyrightInfo

Syntax

member(whichCastMember).copyrightInfo
copyrightInfo of member whichCastMember

Description

Shockwave Audio (SWA) cast member property; displays the copyright text in a SWA file. This property is available only after the SWA sound begins playing or after the file has been preloaded using the preLoadBuffer() command.

This property can be tested and set.

Example

This statement tells Director to display the copyright information for the Shockwave Audio file SWAfile in a field cast member named Info Display.

Dot syntax:

set whatState = the state of member "SWAfile"
if whatState > 1 AND whatState < 9 then
	put member("SWAfile").copyrightInfo into member("Info Display")
end if

Verbose syntax:

set whatState = the state of member "SWAfile"
if whatState > 1 AND whatState < 9 then
	put the copyrightInfo of member "SWAfile" into member "Info Display"
end if