Re: HilitedLine of list field lost when unlocked field selected

2018-05-31 Thread dunbarx via use-livecode
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

Re: HilitedLine of list field lost when unlocked field selected

2018-05-31 Thread Bob Sneidar via use-livecode
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

Re: hilitedline

2014-10-27 Thread Geoff Canyon
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

Re: hilitedline

2014-10-26 Thread Mark Wieder
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

Re: hilitedline

2014-10-26 Thread JB
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

Re: hilitedline

2014-10-26 Thread larry
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

Re: hilitedline

2014-10-26 Thread Terry Judd
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