Estoy teniendo, creo, un problema de subrutina. Quiero usar este sistema 'Elegir de la lista' para ordenar música recién adquirida. Después de soltar un montón de mp3, debería reproducir el mp3 (para que pueda elegir el género), luego mostrar el primer cuadro de diálogo "elegir de ...", que luego debe continuar con el siguiente, hasta que llegue al uno que le pide al Buscador que archive el mp3. Entonces debería pasar al siguiente mp3. Pero por alguna razón simplemente reproduce el mp3.
¿Alguien puede ayudar? Disculpas por la masa de código, pero pensé que podría ser útil. Tal vez haya complicado demasiado esto ... Pero supongo que estoy preguntando si es posible pasar de una subrutina de "lista de selección" a otra antes de volver al siguiente archivo de la lista.
Gracias
Tardanza
property extension_list : {"mp3", "m4a", "mp4", "aac"}
tell application "Finder"
--set folders as variables now...there are 15 folders
set f1 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/01 50s & 60s Rock"
set f2 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/02 70s & 80s Rock"
set f3 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/03 90s-now Rock"
set f4 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/04 Swing"
set f5 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/05 Soul"
set f6 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/06 Pop. Song"
set f7 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/07 Modern Jazz"
set f8 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/08 Comedy & Novelty & Christmas"
set f9 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/09 Spoken"
set f10 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/10 Blues, Gospel, Folk & World"
set f11 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/11 Classical"
set f12 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/12 Lounge & Exotica"
set f13 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/13 Rap"
set f14 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/14 Reggae"
set f15 to POSIX file "/Users/Tardy/Tardy Stuff/Scripts & Automator Actions/Music Pre-Filing System/15 Warped & Electronic"
end tell
--opens the dropped files
on open these_items --these_items are the dropped ones
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
process_item(this_item)
end repeat
end open
-- this sub-routine processes files; this is the initial menu
on process_item(this_item)
-- NOTE that the variable this_item is a file reference in alias format
tell application "iTunes"
play this_item
end tell
tell application "Finder"
choose from list {"Rock", "Soul/Rap/Reggae", "Jazz/Pop. Song", "Other"} with title "Which genre?" with prompt "Identify genre from list:" cancel button name "Cancel"
if the result is {"Rock"} then
rockSubmenu(this_item)
else if the result is {"Soul/Rap/Reggae"} then
soulSubmenu(this_item)
else if the result is {"Jazz/Pop. Song"} then
jazzSubmenu(this_item)
else if the result is {"Other"} then
otherSubmenu(this_item)
end if
end tell
end process_item
--here are all the other submenus
on rockSubmenu(this_item)
choose from list {"50s & 60s", "70s & 80s", "90s-Now"} with title "Which genre?" with prompt "Choose from the following categories:" cancel button name "Cancel"
if the result is {"50s & 60s"} then move this_item to f1
if the result is {"70s & 80s"} then move this_item to f2
if the result is {"90s-Now"} then move this_item to f3
end rockSubmenu
on soulSubmenu(this_item)
choose from list {"Soul", "Rap", "Reggae"} with title "Which genre?" with prompt "Choose from the following categories:" cancel button name "Cancel"
if the result is {"Soul"} then
move this_item to f5
else if the result is {"Rap"} then
move this_item to f13
else if the result is {"Reggae"} then
move this_item to f14
end if
end soulSubmenu
on jazzSubmenu(this_item)
choose from list {"Swing", "Modern", "Pop. Song", "Lounge/Exotica"} with title "Which genre?" with prompt "Choose from the following categories:" cancel button name "Cancel"
if the result is {"Swing"} then move this_item to f4
if the result is {"Modern"} then move this_item to f7
if the result is {"Pop. Song"} then move this_item to f6
if the result is {"Lounge/Exotica"} then move this_item to f12
end jazzSubmenu
on otherSubmenu(this_item)
choose from list {"Spoken", "Comedy/Novelty/Christmas", "Other"} with title "Which genre?" with prompt "Choose from the following categories:" cancel button name "Cancel"
if the result is {"Spoken"} then move this_item to f9
if the result is {"Comedy/Novelty/Christmas"} then move this_item to f8
if the result is {"Other"} then other2Submenu(this_item)
end otherSubmenu
--another other menu
on other2Submenu(this_item)
choose from list {"Folk & World", "Classical", "Blues/Gospel", "Warped/Electronic"} with title "Which genre?" with prompt "Choose from the following categories:" cancel button name "Cancel"
if the result is {"Classical"} then move this_item to f11
if the result is {"Blues/Gospel/Folk"} then move this_item to f10
if the result is {"Warped/Electronic"} then move this_item to f15
--end of all submenus
end other2Submenu