modified

Usage

-- Lingo syntax
memberObjRef.modified

// JavaScript syntax
memberObjRef.modified;

Description

Member property; indicates whether a cast member has been modified since it was read from a movie file. Read-only.

Example

This statement tests whether the cast member Introduction has been modified since it was read from the movie file:

-- Lingo syntax
if (member("Introduction").modified) then 
_player.alert("Introduction has been modified") else _player.alert("Introduction has not been modified") end if // JavaScript syntax if (member("Introduction").modified) { _player.alert("Introduction has been modified"); } else { _player.alert("Introduction has not been modified"); }

See also

Member