Search found 1136 matches

by LCMark
Tue Nov 29, 2022 10:58 am
Forum: CGIs and the Server
Topic: formattedwidth Failing / Bug on Server
Replies: 13
Views: 5405

Re: formattedwidth Failing / Bug on Server

I believe the key to Mark's suggestion wasn't the "invisible" part, but the going. When LC goes to a card it unpacks all the parts in a way that invokes the font system, then allowing rendered font metrics to become available. If I understand where he's coming from, the "invisible" part just allows...
by LCMark
Fri Nov 25, 2022 3:59 pm
Forum: Talking LiveCode
Topic: _internal script colorize [SOLVED]
Replies: 8
Views: 2585

Re: _internal script colorize

The internal colorize stuff needs to be configured before it will do anything useful. The code the SE (and message box uses) is in revseutilities... This doesn't get initialized until it is first used - the easiest thing to do is to use the utility handler Bernd suggested in there, as that ensures t...
by LCMark
Fri Nov 25, 2022 3:56 pm
Forum: CGIs and the Server
Topic: formattedwidth Failing / Bug on Server
Replies: 13
Views: 5405

Re: formattedwidth Failing / Bug on Server

Where is the field which is being measured? Fields on stacks (cards in fact) which are not open (which is different from being loaded - and being able to execute script!) will return 0 for any measurement operations as the field only sets up the internal layout structures when the control is opened....
by LCMark
Tue Nov 08, 2022 12:42 pm
Forum: Talking LiveCode
Topic: LiveCode Server and M2 processor? [SOLVED]
Replies: 5
Views: 2716

Re: LiveCode Server and M2 processor? (Issue with FerrusLogic's VSCode plugin)

@stam: So a recent update to macOS on arm macs has tightened the verification of executables. We need to tweak what we do to the server engines we ship to make it work out of the box... However, you can resolve the issue yourself by doing: cp server server-copy codesign -s - -f server-copy rm server...
by LCMark
Thu Nov 03, 2022 9:31 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: 64 Bit Standalone on Windows 11 won't load
Replies: 13
Views: 5066

Re: 64 Bit Standalone on Windows 11 won't load

not in my tests. removing the printer was enough. i did the trick 3 or 4 times: install printer->run app -> failure ->remove printer -> run app -> good -> install printer->run app-> failure and so on ad libitum. i did not uninstall anything. i had to simply add/remove the printer, letting ms do tha...
by LCMark
Fri Jul 29, 2022 4:46 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: M1 Monterray: MergNotify unknown command
Replies: 3
Views: 1508

Re: M1 Monterray: MergNotify unknown command

Yes - we need to make sure we compile mergNotify for arm64 on macOS as well it seems :D However, that being said, I don't think those two lines in 'macos' case actually do anything useful - macOS doesn't have notifications UIApplicationWillResignActiveNotification and UIApplicationDidBecomeActiveNot...
by LCMark
Fri Jul 22, 2022 11:57 pm
Forum: Talking LiveCode
Topic: Why is the geometry manager still borked in 2021?!
Replies: 93
Views: 40067

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

@FourthWorld: It’s called asking the individual concerned ‘Do you agree to assign copyright of your submission to LiveCode Ltd.’. This has never been a problem before, and if anyone did raise objection we would just politely decline and delete any remnant of their submission and move on. The explici...
by LCMark
Fri Jul 22, 2022 7:21 pm
Forum: Talking LiveCode
Topic: Why is the geometry manager still borked in 2021?!
Replies: 93
Views: 40067

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

@bwmilby: Yes - exactly - there is no issue with commercial licensees suggesting improvements / fixes to source-code present in the commercial editions of LiveCode. Members of the LiveCode community did that for a long time before there was a LiveCode Community Edition, and have done since that prod...
by LCMark
Fri Jul 22, 2022 1:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: RegEx filter with accented characters?
Replies: 26
Views: 6366

Re: RegEx filter with accented characters?

the 'composed characters' which exist in Unicode today are the only ones which will ever exist in the standard (for the languages it already encodes) - there will never be any more Um . . . well, as you will see above, I posted a screenshot of some of the Glagolitic combining characters for the Uni...
by LCMark
Fri Jul 22, 2022 12:42 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: RegEx filter with accented characters?
Replies: 26
Views: 6366

Re: RegEx filter with accented characters?

The point of this discussion is not how you create accented characters, but if this is an issue for regex. I'll re-state the question i posed earlier: if you feed a string to regex either using the accented char or a 'unicode' combination, will regex treat this differently? In an ideal world, no it...
by LCMark
Wed Jul 20, 2022 3:30 pm
Forum: Talking LiveCode
Topic: A piece of one card appears on another
Replies: 24
Views: 5835

Re: A piece of one card appears on another

@dunbarx: file a bug in the quality center and email the stack to support if it’s sensitive; otherwise just attach and we will take a look.
by LCMark
Tue Jul 19, 2022 5:44 pm
Forum: Talking LiveCode
Topic: A piece of one card appears on another
Replies: 24
Views: 5835

Re: A piece of one card appears on another

@dunbarx: Try updating to 9.6.8 - there's a 99% chance that that will make the issue go away... (The 1% is reserved for the possibility of it being something you are doing in script causing it without realizing ;) ).
by LCMark
Tue Jul 12, 2022 4:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Get an SVG
Replies: 20
Views: 5958

Re: Get a SVG

Still, the LiveCode folks warn us in the dictionary that SVG functionality is provisional and subject to change until the LC 9 development cycle is complete, so I'm very wary of using SVGs in an app planned soon for publication. Ooops - I didn't realize that was still there. That referred to the LC...
by LCMark
Tue Jul 12, 2022 6:45 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Auto-indenting generated scripts [SOLVED]
Replies: 6
Views: 2400

Re: Auto-indenting generated scripts

@stam: Sorry - I made a mistake in my code example - it should be `stack "com.livecode....". The handler sits in one of the behavior scripts which make up the Script Editor - the actual code itself isn't specific to an SE instance or anything so it can be used by other things, its just that to call ...
by LCMark
Mon Jul 11, 2022 6:02 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Auto-indenting generated scripts [SOLVED]
Replies: 6
Views: 2400

Re: Auto-indenting generated scripts

@stam: There isn't an 'official' IDE API for this - although if you post a request to the RQCC about it we can probably add one pretty easily as the code which does the indentation in the SE was exposed to work for the snippet manager we added in LiveCode 8 (?) [ and also so we could write unit test...

Go to advanced search