Search found 7 matches

by Ian.Rowley
Mon Jan 30, 2012 4:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: A book out there?
Replies: 16
Views: 11240

Re: A book out there?

Thanks for posting the query Raul, To my mind, most of the dictionary and tutorials go into far too much depth too quickly. As a former Visual Basic programmer (admittedly a long time ago!), I find HyperTalk a mystery! Probably my problem, but I'm convinced I effectively need to unlearn VB before I ...
by Ian.Rowley
Fri Jul 29, 2011 8:46 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Hacked Solution

Morning Klaus, I thought I'd post my final solution, just in case some other poor deluded soul ever comes to this thread looking for a solution to their problem! I still have no idea why the line of code following if gLabelName [myCount] is equal to "X" doesn't work (!!!), so I've side-stepped the p...
by Ian.Rowley
Thu Jul 28, 2011 1:33 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Re: Changing the text property of field controls from script

Hi Klaus, :-) I'll keep your comment in mind, but I've managed to get the set text of field myInstance to gLabelName to work now! My problem springs from this line: set the visible of field myInstance to false Which comes in the line immediately after the IF line statement. It just refuses to execut...
by Ian.Rowley
Thu Jul 28, 2011 9:44 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Re: Changing the text property of field controls from script

Hello Klaus ... hello World! I've managed to get most of the code working, with one exception! The script fails to make any array item in gLabelName equal to X invisible! From the best I can make out, the script is identifying when the array item = X, but then just ignoring the following line to mak...
by Ian.Rowley
Wed Jul 27, 2011 2:07 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Re: Changing the text property of field controls from script

Thanks Klaus, I'll be sure to check out your suggestions for resources too. I've inherited someone else's code so problem could lie there. Even if not, you've spurred a few additional thinks to try. Nice to be welcomed into the Forum, and especially appreciate the quick turn around in responding. Ch...
by Ian.Rowley
Wed Jul 27, 2011 1:27 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Re: Changing the text property of field controls from script

Hi Klaus, Interesting, as I had assumed my coding was at fault! When I run the card/script, the unwanted field controls (i.e. designated by 'X') are not hidden, and the text of the field controls that are shown is not updated in accordance with what's in the array. So my generic coding - set text of...
by Ian.Rowley
Wed Jul 27, 2011 11:09 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Changing the text property of field controls from script
Replies: 10
Views: 7994

Changing the text property of field controls from script

Hoping someone can give me a point in the right direction. :D I’m attempting to write some coding for labelling Function keys (F1-F20); naturally enough, the functions of the Function keys change, so the labelling needs to as well. Presently I have 20 “field” controls designated “F1lbl” to “F20lbl”....