Open FM DBs with Passwords
on open the_item_paths
set the_text to ""
repeat with i from 1 to ((count of the_item_paths)
- 1)
set the_text to the_text & (item i of the_item_paths as string) & return
end repeat
set the_text to the_text & (last item of the_item_paths as string)
display
dialog "Here is/are the
path(s)." buttons {"OK"} default
button "OK" default
answer the_text
end open |
|