Select Multiple Lines in a List Field.

The place to discuss anything and everything about running your LiveCode on Android

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
Googie85
Posts: 227
Joined: Tue Aug 05, 2014 10:07 am

Select Multiple Lines in a List Field.

Post by Googie85 » Sat Aug 09, 2025 8:07 am

Hii Guys!

I am trying to select multiple lines in a list field. I am trying to use the following code.

Code: Select all

 set the hilitedLines of field "RoomsField" to ***
Any ideas on how I could achieve this?

Many Thanks,

Googie.

Klaus
Posts: 14198
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Select Multiple Lines in a List Field.

Post by Klaus » Sat Aug 09, 2025 10:11 am

Supply a COMMA separated list:

Code: Select all

...
set the hilitedlines of fld 1 to 1,3,5
...

Post Reply