Search found 4 matches

by LouisThompson
Thu Jul 13, 2017 1:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Setting the text style of certain words in a field
Replies: 5
Views: 5727

Setting the text style of certain words in a field

Hi,

I've played around, searched, but not found anything...
(Sounds like the first line of a Country & Western song :-)

Anyway, I have a field which contains a Python Script.

I'd like to set the text style of certain words...

eg
def, return, import, for : bold, blue
numbers should all be red ...
by LouisThompson
Sat May 27, 2017 9:00 pm
Forum: Internet
Topic: Livecode results different to browser
Replies: 1
Views: 3842

Livecode results different to browser

Hi,

Okay, apparently my "account does not have permission to post links or domain/page references" which makes this very difficult to explain...

I paste a URL into my browser which is a straight forward PHP request... and it returns the correct page...

In Livecode when I click on the following ...
by LouisThompson
Mon Oct 03, 2016 9:05 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Sort by item 1 and then item 2
Replies: 3
Views: 3573

Re: Sort by item 1 and then item 2

Many thanks! Was sorting by item 1 first THEN item 2.
This works great!
by LouisThompson
Mon Oct 03, 2016 8:17 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Sort by item 1 and then item 2
Replies: 3
Views: 3573

Sort by item 1 and then item 2

Hi all,

I'm sure this is fairly simple but I can't get my head round it. I have a field which contains...

1 1
4 5
1 3
2 1
4 2
4 4
2 3
1 2
4 1
2 2
4 3
2 4
3 1
3 2

It like to sort it first by item 1 (Itemdelimiter is tab) and then item 2 so the field reads...

1 1
1 2
1 3
2 1
2 2
2 3
2 4
3 1
3 2
4 ...