Applescript: generar una nueva lista basada en la lista existente

3

mi script está generando una lista (número aleatorio de elementos) y para cada elemento me gusta agregar un color.

Puedo hacerlo manualmente:

> set myList to {{"demo", "#5cdf64"}, {"icloud.com", "#FFFF00"}, {"more
> random e.g", "#FF0000"}}

pero, ¿cómo puedo agregar un color diferente automáticamente a la lista y en función del número de elementos en la primera lista?

Sé cómo contar la lista principal y realizar una acción para cada elemento:

set listSize to count of myList

set theList to {"demo", "demo1", "demo2", "demo2"}
repeat with a from 1 to length of theList
    set theCurrentListItem to item a of theList
    -- Process the current list item

end repeat

Creo que casi estoy allí, lo único es que no estoy agregando sino reemplazando los elementos:

set theList to {"Demo", "ok", "blabla", "demo2"}
set ColortheList to {"5cdf64", "FFFF00", "FF0080", "FF1000"}
set myNewList to ""

repeat with a from 1 to length of theList
    set theCurrentListItem to item a of theList
    set myNewList to {item a of theList, item a of ColortheList}

end repeat

también lo intenté

copy {item a of theList, item a of ColortheList} to myNewList
    
pregunta Kevin 14.12.2018 - 11:13

1 respuesta

1

Si desea que myNewList devuelva una lista de listas, creo que está intentando hacerlo:

set theList to {"Demo", "ok", "blabla", "demo2"}
set ColortheList to {"5cdf64", "FFFF00", "FF0080", "FF1000"}
set myNewList to {}

repeat with a from 1 to length of theList
    copy ({item a of theList, item a of ColortheList}) to the end of the |myNewList|
end repeat

return myNewList

Un poco de diversión con random number . Puede modificar la selección de color y luego agregar aleatoriamente a una lista:

set theList to {"Demo", "ok", "blabla", "demo2", "foobar"}

set colorList to {"5cdf64", "FFFF00"}
set colorLength to length of colorList

set myNewList to {}

repeat with a from 1 to length of theList
    set colorPick to random number from 1 to colorLength
    copy ({item a of theList, item colorPick of colorList}) to the end of the |myNewList|
end repeat

return myNewList

Si desea un enfoque de cadena intente:

set theList to {"Demo", "ok", "blabla", "demo2"}
set ColortheList to {"5cdf64", "FFFF00", "FF0080", "FF1000"}
set myNewList to ""

repeat with a from 1 to length of theList
    set result to ({item a of theList, item a of ColortheList})
    set myNewList to myNewList & (result & " ")
end repeat

Lo anterior se puede modificar en el result . Avísame si te estoy entendiendo o si necesitas algo diferente.

    
respondido por el ʀ2ᴅ2 14.12.2018 - 15:10

Lea otras preguntas en las etiquetas