Re: text field in modal allows no input

2011-04-18 Thread Trevor DeVore
On Mon, Apr 18, 2011 at 11:06 AM, Maarten Koopmans < maarten.koopm...@gmail.com> wrote: > Thanks Trevor, that does the trick, also with a sheet, which gave the same > problem! Sadly, I don't have acess to the QCC anymore sine the new "paid > supoort list" thing. > Just send a report to supp...@ru

Re: text field in modal allows no input

2011-04-18 Thread Maarten Koopmans
Thanks Trevor, that does the trick, also with a sheet, which gave the same problem! Sadly, I don't have acess to the QCC anymore sine the new "paid supoort list" thing. Thanks a lot for your help though! --Maarten On Mon, Apr 18, 2011 at 1:22 PM, Trevor DeVore wrote: > On Sat, Apr 16, 2011 at 1

Re: text field in modal allows no input

2011-04-18 Thread Trevor DeVore
On Sat, Apr 16, 2011 at 11:26 AM, Maarten Koopmans < maarten.koopm...@gmail.com> wrote: > I have a main stack that accepts a drag-drop for files like this on a > hidden > field the size of the card: > > *on* dragDrop > > *if* the dragData["files"] is not empty *then* > > *modal* stack "Add

Re: text field in modal allows no input

2011-04-17 Thread Maarten Koopmans
I added this to openCard, but alas, still didn't work :-( --Maarten On Sun, Apr 17, 2011 at 7:45 AM, Maarten Koopmans < maarten.koopm...@gmail.com> wrote: > Thanks, I will test. The advantage of livecode being that you can > redesign your UI flow so fast, i came up witha flow without modals tha

Re: text field in modal allows no input

2011-04-16 Thread Maarten Koopmans
Thanks, I will test. The advantage of livecode being that you can redesign your UI flow so fast, i came up witha flow without modals tha people seems to like more (modals can be a bit intrusive). But I'll test anyway See if this trick helps for future ference :-) --Maarten On Saturday, April

Re: text field in modal allows no input

2011-04-16 Thread Mike Bonner
No longer have a mac, but I seem to remember this same thing happening in non-lc applications also, and intermittently in the lc dictionary(I think there were several threads about the dictionary annoyance here). The fix being to click outside the field then refocus the field. As a workaround, if

Re: text field in modal allows no input

2011-04-16 Thread Maarten Koopmans
Mac bug. Same stack on windows work fine with text input on a modal in a dragDrop. I'll see if I can file a bug. If you know of a work around (except redesigning the UI.), I'd be very thankful. --Maarten On Sat, Apr 16, 2011 at 5:26 PM, Maarten Koopmans < maarten.koopm...@gmail.com> wrote:

text field in modal allows no input

2011-04-16 Thread Maarten Koopmans
Hi I have a main stack that accepts a drag-drop for files like this on a hidden field the size of the card: *on* dragDrop *if* the dragData["files"] is not empty *then* *modal* stack "AddMetaData" addFiles(dragData["files"]) *end* *if* *set* the dragAction to link *