Search found 56 matches

by edljr
Sat Mar 17, 2012 3:51 am
Forum: iOS Deployment
Topic: iOS 5.1 SDKs
Replies: 53
Views: 30467

Re: iOS 5.1 SDKs

Argh, This is frustrating. I had to upgrade to Lion a few months ago and had not done any LC work since then. Now, I need to make some final changes to one iPhone App and prototype another. I keep getting an error indicating that LC cannot see inside of the Xcode.app bundle. I am using Mac 10.7.3, X...
by edljr
Tue Jun 21, 2011 4:09 am
Forum: Databases
Topic: MySQL Database Table Issue
Replies: 2
Views: 3063

MySQL Database Table Issue

Hi, I have a slight problem that I cannot find reference to. What I am able to do successfully: - Connect to a database on a hosted GoDaddy server with two types of access (full and read-only). - Disconnect from the database. Okay, so that is less than impressive. When I try any query, I get the err...
by edljr
Sun Jan 10, 2010 11:11 pm
Forum: Talking LiveCode
Topic: Software Protection
Replies: 11
Views: 10036

Re: Software Protection

Thanks, Mark.


Ed
by edljr
Sun Jan 10, 2010 2:04 pm
Forum: Talking LiveCode
Topic: Software Protection
Replies: 11
Views: 10036

Re: Software Protection

I have enjoyed reading this thread regarding software protection. As a sideline viewer, I appreciate the time folks have taken to share their insights. Does anyone know of any protection options (not costly) for standalone applications that will be run on computers without Internet Access? The appli...
by edljr
Tue Dec 22, 2009 12:08 am
Forum: Talking LiveCode
Topic: Checkmark on menu items???
Replies: 5
Views: 4472

Re: Checkmark on menu items???

Hi Bernd,

Thanks for the note. I was afraid I would have to fake it. I will look at Oliver's stack to see how he did it.

Best,
Ed
by edljr
Mon Dec 21, 2009 3:34 am
Forum: Talking LiveCode
Topic: Checkmark on menu items???
Replies: 5
Views: 4472

Re: Checkmark on menu items???

Hi, I see I am 2 years late to this discussion, but have a related issue. Is there a way to change the foregroundColor of a specific word of a specific line in a pop-up menu? For example, if btn "instructionsMenu" is a pop-up with these choices: What is this? Why do this? How do I do this? Is there ...
by edljr
Sun Dec 13, 2009 5:31 pm
Forum: Talking LiveCode
Topic: Irregular-shaped fields.
Replies: 3
Views: 2617

Re: Irregular-shaped fields.

Thanks, Bernd.

One could go crazy trying to prevent user-created havoc.

:-)
by edljr
Sat Dec 12, 2009 11:44 pm
Forum: Talking LiveCode
Topic: Irregular-shaped fields.
Replies: 3
Views: 2617

Irregular-shaped fields.

Hi,

Is it possible for user-entered text to be auto-fitted into a non-square/rectangle text field? This code does not give me an error, nor does it result in any change.

Code: Select all

set the rect of fld "triangle1" to the rect of grc "triangle1"
Any help would be appreciated.

Thanks,
Ed
by edljr
Mon Aug 10, 2009 5:55 pm
Forum: Using Externals
Topic: 3D Capabilities
Replies: 8
Views: 9818

Hi Mark,

Thank you for the insight. I am not sure it is worth the $299 to experiment with the product.

Ed
by edljr
Mon Aug 10, 2009 6:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with words
Replies: 7
Views: 5366

Help with words

Pete, It would hope to see what code precedes what you posted. If you merely execute "answer information dialogData" then the only value in dialogData is "OK." If your answer call returns more than just "OK," then you might be able to use something like: put the first item of the dialogData into tAn...
by edljr
Mon Aug 10, 2009 6:12 am
Forum: Using Externals
Topic: 3D Capabilities
Replies: 8
Views: 9818

3D Capabilities

What is known about Franklin 3D? According to the limited information on the site, it "is an external based on the Runtime Revolution specification for externals."

Site URL: http://franklin3d.com/index.php/faq/39- ... erview-faq

Ed
by edljr
Mon Aug 10, 2009 5:53 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with words
Replies: 7
Views: 5366

Help with words

Pete, If I understand you correctly, the below code should demonstrate how to parse the input into 2 different chunks. I added extra answer commands to demonstrate the parsing. on mouseUp local exampleReturnData put "15 Day(s)" into exampleReturnData put word 1 of exampleReturnData into tTemp put wo...
by edljr
Mon Aug 10, 2009 5:46 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Repeat loop and filling a list field
Replies: 2
Views: 2501

Repeat loop and filling a list field

Glenn, If you want to clear out a field, the best way (I think) is to use put empty into fld "fieldName" - not sure from your example if you want the entire field cleared. Here is sample code that clears the field, then populates 10 lines of text. on mouseUp put empty into fld "toolList" repeat with...
by edljr
Mon Aug 10, 2009 5:37 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Clearing a lot of fields
Replies: 5
Views: 3877

Clearing a lot of fields

Glenn, If you have a naming convention that differentiates your label fields from data entry fields, this is easy. For example, you can name all your labels with the preface "label" (i.e. labelName, labelStreet, labelCity). Then you could ignore those fields in the below code: on mouseUp put the num...
by edljr
Mon Aug 10, 2009 4:56 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with words
Replies: 7
Views: 5366

Help with words

Pete,

What is your goal with this code snippet?

Ed

Go to advanced search