Hi tom,

>Then print the list to the screen, (got that part)
>and be able to choose from them, as in

Try this:

friends: [
  "1" "[EMAIL PROTECTED]" "bob"
  "2" "[EMAIL PROTECTED]" "betty"
  "3" "[EMAIL PROTECTED]" "kirby"
  "4" "[EMAIL PROTECTED]" "barb"
]

theOption: "1"

while [theOption <> "0"] [
  forskip friends 3 [print reduce [first friends "-" third friends "-" 
second friends]]
  friends: head friends
  theOption: ask "^/Select an option (0 to quit): "
  forskip friends 3 [
   if (first friends) = theOption [
    print ["^/Email:" second friends "^/"]
    break
   ]
  ]
  friends: head friends
]


All the best,
--
Malcolm Campbell
[EMAIL PROTECTED]
FreesiteUK - http://www.freesiteuk.com
The UK based searchable web directory of free internet services.
FreesiteWorld.net - coming soon.

Reply via email to