Search found 341 matches

by shawnblc
Tue Sep 08, 2020 9:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Starting a livecode substack first in windows app
Replies: 3
Views: 2217

Re: Starting a livecode substack first in windows app

@dunbarx, correct.

My substack is where a user would enter their serial number, then go to the mainStack.
I don't use LC as much as I should, more of a php/mysql and low-code tool user.

@fourthworld,

Thanks. I'm trying to work your idea into my stack. I'll update ya.
by shawnblc
Tue Sep 08, 2020 7:31 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Starting a livecode substack first in windows app
Replies: 3
Views: 2217

Starting a livecode substack first in windows app

I've been trying to start my substack first, but not having any luck. Any assistance is appreciated.

Code: Select all

set the stack of me to stack "mysubstack"
by shawnblc
Tue Sep 01, 2020 5:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Removing extra spaces and or hyphens
Replies: 8
Views: 4154

Re: Removing extra spaces and or hyphens

Thanks everyone. Working like a charm.

Thierry wrote:
Tue Sep 01, 2020 5:02 pm
bn wrote:
Tue Sep 01, 2020 4:56 pm
What I do is:
What I do is:

Code: Select all

put replaceText( yourInputText, "([ ]+|-+)", "-")
ans slighty faster as it doesn't replace single hyphen:

Code: Select all

put replaceText(someText, "([ ]+|--+)", "-")

As usual, different ways...

Regards,

Thierry
by shawnblc
Tue Sep 01, 2020 4:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Removing extra spaces and or hyphens
Replies: 8
Views: 4154

Removing extra spaces and or hyphens

I'm trying to remove all extra spaces and hyphens. In the field there should only be allowed one space between words or one hyphen, but never both and never more than one. I'm currently doing something like this, more it doesn't catch everything. What's a better way than this elementary way? replace...
by shawnblc
Fri Dec 13, 2019 2:12 pm
Forum: Android Deployment
Topic: Put variable into Android field
Replies: 3
Views: 3379

Re: Put variable into Android field

Same error. Still plugging away.
by shawnblc
Fri Dec 13, 2019 12:34 pm
Forum: Android Deployment
Topic: Put variable into Android field
Replies: 3
Views: 3379

Put variable into Android field

I'm trying to do somethin like the following, but I keep getting a script error. How would I put something into the Android Field and make it not editable? put char 44 to 77 of line 3 of URL "https://domain.com/string.php" into tandroidFld1 answer tandroidFld1 put tandroidFld1 into widget "androidFl...
by shawnblc
Wed Dec 11, 2019 11:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Text overlay on browser widget?
Replies: 2
Views: 2319

Re: Text overlay on browser widget?

@-hh, Thank you. I'll check those links out. Much appreciated.
by shawnblc
Wed Dec 11, 2019 11:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Text overlay on browser widget?
Replies: 2
Views: 2319

Text overlay on browser widget?

Is there a way to have a text overlay or graphic overlay on the browser widget? If so, please explain or guide me. Thanks.
by shawnblc
Fri May 17, 2019 2:14 am
Forum: Talking LiveCode
Topic: How to deal with "tsneterr: (60) SSl certificate problem..."
Replies: 13
Views: 8176

Re: How to deal with "tsneterr: (60) SSl certificate problem..."

Typically, you're going to see a SSL error when there's a domain mismatch. Another words a single domain cert vs a domain wildcard cert. A single domain cert is good for only the FQN, a wildcard cert would be good for sub-domains also.
by shawnblc
Wed Apr 24, 2019 11:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Finding among column1 (wordchunk 1) of text file ?
Replies: 4
Views: 3072

Re: Finding among column1 (wordchunk 1) of text file ?

I keep getting no, no matter what. Racking my brain. on mouseUp put fld "fld1" into tLine set itemDel to TAB put URL "http://*********.on-rev.com/testing123.txt" into tFile --answer tFile - shows the file repeat for each line tLine in tFile if item 1 of tLine = tFile then answer "Yes" else answer "N...
by shawnblc
Wed Apr 24, 2019 4:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Finding among column1 (wordchunk 1) of text file ?
Replies: 4
Views: 3072

Finding among column1 (wordchunk 1) of text file ?

I'm trying to find just the text in column 1 of the text file, having difficulty. I've tried to use word 1, segment,. Can you give me some hints on the how to process this? put fld "fld1" into tFile1 put URL "http://domain.com/1.text" into tFile if tFile1 is among the words of tFile then .... My tex...
by shawnblc
Thu Apr 18, 2019 4:05 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Completely deleting substack / stack
Replies: 4
Views: 2982

Re: Completely deleting substack / stack

Excellent Klaus. Got it working. Thanks.

I need to try and spend an hour or so with LC every day instead of dropping off and not using it for years at a time. :) Every time I go back to LC and tinker, I'm amazed.
by shawnblc
Thu Apr 18, 2019 2:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Completely deleting substack / stack
Replies: 4
Views: 2982

Re: Completely deleting substack / stack

Thanks Klaus, but I'm still having issues.
by shawnblc
Thu Apr 18, 2019 8:10 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Completely deleting substack / stack
Replies: 4
Views: 2982

Completely deleting substack / stack

I have a stack with a substack. On the substack I have a button and I want it to delete the substack. I believe I did this about 3 years ago. I guess I need to spend more time with LC :) What am I doing wrong? Basically I want the substack to show only once during the lifetime of the application. On...
by shawnblc
Wed Apr 17, 2019 10:08 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Batch file with a flag -- need assistance
Replies: 33
Views: 17720

Re: Batch file with a flag -- need assistance

Still no luck.

Could it be that the file is in use (or memory) and I'm not getting that error.

Go to advanced search