Search found 5845 matches

by airsoftsoftwair
Fri Dec 05, 2025 7:51 pm
Forum: APK Compiler
Topic: Windows 86
Replies: 3
Views: 215

Re: Windows 86

It's rather unlikely. It's enough work already to keep APK Compiler working on Windows because with almost every new version of Android Studio for Windows the APK Compiler needs to be adapted as well. That's why I'm not too enthusiastic about adding support for another platform...
by airsoftsoftwair
Fri Dec 05, 2025 7:49 pm
Forum: APK Compiler
Topic: error compiling apk
Replies: 3
Views: 357

Re: error compiling apk

The most recent APK Compiler version is almost 3 years old. A lot has changed in Android Studio so make sure you use the Android Studio version APK Compiler was designed for. AFAICS this is Android Studio Electric Eel (2022.1.1).

Or wait for an APK Compiler update which will come soon ;)
by airsoftsoftwair
Fri Dec 05, 2025 7:47 pm
Forum: Hollywood bugs
Topic: GetVolumeName() and GetVolumeInfo() on Windows
Replies: 1
Views: 171

Re: GetVolumeName() and GetVolumeInfo() on Windows

I hope it's only a not initialized variable. Actually, this was because on Windows Hollywood wasn't checking if the drive name specified exists. Of course those functions should fail if the specified drive doesn't exist. Fixed this now, thanks for reporting! - Fix [Windows]: GetVolumeName() and Get...
by airsoftsoftwair
Fri Nov 28, 2025 8:58 pm
Forum: Hollywood bugs
Topic: ShowDisplay() problem
Replies: 1
Views: 617

Re: ShowDisplay() problem

Right, this is fixed now, thanks for reporting!

Code: Select all

- Fix [Linux]: Calling ShowDisplay() on a hidden display caused the program to freeze on newer Linux distributions
by airsoftsoftwair
Fri Nov 21, 2025 9:08 pm
Forum: Newbie questions
Topic: macOS Tahoe
Replies: 1
Views: 567

Re: macOS Tahoe

I don't have a Tahoe test system but I don't see any reason why it shouldn't work. Have you tested the main Hollywood distribution on Tahoe? The app you pointed to seems to use RapaGUI which could be the cause for the crash.
by airsoftsoftwair
Fri Nov 21, 2025 9:05 pm
Forum: General programming
Topic: String indexes, spaces, and WriteTable()
Replies: 2
Views: 629

Re: String indexes, spaces, and WriteTable()

I have a table with string indexes, and the strings come from outside the program and may also contain spaces. The space character is currently reserved as a special marker for the data type serialized into a JSON key in case the data is non-standard. It is mentioned here . This is necessary so tha...
by airsoftsoftwair
Sun Nov 16, 2025 6:35 pm
Forum: Hollywood bugs
Topic: rc after error message
Replies: 7
Views: 23077

Re: rc after error message

Changed this a little, the error code is now user-configurable: - New: Added the ERRORCODE console argument/tooltype; this argument allows you to set an error code that Hollywood should return in case an error occurs; this allows you to react on certain error codes when embedding Hollywood in batch ...
by airsoftsoftwair
Sun Nov 16, 2025 6:34 pm
Forum: General programming
Topic: Saving Functions to JSON-file, what happens?
Replies: 3
Views: 559

Re: Saving Functions to JSON-file, what happens?

Standard JSON-parser should not support storing or evaluating code. Generally it's a bad idea and should only be done with trusted JSON, as it would allow injecting malicius code into your game. Good point. It's still supported,though, but only as some proof of concept sort of. I'd also advise agai...
by airsoftsoftwair
Sun Nov 16, 2025 6:33 pm
Forum: General programming
Topic: How to save an MP4 format using BeginAnimStream?
Replies: 5
Views: 2600

Re: How to save an MP4 format using BeginAnimStream?

Ant hope to have an updated version of avcodec ? That's unlikely. The problem is 68k compilers. The code quality of 68k compilers is very low nowadays which means that you have to manually find bugs in the code generator and implement workarounds. It was already very difficult to create a stable 68...