Search found 262 matches

by SWEdeAndy
Sun Jan 14, 2024 11:26 am
Forum: iOS Deployment
Topic: xCode 15.2 update and macOS Sonoma
Replies: 7
Views: 84539

Re: xCode 15.2 update and macOS Sonoma

I updated Xcode to 15.2 Unfortunately, you'll need to downgrade to Xcode 15.0 for this to work. Confirmed by the mothership over at the list: http://lists.runrev.com/pipermail/use-livecode/2023-December/271698.html From the info available on the LiveCode website, I concocted this little sankey diag...
by SWEdeAndy
Wed Dec 13, 2023 8:17 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

Latest WIS_ScriptDependencies update: v1.1.6 (12 Dec 2023) - Enhancement: If the Kroki service is down, so no png/svg can be produced, a dialog is presented giving the choice to render the flowchart as html instead - Enhancement: Improved design of the help section and the flowchart settings pane - ...
by SWEdeAndy
Thu Nov 30, 2023 10:00 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

mwieder wrote:
Thu Nov 30, 2023 9:56 pm
"PM -> CM"?

Should that read PM -> PC ?
Indeed it should, my bad! Thanks!
In the script I got it right, fortunately! :D
by SWEdeAndy
Thu Nov 30, 2023 9:51 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

New version of WIS_ScriptDependencies available: v1.1.5 (30 Nov 2023) - Enhancement: Flowcharts can now be produced and exported as PNG or SVG. On Windows and Linux the flowchart is now always displayed in-stack, as a PNG. On all platforms the flowchart can be exported as PNG, SVG and HTML. - Enhanc...
by SWEdeAndy
Wed Sep 13, 2023 8:16 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

jacque wrote:
Wed Sep 13, 2023 4:45 pm
There's just no stopping you, is there? 😂
punIntended.png
punIntended.png (6.69 KiB) Viewed 86109 times
8)
by SWEdeAndy
Tue Sep 12, 2023 8:37 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

Is there a way to exclude the entire substack? There is now! :D 1.1.4 (12 Sep 2023) - Enhancement: Individual substacks can now be excluded from mapping/analysis by clicking the substack name in the stacks list. Excluded stacks/substacks are italic in the list. (If a mainstack is excluded, its subs...
by SWEdeAndy
Sat Sep 02, 2023 10:29 am
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

For the exclusions, I want to exclude everything containing the string "hmac" but I'm not sure what to use. I tried these variations without success: .*hmac.* *hmac* My regex knowlege is pretty limited. The handlers I want to exclude are all in a library substack. Is there a way to exclude the enti...
by SWEdeAndy
Wed Aug 30, 2023 10:39 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

Just tried version 1.1.3, it's terrific. The colored lines make it so much easier to trace paths. I tried with and without commented code and the speed didn't seem any different to me, but the flowchart seemed less complex with the option to omit commented handlers turned on. My test stack has a lo...
by SWEdeAndy
Wed Aug 30, 2023 8:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Save snapshot (or exporting image) from Browser Widget
Replies: 16
Views: 44093

Re: Save snapshot (or exporting image) from Browser Widget

You're definitely on to something here, Richmond. A script that loops some "scroll down - take snapshot" code and then knits them together seamlessly would be very useful. I'll give you another cog in that machine, if you wish to explore this further: 1) Set the javascriptHandlers of the browser wid...
by SWEdeAndy
Mon Aug 28, 2023 7:57 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

It is very fast again even if I uncheck "omit commented-out code" in preferences. Quite an improvement. That's good! But I may have been a little unclear in my explanation and/or labelling: If the box is checked, it will strip out comments. If not, it will leave them in. So if anything, it should r...
by SWEdeAndy
Mon Aug 28, 2023 7:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Save snapshot (or exporting image) from Browser Widget
Replies: 16
Views: 44093

Re: Save snapshot (or exporting image) from Browser Widget

This does NOT produce an image of the whole webpage, Indeed. Welcome to square 1, where this thread started: Now, I can extract only a part of the image, the one under the scroll however not. Is there any way to do this? So, what we can do is a screenshot (in LC terms a 'snapshot' defined by global...
by SWEdeAndy
Mon Aug 28, 2023 11:30 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Save snapshot (or exporting image) from Browser Widget
Replies: 16
Views: 44093

Re: Save snapshot (or exporting image) from Browser Widget

I very much need this feature as well, but I’m not aware of any possibility to do so, unfortunately. It’s still stuck as an enhancement request. :(
by SWEdeAndy
Sun Aug 27, 2023 10:40 am
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

OK, new version with pretty good improvements, both in speed and functionality: v1.1.3 (27 Aug 2023) - Fixed bug: Saving user projects and settings didn’t trigger properly at closeStack. Now triggers at closeCard instead. - Enhancement: Handler analysis and comment stripping is now considerably fast...
by SWEdeAndy
Fri Aug 25, 2023 9:43 am
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

Thanks Bernd, you are quite right. This goes right into the next version. I've also found a very efficient way of increasing the speed of the analysis, even with comment stripping: In function searchHandler, an early line of if pLookFor is not in tScript then return 0 does a crude check if the handl...
by SWEdeAndy
Thu Aug 24, 2023 8:22 pm
Forum: Talking LiveCode
Topic: Mapping handler dependencies
Replies: 85
Views: 664303

Re: Mapping handler dependencies

With a script mass amounting to 600+ handlers, I get: 18,3 secs with comment stripping (Bernd's method) 3,6 secs without any comment stripping So, I'm making it a user option, with a warning on speed effects. I found an easy way to skip block comments, by the way: put replaceText(pScript,"\/\*[\s\S]...

Go to advanced search