이 스레드를 시작해 주셔서 고마워요!
내 iTunes에는 수백 가지 스마트 재생 목록이 있으므로 라이브 업데이트를 수동으로 전환하는 것은 정말 고통 스럽습니다.
저의 엘 캐피 탄 (El Capitan)과 시에라 (Sierra) 시스템에서 작동하도록 잠시 동안 위의 답변을 가지고 놀아야했지만, 마침내 저에게 도움이되었습니다.
tell application "iTunes"
activate
set frontmost to true
repeat with aPlaylist in (get user playlists)
set n to name of aPlaylist
set s to smart of aPlaylist as string
if s is "true" then
try
set view of front browser window to playlist n
set frontmost to true
delay 1
tell application "System Events" to tell application process "iTunes"
click menu item "Edit Smart Playlist" of menu "File" of menu bar 1
delay 1
# To toggle the selection use the following line
click checkbox "Live updating" of window 1
# To enable use the below code. To disable, use the below code but change 'false' to 'true'
#set theCheckbox to checkbox "Live updating" of window 1
#tell theCheckbox
#set checkboxStatus to value of theCheckbox as boolean
#set c to checkboxStatus as string
#if checkboxStatus is false then click theCheckbox
#end tell
delay 1
click button "OK" of window 1
end tell
end try
end if
end repeat
end tell