-- Lingo syntaxmemberObjRef.URL// JavaScript syntaxmemberObjRef.URL;
Cast member property; specifies the URL for Shockwave Audio (SWA) and Flash movie cast members.
For Flash movie members, this property is synonymous with the pathName member property.
The URL property can be tested and set. For SWA members, it can be set only when the SWA streaming cast member is stopped.
This statement makes a file on an Internet server the URL for SWA cast member Benny Goodman:
-- Lingo syntax
on mouseDown
member("Benny Goodman").URL = \
"http://audio.macromedia.com/samples/classic.swa"
end
// JavaScript syntax
function mouseDown() {
member("Benny Goodman").URL =
"http://audio.macromedia.com/samples/classic.swa"
}