soundItem.sourceFilePath

#### Availability

Flash CS4 Professional.

#### Usage

soundItem.sourceFilePath

#### Description

Read-only property: a string, expressed as a file:/// URI, that represents the path and name of the file that was imported into the Library.

#### Example

The following example displays the name and source file path of any items in the library that are of type "sound":

javascript
for (idx in fl.getDocumentDOM().library.items) {
    if (fl.getDocumentDOM().library.items[idx].itemType == "sound") { 
        var myItem = fl.getDocumentDOM().library.items[idx]; 
        fl.trace(myItem.name + " source is " + myItem.sourceFilePath);

}
}


#### See also

soundItem.sourceFileExists (../SoundItem_object/soundIt10.md)