set the_list to {"Item One", "Item Two", "Item Three"} -- Define your list
repeat with i from 1 to number of items in the_list
set this_item to item i of the the_list -- Set "this_iten" to the next item in the list
display dialog this_item
end repeat