As Rev stores links in the linktext property of field chars, you can use selectionchanged to go to a link:

on selectionchanged
put the linktext of char (word 2 of the mousechunk) of me into theLink
  if theLink <> "" then
    put theLink --or whatever
  end if
end selectionchanged

Assuming you actually have set the linktext of relevant chars of course... Also note that "selectionchanged" is not triggered when the user clicks, but the selection is still the same. I don't really know what other message could help here, unless you want to use a send in time or the mousemove message (both very processor intensive, and mousemove has the inverse problem).

anyone knows an additional message one could use?
Björnke

On 5 Apr 2008, at 18:32, Bill Vlahos wrote:
I'd like to have linked text in a field that is still editable. An example would be an email program that has text which can be copied or linked clicked on.

I can do it in a locked field but then the user can't get to the text.

Bill Vlahos

--

official ChatRev page:
http://chatrev.bjoernke.com

Chat with other RunRev developers:
go stack URL "http://homepage.mac.com/bvg/chatrev1.3.rev";

_______________________________________________
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