Search found 557 matches

by AxWald
Tue Mar 23, 2021 12:18 pm
Forum: Talking LiveCode
Topic: Rehashing Switch
Replies: 84
Views: 45895

Re: Rehashing Switch

Hi, may it be that you'd like to have a "continue" control structure analog to "break"? What we have now, to end a statementList (commands to execute if the case statement is true): "Break" - Skips the rest of the current switch structure and goes to the statement following the end switch. [Empty] -...
by AxWald
Mon Mar 22, 2021 3:02 pm
Forum: Talking LiveCode
Topic: Lost answer dialog
Replies: 6
Views: 3466

Re: Lost answer dialog

Hi,
there's something named "CollectMyStacks" in the "Sample Stacks".
Priceless in such cases, and when the Script Editor decides to hide offScreen, again.

Have fun!
by AxWald
Mon Mar 22, 2021 9:43 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Is the Text Field good enough for this ?
Replies: 9
Views: 3976

Re: Is the Text Field good enough for this ?

Hi, Does LC uses a predifined numbers of char per line, no matter whatever screen size the content displays on ? No. Depending on the property "dontWrap" it will: - either not wrap at all (means part of the text may "vanish" at the right), - or wrap at the edge of the field, keeping words together. ...
by AxWald
Sat Mar 20, 2021 3:00 pm
Forum: CGIs and the Server
Topic: Some basic questions about LC server
Replies: 2
Views: 4435

Re: Some basic questions about LC server

Hi, so, it will be a web/cloud server ? It's the servers of my customers. Shared servers, hosted @ able & trustworthy hoster. The customer has limited SSH access (no real root). Server backup is outside of our accessible server space, btw.. Restore is done by hoster, on demand. These servers all run...
by AxWald
Wed Mar 17, 2021 9:56 pm
Forum: CGIs and the Server
Topic: Some basic questions about LC server
Replies: 2
Views: 4435

Some basic questions about LC server

Hi, starting to play a bit more with LC Server I've come to some questions I'd like to ask you who are more experienced here. For clarification, it's about CGI mode - I want to talk to the server via put URL (myServerURL & "test.lc") into myVar -- returns "Hello world!" or put URL (myServerURL & "aF...
by AxWald
Wed Mar 17, 2021 10:03 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: General purpose launcher
Replies: 12
Views: 4645

Re: General purpose launcher

Hi,
stam wrote:
Wed Mar 17, 2021 5:06 am
However i seem to recall some discussion somewhere that a generic 'player' app for LC is forbidden in the licence? Anyone know for sure?
Look here. § 3 e.)

Have fun!
by AxWald
Sun Mar 14, 2021 3:08 pm
Forum: Talking LiveCode
Topic: Why is the geometry manager still borked in 2021?!
Replies: 93
Views: 41492

Re: Why is the geometry manager still borked in 2021?!

Hi, I just don't understand the way the mothership's thinking. Cannot RunRev imagine what a devastating effect such half bugged ruins may have on new customers? Imagine any developer from another language that heard the songs of praise many of us are singing - and that actually can be convinced to g...
by AxWald
Thu Mar 11, 2021 1:02 pm
Forum: Documentation and Tutorials
Topic: Improoving LC Forum Search algo - in sequence ?
Replies: 8
Views: 6076

Re: Improoving LC Forum Search algo - in sequence ?

Hi, I stopped using the forum search ages ago - in any phpBB forum. Those PHP guys seem to have strange ideas about searching. But especially in this forum, Google works fine - the search term: site:forums.livecode.com contact gives exactly your desired result. Calling such a search via plugIn or te...
by AxWald
Thu Mar 04, 2021 11:39 am
Forum: Talking LiveCode
Topic: Not a number is a number, problem
Replies: 83
Views: 33461

Re: Not a number is a number, problem

Hi, Not sure I follow you, AxWald ? Oooops. Sry for puzzling you, should have explained better. Well, look at this: put the text of the mouseLine into tLine -- tLine be "aa" repeat for each character x in tLine -- first iteration: x = "a" ============== PseudoCode from here!!! put charToNum(x) & ","...
by AxWald
Thu Mar 04, 2021 9:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: launch url works in LC but not in stand alone app
Replies: 6
Views: 2380

Re: launch url works in LC but not in stand alone app

Hi,

what SparkOut says - looks like you don't have "Internet" checked in the "Inclusions" pane.

And you can't post any links until you have made 10 successful posts - this is a way to combat the ad spam bot armies. Nothing personal - you're close already!

Have fun!
by AxWald
Wed Mar 03, 2021 1:55 pm
Forum: Talking LiveCode
Topic: Not a number is a number, problem
Replies: 83
Views: 33461

Re: Not a number is a number, problem

Bogs,

changing a variable while looping through it - is it such good an idea?
I'd expect strange results :)

Have fun!
by AxWald
Tue Mar 02, 2021 1:22 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Issue with answer dialog in stack loaded from Launcher standalone
Replies: 3
Views: 1936

Re: Issue with answer dialog in stack loaded from Launcher standalone

Hi,
mikelpapamike wrote:
Tue Mar 02, 2021 12:33 pm
Should the launcher app be compiled with manually selected the answer dialog?
Sure! The "stack that gets compiled as StandAlone" will become your LiveCode engine - it MUST contain any of the resources (libs etc.) that you plan to use later on.

Have fun!
by AxWald
Sun Feb 28, 2021 1:39 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Progress Bar vs. "lock screen"
Replies: 16
Views: 5465

Re: Progress Bar vs. "lock screen"

Hi, I would do everything I possibly could NOT to use CSV formatted data, or at least to reformat them wherever possible. There are a lot of threads about this. Yup. CSV MUST DIE! DIE! put the hilitedLines of fld "myFld" --> "2,5,14,23,42" Hmpf. put the textColor of fld "myFld" --> "0,0,0" Arghh! pu...
by AxWald
Sun Feb 28, 2021 1:23 pm
Forum: Talking LiveCode
Topic: Lost or slow messages resulting in partial redraw of card.
Replies: 4
Views: 2415

Re: Lost or slow messages resulting in partial redraw of card.

Hi, a quick check: "updateMyAppearance" is called very, very often. And it then loops through every single line of the field, each time. Using the relatively slow "repeat with N = 1 to to number of lines of me". Check in message watcher, this may really run quite often. So my advice would be: A. Det...
by AxWald
Sun Feb 28, 2021 12:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Recognizing character "-"
Replies: 5
Views: 2856

Re: Recognizing character "-"

Hi, just checked out of curiosity. This works: on mouseUp get fld "input_fld" -- where there's my input repeat for each char C in it if C = "-" then put 1 after myVar -- add a value for - else if C = "." then put 2 after myVar -- add a value for . else put "?" after myVar -- in case we have somethin...

Go to advanced search