“on switchDir”例程旨在定位作为“目录”传递的路径的每个元素并单击它,以便深入查看目录路径以到达所需的最终输出目录。
用鼠标激活所需行时。像往常一样,必须双击才能选中它!
这是单独“on switchDir”的代码:
on switchDir(directory, appName, selectDefault, createIt)
local compname, bootvolume
set compname to get computer name of (system info)
set bootvolume to get boot volume of (system info)
if directory is equal to "~" then set directory to system attribute ("HOME")
if directory starts with "~/" then set directory to (system attribute ("HOME")) & text 2 through -1 of (get directory)
if not checkPathExists(directory) then
if createIt then
do shell script ("mkdir -p " & (POSIX path of directory))
else
return false
end if
end if
if directory begins with "/" then
set directory to bootvolume & (get directory)
end if
tell application "System Events" to tell (process "iTunes"'s front window)
delay 1
click pop up button 1 of group 1 -- selects the drop-down box above the directory listing
set max to the count of menu items of menu 1 of pop up button 1 of group 1 -- number of items in the drop-down menu
set ndx to 1
repeat while ndx ≤ max
if the title of group 1's pop up button 1's menu 1's menu item ndx as string is equal to compname then -- found the absolute top-level directory
click group 1's pop up button 1's menu 1's menu item ndx - so choose it and go to next part of navigation
exit repeat
else -- keep looking
set ndx to (get ndx) + 1
end if
end repeat
if ndx > max then error "Never found " & compname
set thePath to every item of my splitString(directory, "/") -- thePath equals every individual folder in the path's name in order
repeat with dir in thePath
set max to the (count of rows in outline 1 of scroll area 1 of splitter group 1 of group 1) -- max equals the number of rows in the "directory contents" list box
log max
set ndx to 2 -- row 1 is just the colum titles
repeat while ndx ≤ max
log the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string
log the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string is equal to dir as string
if the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string is equal to dir as string then -- this is the row we want!
log "found " & dir & " at row " & ndx as string
select row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 -- included to make sure the reference in the "click" statement is correct
click row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 -- supposed to "click" the desired folder name to choose it and dive deeper, BUT IT DOESN'T ACTUALLY DO THAT!
exit repeat -- apparently never executed because the loop keeps going past finding the desired directory's name and crashes at the first blank row!
else
set ndx to (get ndx) + 1
end if
if ndx > max then error "Never found " & dir
end repeat
end repeat
end tell
error "success"
return true
end switchDir
错误发生在“on switchDir”中,其余代码仅包含在内,以便代码将在“脚本编辑器”下执行。“单击行 ndx ......” 语句和之后的“exit repeat”语句显然永远不会被执行,因为循环继续运行超过“found”的日志记录。. . . 因此在列表框中的第一个空白行上崩溃。找到的(带引号的)可用作查找代码的搜索词。
完整的、可运行的应用程序代码如下:
on splitString(theString, theDelimiter)
set oldDelimiters to AppleScript's text item delimiters
set AppleScript's text item delimiters to theDelimiter
set theArray to every text item of theString
set AppleScript's text item delimiters to oldDelimiters
return theArray
end splitString
on checkPathExists(thePath)
if thePath is equal to "~" then set thePath to system attribute ("HOME")
if thePath starts with "~/" then set thePath to (system attribute ("HOME")) & text 2 through -1 of (get thePath)
try
POSIX file thePath as alias
return true
on error
return false
end try
end checkPathExists
on switchDir(directory, appName, selectDefault, createIt)
local compname, bootvolume
set compname to get computer name of (system info)
set bootvolume to get boot volume of (system info)
if directory is equal to "~" then set directory to system attribute ("HOME")
if directory starts with "~/" then set directory to (system attribute ("HOME")) & text 2 through -1 of (get directory)
if not checkPathExists(directory) then
if createIt then
do shell script ("mkdir -p " & (POSIX path of directory))
else
return false
end if
end if
if directory begins with "/" then
set directory to bootvolume & (get directory)
end if
tell application "System Events" to tell (process "iTunes"'s front window)
delay 1
click pop up button 1 of group 1 -- selects the drop-down box above the directory listing
set max to the count of menu items of menu 1 of pop up button 1 of group 1 -- number of items in the drop-down menu
set ndx to 1
repeat while ndx ≤ max
if the title of group 1's pop up button 1's menu 1's menu item ndx as string is equal to compname then -- found the absolute top-level directory
click group 1's pop up button 1's menu 1's menu item ndx - so choose it and go to next part of navigation
exit repeat
else -- keep looking
set ndx to (get ndx) + 1
end if
end repeat
if ndx > max then error "Never found " & compname
set thePath to every item of my splitString(directory, "/") -- thePath equals every individual folder in the path's name in order
repeat with dir in thePath
set max to the (count of rows in outline 1 of scroll area 1 of splitter group 1 of group 1) -- max equals the number of rows in the "directory contents" list box
log max
set ndx to 2 -- row 1 is just the colum titles
repeat while ndx ≤ max
log the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string
log the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string is equal to dir as string
if the value of text field 1 of UI element 1 of row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 as string is equal to dir as string then -- this is the row we want!
log "found " & dir & " at row " & ndx as string
select row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 -- included to make sure the reference in the "click" statement is correct
click row ndx of outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of group 1 -- supposed to "click" the desired folder name to choose it and dive deeper, BUT IT DOESN'T ACTUALLY DO THAT!
exit repeat -- apparently never executed because the loop keeps going past finding the desired directory's name and crashes at the first blank row!
else
set ndx to (get ndx) + 1
end if
if ndx > max then error "Never found " & dir
end repeat
end repeat
end tell
error "success"
return true
end switchDir
set directory to "/Users/bryandunphy/Music"
try
tell application "iTunes" to quit
end try
tell application "System Events"
key down option
tell application "iTunes" to activate
key up option
repeat until process "iTunes" exists
delay 0.5
end repeat
click process "iTunes"'s window 1's button 2
my switchDir(directory, "iTunes", false, true)
delay 2
set libraryName to value of text field "Save As:" of window "New iTunes Library" of process "iTunes"
delay 2
click process "iTunes"'s window "New iTunes Library"'s button "Save"
end tell
return libraryName
任何关于错误原因和/或如何修复它的想法将不胜感激。