Search found 5460 matches

by airsoftsoftwair
Mon May 20, 2024 6:15 pm
Forum: General programming
Topic: WaitEvent() cannot be called in functions triggered by some Event?
Replies: 1
Views: 19

Re: WaitEvent() cannot be called in functions triggered by some Event?

The error message seems not to be fitting :) But I guess there is a good reason, why this is not possible? Indeed. On several systems calling WaitEvent() will enter the program main loop and will never return. The documentation is actually a bit of out of date here because it says that WaitEvent() ...
by airsoftsoftwair
Mon May 20, 2024 6:11 pm
Forum: Hollywood bugs
Topic: Bug in generic For-In-Next Loop?
Replies: 1
Views: 49

Re: Bug in generic For-In-Next Loop?

Actually, I think there is a misunderstanding here. When using the generic for statement, the variables are always local. There is no way to use the generic for statement with non-local variables. That's why the "Local" keyword isn't supported for the generic for statement. Just check: Loc...
by airsoftsoftwair
Mon May 20, 2024 6:07 pm
Forum: Hollywood bugs
Topic: Typo in the manual
Replies: 1
Views: 101

Re: Typo in the manual

Thanks, fixed!
by airsoftsoftwair
Mon May 20, 2024 6:07 pm
Forum: General programming
Topic: How to find out which #RANDOMEFFECT was used?
Replies: 1
Views: 102

Re: How to find out which #RANDOMEFFECT was used?

nexus wrote: Fri May 17, 2024 6:13 pm returns a 0. I am wondering how that can be and which RANDOMEFFECT causes that?
Good question. Normally that shouldn't happen. Have you got an MCVE that demonstrates the issue?
by airsoftsoftwair
Mon May 20, 2024 6:06 pm
Forum: Hollywood bugs
Topic: CompareStr() and binary data
Replies: 1
Views: 141

Re: CompareStr() and binary data

I think this is intentional. As mentioned here #ENCODING_RAW is just a synonym for #ENCODING_ISO8859_1 (both constants have the same value 0) so there is no way to make #ENCODING_RAW behave different than #ENCODING_ISO8859_1.
by airsoftsoftwair
Mon May 20, 2024 6:04 pm
Forum: APK Compiler
Topic: Compiler HDD space allocation
Replies: 1
Views: 131

Re: Compiler HDD space allocation

I found that the compiler had just above 7GB data stored in the Appdata folder. Yeah, welcome to the age of bloatware, but don't blame the APK Compiler for it. These are all temporary build files generated by the Android Studio build chain. It's crazy that all this stuff is needed to build APKs tha...
by airsoftsoftwair
Fri May 10, 2024 12:08 am
Forum: Hollywood bugs
Topic: Treeview GetEntry "Parent" not working as expected OS4
Replies: 1
Views: 681

Re: Treeview GetEntry "Parent" not working as expected OS4

Yes, this seems to be related to the other issues in the Treeview widget when using MUI already discussed here. Will be fixed...
by airsoftsoftwair
Fri May 10, 2024 12:07 am
Forum: General programming
Topic: macOS, quarantine and App Translocation, Run()
Replies: 2
Views: 562

Re: macOS, quarantine and App Translocation, Run()

I think you can easily get around the hassle of forcing users to make your program executable if you use container formats that support the corresponding executable flags, e.g. for Linux use tar.gz and for macOS use dmg images. Those container formats can store the executable flag so the user doesn'...
by airsoftsoftwair
Fri May 10, 2024 12:00 am
Forum: RapaGUI
Topic: Problem with Treeview and GetEntry Parent
Replies: 3
Views: 631

Re: Problem with Treeview and GetEntry Parent

Yes, this seems to be related to the other issues in the Treeview widget when using MUI already discussed here. Will be fixed...
by airsoftsoftwair
Thu May 09, 2024 11:58 pm
Forum: RapaGUI
Topic: Debian 12 x64 RapaGUI HTMLView installation problem
Replies: 3
Views: 310

Re: Debian 12 x64 RapaGUI HTMLView installation problem

Since Hollywood plugins are just shared objects on Linux you can always use readelf to check the components required by a Hollywood plugin. The GTK3 build of RapaGUI with HTMLview requires libwebkitgtk-3.0.so.0. Have you got that?