Search found 9 matches

by Janey
Thu Jul 30, 2009 1:51 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to stop mouse drag on locked field from hiliting text?
Replies: 5
Views: 3639

traversalOn doesn't seem to do anything with respect to the hilite problem but autoSelect does. Is there a message I can trap in a control at start up so that I can set the state of the control? If I set the traversalOn of a fld to false then I should not be able to tab into it, right? When I did th...
by Janey
Wed Jul 29, 2009 10:24 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Revolution vs REALbasic
Replies: 17
Views: 15570

MotherHoose wrote: I am not complaining about Rev...just my experiences with support! and inability to get results from my efforts to work with it. So far your only two posts have been in this thread. Have you considered posting questions about using RunRev? I'm sure the good folks here would be ea...
by Janey
Wed Jul 29, 2009 9:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to stop mouse drag on locked field from hiliting text?
Replies: 5
Views: 3639

set autoSelect to false
by Janey
Wed Jul 29, 2009 9:40 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How to stop mouse drag on locked field from hiliting text?
Replies: 5
Views: 3639

How to stop mouse drag on locked field from hiliting text?

When I set the locktext to true on a field the cursor stays the arrow but it still hilites the text. The hilited text cannot be copied with cmd-c. (the selectedtext does return the hilited text though).

How can I prevent the text in a locked field from being hilited?
Thanks,
Janey
by Janey
Wed Jul 29, 2009 9:30 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: MouseUp subroutine won't run
Replies: 8
Views: 4838

This is slightly wrong. The backgroundBehavior property can turn a group into a "real" background.
What do you mean a "real" background?

Janey
by Janey
Wed Jul 29, 2009 9:27 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: MouseUp subroutine won't run
Replies: 8
Views: 4838

woops I didn't read me replies before I posted.
by Janey
Wed Jul 29, 2009 9:25 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: MouseUp subroutine won't run
Replies: 8
Views: 4838

It turns out I needed to set the lockfield to true. From the dictionary Comments: When a field's lockText property is false, the field can be edited: the user can select text, delete text, type, cut, copy, and paste. The cursor becomes an I-beam when the mouse pointer is over the field. When the use...
by Janey
Wed Jul 29, 2009 8:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: MouseUp subroutine won't run
Replies: 8
Views: 4838

Sure on mouseUp beep end mouseUp Groups don't catch mouseUp messages by themselves. The message has to be caught by a button, field or card before it can be passed on to the group. A card will pass on the mouseUp message to a group, only if the backgroundBehavior of the group is set to true (see pro...
by Janey
Wed Jul 29, 2009 7:19 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: MouseUp subroutine won't run
Replies: 8
Views: 4838

MouseUp subroutine won't run

I made a group that has two entry fields in it. In the group I put a one line mouseUp subroutine (beep). When I click the group nothing beeps. What did I do wrong?