Ho creato un codice che conta la lunghezza di una variabile e agisce in base alla lunghezza.
Funziona bene tranne quando ho una variabile in questo formato:
"00108030-00045C9E2638502E"
1: il conteggio restituisce 8 e non 25 2: Ho l'errore:
"Can’t make 8 into type boolean." number -1700 from 8 to boolean"
Ecco un'anteprima del mio codice: "
set theGUIDLength to (get length of (GUID as text))
if theGUIDLength is equal to 25 or 8 then
--
end if
"