Search found 3324 matches

by mwieder
Mon May 29, 2023 6:10 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Resizing script editor variable pallets
Replies: 23
Views: 12594

Re: Resizing script editor variable pallets

Here's the tl;dr of how I go from debugger to script editor. ymmv. /** * editScriptAt * * pSelection : chunk - "char start to end of line n" * pObject : name of object to be edited */ constant kIDEScriptEditor = "revNewScriptEditor 1" private command editScriptAt pSelection, pObject local tChunk loc...
by mwieder
Mon May 29, 2023 2:24 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Resizing script editor variable pallets
Replies: 23
Views: 12594

Re: Resizing script editor variable pallets

Not a command, but if you catch the trace or traceBreak messages in a frontscript you get the proper arguments.

Code: Select all

on trace pHandlerName, pLineNumber, pDepth
on traceBreak pHandlerName, pLineNumber, pDepth
by mwieder
Sun May 28, 2023 7:10 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Resizing script editor variable pallets
Replies: 23
Views: 12594

Re: Resizing script editor variable pallets

LOL.
I do want to say, though, that PowerDebug has the option to change the text font and size for both the variables display and the script view.
by mwieder
Sun May 28, 2023 1:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Should be a simple matter of renaming your current installed version and then reinstalling. Then you'll have something to compare the virgin installation with.
by mwieder
Sat May 27, 2023 9:04 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Error info about try/catch
Replies: 21
Views: 13437

Re: Error info about try/catch

Maybe. But it's not a handler, it's a system property.
by mwieder
Sat May 27, 2023 6:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Error info about try/catch
Replies: 21
Views: 13437

Re: Error info about try/catch

If you include the revErrorReport stack in your standalone then you do have access to the list, but you have to grab it yourself. In the script for revSaveAsStandalone.livecodescript I see set the cErrorsList of stack "revErrorReport" to the scriptExecutionErrors set the cScriptErrors of stack "revE...
by mwieder
Sat May 20, 2023 1:09 am
Forum: Linux
Topic: Kubuntu 22.04
Replies: 27
Views: 46414

Re: Kubuntu 22.04

tetsuo29-

I stopped installing for "all users" a while back to make my life simpler, especially for uninstalling.

Of course, all this could be solved with a proper linux installer, but LC has never had one of those.
by mwieder
Sat May 13, 2023 7:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Heh. Well, I did say "mostly".

And yes, I also do the

Code: Select all

if <something> is not true then
construct in cases where <something> is a three-state boolean: true, false, empty.
That resolves it to true or not true.
by mwieder
Sat May 13, 2023 2:05 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Look at Richard's message diagram again - background scripts come right before the engine. So everything in it is fair game for any stack or control.
If you want your script to respond only to explicit calls then your best bet would be to make it a substack.
by mwieder
Fri May 12, 2023 5:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Indeed it is. My writing before thinking.
But mostly I tend not to use negative conditionals anyway, because I find it makes code easier to read.

Code: Select all

if <condition> then
else
end if
by mwieder
Fri May 12, 2023 2:15 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Whew! Well, I would have preferred it as an attachment, but... a couple of things from a quick overview (I take it --elvis is so you can say "find Elvis") LiveCode doesn't accept the mac "≠" character as an operator, so you'll have to use "!=" or say "is not" or something similar. ...don't get me st...
by mwieder
Thu May 11, 2023 5:00 pm
Forum: Announcements
Topic: Announcing Xavvi, a Great Leap Forward for App Building
Replies: 160
Views: 683817

Re: Announcing Xavvi, a Great Leap Forward for App Building

I think Kevin's response at 13:08 to why xavvi is important is brilliant. Xavvi basically sidesteps the 6-week language and environment learning curve.
by mwieder
Sat May 06, 2023 2:11 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: message box covered with objects of some kind
Replies: 45
Views: 34858

Re: message box covered with objects of some kind

Back to your original problem though... If you launch with IDE without your backscript does the message box look ok? If it still has the weird objects then my guess is that your backscript intercepted the save message, possibly by changing the default stack or possibly by making the message box the ...
by mwieder
Thu May 04, 2023 4:39 pm
Forum: Announcements
Topic: Announcing Xavvi, a Great Leap Forward for App Building
Replies: 160
Views: 683817

Re: Announcing Xavvi, a Great Leap Forward for App Building

Ah! The Updates tab. Thanks - that's what I was missing.

Go to advanced search