有没有办法用AppleScript在VLC中打开文件?

时间:2016-03-07 10:57:54

标签: macos applescript vlc

我想获得现在在VLC中打开的文件的全名。

我只发现了这个:

tell application "VLC"
    set current_file to name of first window
end tell

但它返回current_file当前窗口的标题,该标题只是没有扩展名的文件名。 而我需要一条完整的道路。

我能完成这件事吗?

谢谢。

1 个答案:

答案 0 :(得分:5)

你看过Skript-Editor里面的VLC词典吗?你找到像

这样的东西
tell application "VLC"
    log (get name of current item)
    log (get path of current item)
end tell

在VLC套件内。

享受, 迈克尔/汉堡