Search found 750 matches
- Wed Feb 18, 2026 3:21 pm
- Forum: General programming
- Topic: readtable & json file
- Replies: 3
- Views: 303
Re: readtable & json file
Hi, I have two different tables and I want to save both on an unique file via writetable using the default option. They are written correctly while the reading is impossible receiving an error message. Saving the two tables, each one in a different file, they are correctly read. There is a way to h...
- Tue Feb 17, 2026 11:24 am
- Forum: Newbie questions
- Topic: Is there a way to see which Music ID is playing?
- Replies: 2
- Views: 280
Re: Is there a way to see which Music ID is playing?
There probably isn't a direct command for it, but you can do a small function yourself: Function p_WhichMusicIsPlaying() ; Returns the ID of a music object that is playing currently. ; If no music is playing, then it returns Nil. Local t, c = GetObjects(#MUSIC) For Local i = 0 To c - 1 If IsMusicPla...
- Mon Feb 16, 2026 12:33 pm
- Forum: Showcase
- Topic: MiniLibs - Lists required libraries for Miniwood
- Replies: 2
- Views: 4855
Re: RNORadio
I'd be interested to know how you embedded the binary and ran it from within Hollywood. Thanks. Simply just linking the external program as a file in Hollywood executable with the @FILE preprocessor. And then at the program startup I write the file to a temporary location (which I clean at exit the...
- Thu Feb 12, 2026 2:23 pm
- Forum: General programming
- Topic: Help Playing an HTTP Audio Stream
- Replies: 3
- Views: 340
Re: Help Playing an HTTP Audio Stream
I think the situation is still that these Hollywood things query for the filesize and thus won't work with endless streams.
- Tue Feb 10, 2026 10:19 am
- Forum: Polybios
- Topic: Polybios download
- Replies: 6
- Views: 1067
Re: Polybios download
I don't know if it's been left out by purpose or by accident, but the direct download link works still...
- Mon Feb 09, 2026 8:14 am
- Forum: Newbie questions
- Topic: Error loading sqlite3.hwp
- Replies: 3
- Views: 603
Re: Error loading sqlite3.hwp
Where do you have the plugin installed? If it's in the same dir with the executable, then it should work. But there was a change in Hollywood 11 that global plugins (in libs:hollywood) don't get loaded anymore unless you define GlobalPlugins=True in the @OPTIONS table.
- Thu Jan 22, 2026 3:13 pm
- Forum: Hollywood bugs
- Topic: tbl = { "1", "2", "3", } acceptable, Bug or not?
- Replies: 1
- Views: 4323
Re: tbl = { "1", "2", "3", } acceptable, Bug or not?
It's optional, but perfectly valid, in Lua specs too, so I think it's just fine to use it also in Hollywood.
Of course it looks a bit suspicious, but it can be helpful if you machine generate tables etc..
Of course it looks a bit suspicious, but it can be helpful if you machine generate tables etc..
- Tue Jan 20, 2026 7:39 am
- Forum: Newbie questions
- Topic: Amiga OS4 Specific Programming
- Replies: 3
- Views: 4219
Re: Amiga OS4 Specific Programming
I haven't done OS4 only productions myself, but I think that most, if not all, are in the "Amiga support library" section in the docs. Amidock, Application and Ringhio messages... And then if you're doing MUI programming, MUI 4+ features are available in OS4, while on OS3 you have to keep ...
- Mon Jan 19, 2026 3:50 pm
- Forum: General programming
- Topic: Miniwood and constants
- Replies: 5
- Views: 5605
Re: Miniwood and constants
Could it be that the standard compression already compresses the libraries when compiling from the windows IDE? I always select to enable compression at the prompt when compiling. Yes, it's the same. From the documentation: "if you activate compression, e.g. by setting the Compress tag to True...