> //-----------------------------------------
> // get selected text and add to clipboard
> //-----------------------------------------
>
> // Step 1: get current clipboard contents
> local l_clip_contents = clip.get
> wait.for(050)
> // Step 2: copy selected text into clipboard
> clip.copy
> local l_selected_text = clip.get
> wait.for(050)
> // Step 3: put joined content into clipboard
> clip.set(l_clip_contents++" "++l_selected_text,0)
>
Thanks man, your approach is excellent. I really appreciate your help.
Once again thank you Bruce for making this wonderful app.