revolver
revolver

Reputation: 2405

How to use Applescript to get VLC to open a mms stream

I tried

tell application "VLC" to open mms://mms_address

But it's not working. Can anyone enlighten me? Thanks

Upvotes: 0

Views: 1429

Answers (1)

Guillaume
Guillaume

Reputation: 21736

Try with OpenURL:

tell application "VLC"
    OpenURL "mms://mms_address"
end tell

Upvotes: 1

Related Questions