Search found 5589 matches

by airsoftsoftwair
Thu Oct 03, 2024 10:06 pm
Forum: Announcements
Topic: Pangomonium 2.1 released
Replies: 1
Views: 239

Re: Pangomonium 2.1 released

Pangomonium v2.1a has just been released. This release only contains a bugfix for the macOS PowerPC platform. All other platforms are unchanged so you only need to update your installation if you're on macOS PPC.
by airsoftsoftwair
Thu Oct 03, 2024 10:06 pm
Forum: Announcements
Topic: Hollywood goes LaTeX: hTeX 1.0 released
Replies: 10
Views: 3341

Re: Hollywood goes LaTeX: hTeX 1.0 released

hTeX v1.0b has just been released. This release only contains a bugfix for the macOS PowerPC platform. All other platforms are unchanged so you only need to update your installation if you're on macOS PPC.
by airsoftsoftwair
Thu Oct 03, 2024 10:04 pm
Forum: General programming
Topic: How to wait for key and know what key it was?
Replies: 9
Views: 725

Re: How to wait for key and know what key it was?

Bugala wrote: Sun Sep 29, 2024 8:40 am Like flinx said, point was that we were in need of the RETURN value of the WaitKeyDown(). As in, which key user pressed to get past the WaitKeyDown().
Ah ok, I can understand that this could be useful. I'll see what I can do.
by airsoftsoftwair
Thu Oct 03, 2024 10:03 pm
Forum: General programming
Topic: BrushToRGBArray does not support async mode
Replies: 3
Views: 325

Re: BrushToRGBArray does not support async mode

I don't understand this question. What do you mean by "async mode"? Are you playing an anim in async mode? But what does it have to do with BrushToRGBArray() then? Please post an MCVE.
by airsoftsoftwair
Thu Oct 03, 2024 10:02 pm
Forum: Newbie questions
Topic: Is there a way to recognise if Window dragbar has been clicked?
Replies: 2
Views: 288

Re: Is there a way to recognise if Window dragbar has been clicked?

I don't think this is possible. Most window managers just allow apps to detect when a window is being dragged but not if the drag bar has been clicked without moving the window.
by airsoftsoftwair
Thu Oct 03, 2024 10:01 pm
Forum: RapaGUI
Topic: Listview Column Hide
Replies: 6
Views: 914

Re: Listview Column Hide

Running out of stack is very likely caused by some recursion problems. You have to prepare an MCVE so that the cause can be checked.
by airsoftsoftwair
Thu Oct 03, 2024 10:00 pm
Forum: GL Galore
Topic: GL Galore brush speed test (for tilemapped games)
Replies: 8
Views: 402

Re: GL Galore brush speed test (for tilemapped games)

Hmm, I get just 1 page on a modern Windows PC?!
by airsoftsoftwair
Thu Oct 03, 2024 10:00 pm
Forum: Wishlist
Topic: Ask to download missing plugins
Replies: 4
Views: 226

Re: Ask to download missing plugins

Couldn't Hollywood ask to download a missing plugin if it shows the "... plugin is missing" requester? Wouldn't be a big problem on Amiga systems but what about Windows and macOS? I could imagine that a program that is trying to download and install executables is certainly going to trigg...
by airsoftsoftwair
Sat Sep 28, 2024 10:41 pm
Forum: Wishlist
Topic: Way to get value of the #CENTER
Replies: 15
Views: 1012

Re: Way to get value of the #CENTER

But you know that this is syntactically not correct? #CENTER is a constant with the value -100000 and this magic number triggers Hollywood's center arithmetic. You can't add numbers to it. Actually, you can ;) It is possible to add and subtract values to those special constants in order to do some ...
by airsoftsoftwair
Sat Sep 28, 2024 10:38 pm
Forum: General programming
Topic: How to wait for key and know what key it was?
Replies: 9
Views: 725

Re: How to wait for key and know what key it was?

jPV wrote: Tue Sep 24, 2024 7:14 am As a feature request, it indeed would be nice to have something like:

Code: Select all

key$ = WaitKeyDown("any")
Um, don't we have that already or am I missing something here? The manpage of WaitKeyDown() explicitly mentions the "ANY" special key since Hollywood 6.1 already.