Note - make sure the 'multipleHilites' for the field is FALSE (meaning the
user can only select one line in the list), otherwse the script above will
fail. For a more "universal" script, that works with both single and
multiple selections, try this:

on mouseUp
 if the hilitedLines of fld 1 is not empty then
   put the hilitedLines of fld 1 into tHLines
   put the number of items of tHLines into tNum
   repeat with x = tNum down to 1
     delete line (item x of tHLines) of fld 1
   end repeat
  else
    beep
  end if
end mouseUp

Thanks Ken!

Scott
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to