Reputation: 2405
I tried
tell application "VLC" to open mms://mms_address
But it's not working. Can anyone enlighten me? Thanks
Upvotes: 0
Views: 1429
Reputation: 21736
Try with OpenURL
:
tell application "VLC"
OpenURL "mms://mms_address"
end tell
Upvotes: 1