Thanks for both of the inputs. The Ctrl + click seems to be a winner with the users, and draggable control seems to work also (I had to switch it to a TextArea, rather than a TextField as it said it wasn't able to convert to an IUIComponent for the drag, but other than that, works great).
--- In [email protected], "gareth_arch" <gareth_a...@...> wrote: > > Our end user is wanting us to try to build something where they can drag text > from the left side (in a TextArea) to TextInput boxes on the right hand side. > > I've tried some different ways to try to accomplish this: > > Making the TextArea draggable - This then prevents using the mouse to > highlight the text because as soon as you start to select the text, you are > now dragging the textarea. > > Trying to get the selected text, but it gets deselected as soon as you > "re-click" the selected text. > > My latest solution (which I thought *might* be OK with the end user) is > adding a mouse_up listener to the textarea, which then adds the selected text > to a variable. The user can then double click the TextInput box, and the > previously selected text is added to the TextInput.text This got an "ah, > hmm" from our end user, so I'm trying to figure out something else, or this > will be it :) > > I'm trying to figure out how to keep the text selected "on re-click"...so > highlight text with mouse, left click on selected text (text stays > highlighted), and then I can use the DragManager and some finagling to get > the text to the TextInputs hopefully. Only problem is, as soon as I > re-click, the selected text is deselected. Any way to prevent this from > happening (or any other solutions that someone might have are always welcome)? > > Thanks. >

