Search found 9107 matches

by FourthWorld
Fri Apr 26, 2024 8:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Palettising a main stack.
Replies: 9
Views: 225

Re: Palettising a main stack.

Yes, it's good to have options.
by FourthWorld
Fri Apr 26, 2024 6:39 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Palettising a main stack.
Replies: 9
Views: 225

Re: Palettising a main stack.

stam wrote:
Fri Apr 26, 2024 5:58 am
I’ve always used

Code: Select all

Set the style of this stack to “palette”
and it always works fine in preOpenStack
Best of all, the style property is persistent. Set it once, save it, and that's the mode it'll open in forever.
by FourthWorld
Thu Apr 25, 2024 10:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Exporting SVG images?
Replies: 8
Views: 220

Re: Exporting SVG images?

So is this worth an enhancement request, to add a sixth format to the "export" command? It would take quite a while for the team to work through their current queue to get to it, so we have time to draft a good actionable spec. Unlike raster formats, SVG isn't limited to bitmaps. Indeed, it's most ...
by FourthWorld
Thu Apr 25, 2024 10:27 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Palettising a main stack.
Replies: 9
Views: 225

Re: Palettising a main stack.

Use the stack's style property and you'll need no code at all.
by FourthWorld
Thu Apr 25, 2024 4:30 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Exporting SVG images?
Replies: 8
Views: 220

Re: Exporting SVG images?

stam wrote:
Thu Apr 25, 2024 2:41 pm
is SVG not just a text file? (albeit a specially formatted one?)
Web applications are also "just" text.

The work of generating the output lies beyond the encoding of the file format.
by FourthWorld
Wed Apr 24, 2024 8:56 pm
Forum: Databases
Topic: DataGrid column truncating string
Replies: 2
Views: 134

Re: DataGrid column truncating string

Is your DataGrid set to use the Form option, or the Table option?
by FourthWorld
Wed Apr 24, 2024 4:43 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: get name of flashdrive.
Replies: 19
Views: 913

Re: get name of flashdrive.

Most software problems have been encountered by other publishers over the years. Before attempting novel solutions it's often useful to see how others have solved what we're facing, and do what they do. With license enforcement, if you have a web server you can require the user to register the produ...
by FourthWorld
Tue Apr 23, 2024 8:06 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Force the script editor to update?
Replies: 30
Views: 753

Re: Force the script editor to update?

I'm not sure this is what you need, but you can close a stack and remove from memory with a single command: delete stack <stackName> This does not delete the file, it only removes it from LC. If memory serves, that's true only for mainstacks. Be very careful not to use the delete command with subst...
by FourthWorld
Mon Apr 22, 2024 8:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: My masterpiece vanished.
Replies: 11
Views: 446

Re: My masterpiece vanished.

richmond62 wrote:
Mon Apr 22, 2024 7:09 pm
It is interesting to note that somebody else, somewhere else, sorted out that problem in a matter of about 90 minutes.
You can do the same.

For anyone affected by this, all you need to do is create an image object before using a painting tool to paint into it.
by FourthWorld
Mon Apr 22, 2024 4:49 am
Forum: Talking LiveCode
Topic: Security Issue Related to Decompilation in LiveCode
Replies: 13
Views: 638

Re: Security Issue Related to Decompilation in LiveCode

Sounds like incomplete tool implementation.

I can read everything I type. Physical access= root.

The question is, can the bad guys read it?
by FourthWorld
Mon Apr 22, 2024 2:50 am
Forum: Talking LiveCode
Topic: Security Issue Related to Decompilation in LiveCode
Replies: 13
Views: 638

Re: Security Issue Related to Decompilation in LiveCode

What I mean is, using HTTP/HTTPS protocols makes it easy to debug using tools like Proxyman and Charles Proxy. However, I haven't found a tool that can read data streams when using port 22. Even with Wireshark, analysis is only possible up to the exchange of public and private keys. The encryption ...
by FourthWorld
Sun Apr 21, 2024 9:35 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving as LiveCodeScript
Replies: 16
Views: 569

Re: Saving as LiveCodeScript

richmond62 wrote:
Sun Apr 21, 2024 9:00 pm
that makes the mods to the revMenubar stack after it's been instantiated
That is exactly what I am trying to avoid,
Why?
by FourthWorld
Sun Apr 21, 2024 8:40 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving as LiveCodeScript
Replies: 16
Views: 569

Re: Saving as LiveCodeScript

Many years ago I wrote a stack to modify the revMenBar stack on the fly to make it horizontal, vertical, black, blue and sky-blue-pink. The revMenuBar is generated from a script-only stack: I should like to have a way where end-users of the LC IDE can modify the appearance of the revMenuBar so that...
by FourthWorld
Sun Apr 21, 2024 4:14 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Saving as LiveCodeScript
Replies: 16
Views: 569

Re: Saving as LiveCodeScript

That is part of what I meant. But, just as a script-only stack can create another stack with lots of controls, I want to know if one can reverse the process where a "stack with lots of controls" can be saved as a script-only stack in such a fashion that on that script-only stack being opened inwith...
by FourthWorld
Sun Apr 21, 2024 4:11 pm
Forum: Talking LiveCode
Topic: Security Issue Related to Decompilation in LiveCode
Replies: 13
Views: 638

Re: Security Issue Related to Decompilation in LiveCode

keliko wrote:
Sun Apr 21, 2024 5:46 am
Using HTTP protocol (port 80) can be easily intercepted with tools like Proxyman or Charles. I prefer using port 22 because LiveCode does not have an `ssh()` command, so I use PuTTY.
LiveCode supports HTTPS, the most common solution for secure file retrieval and API calls.

Go to advanced search