-- I have a question regarding applescript
-- I have a list of strings
set mylist to {"1", "2", "3", "4", "5"}
-- I want to convert to a list of integers
set myint to every item in mylist as integer
-- Try another way
set myint to every item as integer in mylist
--But both ways does not work
-- I have a list of strings
set mylist to {"1", "2", "3", "4", "5"}
-- I want to convert to a list of integers
set myint to every item in mylist as integer
-- Try another way
set myint to every item as integer in mylist
--But both ways does not work