-- Lingo syntax _player.searchCurrentFolder // JavaScript syntax _player.searchCurrentFolder;
Player property; determines whether Director searches the current folder when searching filenames. Read/write.
searchCurrentFolder property is TRUE (1), Director searches the current folder when resolving filenames.
searchCurrentFolder property is FALSE (0), Director does not search the current folder when resolving filenames.
This property is TRUE by default.
This statement displays the status of the searchCurrentFolder property in the Message window. The result is 1, which is the numeric equivalent of TRUE:
-- Lingo syntax put(_player.searchCurrentFolder) // JavaScript syntax put(_player.searchCurrentFolder);