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

Is there a way to get the file opened in VLC with AppleScript?

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

我只知道了这个:

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

但是 returns 在 current_file 当前 window 的标题只是没有扩展名的文件名。 而我需要完整路径。

我能完成吗?

谢谢。

你有没有在 Skript-Editor 中查看 VLC 的字典?你会发现类似

tell application "VLC"
    log (get name of current item)
    log (get path of current item)
end tell

在 VLC 套件中。

享受, 迈克尔/汉堡