Hi.
I am in v. 8.1.9 and do not see this in either locked or unlocked fields. I
made three, clicked on a line in each, which hilited correctly, and then
both tabbed and clicked all morning through them. Each hilited line stuck
unless I changed it.
Craig
--
Sent from:
http://runtime-revolution
Hi David.
Not sure about your issue losing the selection when tabbing between controls.
However many have instituted a method of setting the imageSource of the first
character of a line of a field to mark a hilited line. Since things like check
marks and bullets are not consistent in fonts bet
I replied in the other thread as well, but:
function removeLines lineList,S
put 0 into lineCounter
split lineList with comma as set
repeat for each line L in S
add 1 to lineCounter
if lineList[lineCounter] then next repeat
put L & cr after R
end repeat
return char
John-
Sunday, October 26, 2014, 1:22:37 PM, you wrote:
> I had trouble with that too. Most people
> probably do. If you are deleting a bunch
> of lines say that are 5 thru 38 you can
> delete line 5 and then keep deleting line
> 5 until you have deleted enough lines.
LOL. Quite true. I never t
I wish I wasn't so dense.
> Larry
>
> - Original Message - From: "Terry Judd"
> To: "How to use LiveCode"
> Sent: Sunday, October 26, 2014 4:35 AM
> Subject: Re: hilitedline
>
>
> Larry - you need to delete the lines in reverse
Thanks Terry,
Sometimes I wish I wasn't so dense.
Larry
- Original Message -
From: "Terry Judd"
To: "How to use LiveCode"
Sent: Sunday, October 26, 2014 4:35 AM
Subject: Re: hilitedline
Larry - you need to delete the lines in reverse orderŠ
put the hilited
Larry - you need to delete the lines in reverse orderŠ
put the hilitedlines of field "mySelects" into myDelete
repeat with i = (the number of items in myDelete) down to 1
delete line (item i of myDelete) of fld ³mySelects"
end repeat
HTH,
Terry...
On 26/10/2014 7:58 pm, "la...@significantp