Search found 378 matches

by Flinx
Sat Jun 06, 2026 11:56 am
Forum: General programming
Topic: Is NIL argument later defined still a local?
Replies: 3
Views: 111

Re: Is NIL argument later defined still a local?

Bugala, plouf has already answered the question precisely, hasn't he? His code example clearly shows that `OpArgs` is a local variable of the function even when it is passed as Nil.
by Flinx
Fri Jun 05, 2026 4:49 pm
Forum: General programming
Topic: How to find out the currently selected display?
Replies: 2
Views: 432

Re: How to find out the currently selected display?

Thanks! I hadn't found that. I'm not sure in which situations it fails this way, but at least it's better than nothing. I had tried to make the table monitor I recently presented here as universally usable as possible, because it helped me quite a bit. Since it requires a SelectDisplay, I have to sw...
by Flinx
Fri Jun 05, 2026 2:52 pm
Forum: General programming
Topic: How to saturate just one colo (R, G, B)?
Replies: 2
Views: 118

Re: How to saturate just one colo (R, G, B)?

Here’s something of a solution, but it needs a lot of memory for the tables and is slow. It might still be helpful, if no one knows a better way. The operations in the loop could be combined into a single line, which would probably speed up the calculation a bit, but it’s easier to experiment this w...
by Flinx
Tue Jun 02, 2026 4:40 pm
Forum: General programming
Topic: How to find out the currently selected display?
Replies: 2
Views: 432

How to find out the currently selected display?

I'm searching for a way to determine which display is currently selected. Is this possible?
by Flinx
Thu May 28, 2026 10:54 am
Forum: Hollywood bugs
Topic: Linux and the Constant problems
Replies: 22
Views: 77537

Re: Linux and the Constant problems

Ah, you changed your post, so I have reply again. What your responses are showing me is that you don't force Hollywood to do complicated tasks, or that your projects aren't aimed at all available operating systems, where it's easy to find problems Your judgment is poor. But fine, I'll try not to off...
by Flinx
Thu May 28, 2026 10:20 am
Forum: Hollywood bugs
Topic: Linux and the Constant problems
Replies: 22
Views: 77537

Re: Linux and the Constant problems

Ok, but do you still have a problem?
by Flinx
Wed May 27, 2026 12:43 pm
Forum: Hollywood bugs
Topic: Linux and the Constant problems
Replies: 22
Views: 77537

Re: Linux and the Constant problems

If you still need an answer, show us the command line you use to compile the problematic script. From your posts, I am not sure if your problem is solved or not. Also, show us Hollywood's output from the compilation run.
by Flinx
Sun May 24, 2026 11:46 am
Forum: Hollywood bugs
Topic: Linux and the Constant problems
Replies: 22
Views: 77537

Re: Linux and the Constant problems

With ls -la Plugins: drwxr-xr-x 3 juan juan 4096 feb 13 23:40 . drwxrwxr-x 5 juan juan 4096 may 20 10:08 .. drwxr-xr-x 2 juan juan 4096 may 20 10:12 Plugins Your Plugins directory contains a subdirectory with the name Plugins, but no plugin files. That can't work. So move all plugins from the subdi...
by Flinx
Thu May 21, 2026 8:53 am
Forum: Code snippets area
Topic: Table Monitor - a real-time monitor for Hollywood tables
Replies: 1
Views: 12079

Re: Table Monitor - a real-time monitor for Hollywood tables

I forgot to mention that at the end of the interval function, SelectDisplay(1, True) is executed. Of course, this is only correct if your program uses Display 1 by default. Otherwise, you will need to adjust this line. I haven’t found a way to determine which display is currently selected, so this i...
by Flinx
Wed May 20, 2026 8:46 pm
Forum: Code snippets area
Topic: Table Monitor - a real-time monitor for Hollywood tables
Replies: 1
Views: 12079

Table Monitor - a real-time monitor for Hollywood tables

Since it can sometimes be difficult to keep track of complex table structures, I built a debugging tool that displays a table in a dedicated window. And since I think it might be helpful to others as well, I'm posting it here. The functions should be able to be integrated into any Hollywood program ...