Search found 1390 matches

by Bugala
Tue Oct 21, 2025 10:59 am
Forum: Newbie questions
Topic: Hollywood programming in Linux?
Replies: 3
Views: 164

Re: Hollywood programming in Linux?

Um, You do know that Hollywood is available in native builds for all kinds of Linux platforms? (x86, x64, arm and even PPC). No need to use Windows emulators, just use the real thing (tm) ;) Oh. Must have been somehow thinking Designer in my head thinking it is only available to Amiga and PC, altho...
by Bugala
Mon Oct 20, 2025 6:03 pm
Forum: Newbie questions
Topic: Hollywood programming in Linux?
Replies: 3
Views: 164

Hollywood programming in Linux?

I am thinking of making one laptop of mine into a Linux machine. But I wonder how could I use it to program with Hollywood. Anyone here have tips to give? Like, is it called Wine? sound like you could use Linux to run windows software, would that include Hollywood? Or could you run something like Am...
by Bugala
Mon Oct 20, 2025 5:59 pm
Forum: Wishlist
Topic: Easing commands
Replies: 1
Views: 67

Easing commands

I wonder if it would make sense to have easing commands for Hollywood as standard. I have done my own easing functions, and Allanon has his easing function collection too, but they are so commong thing to use nowadays in games, and I guess you could maybe make them more efficient than my own version...
by Bugala
Sat Oct 11, 2025 10:08 pm
Forum: Wishlist
Topic: Does MakeButton() have to return ID as a last thing?
Replies: 2
Views: 190

Re: Does MakeButton() have to return ID as a last thing?

Good point, forgot it does that.

Going to check if I can take advantage of that, since I have my own custom MakeButton function.
by Bugala
Fri Oct 10, 2025 9:17 pm
Forum: Wishlist
Topic: Does MakeButton() have to return ID as a last thing?
Replies: 2
Views: 190

Does MakeButton() have to return ID as a last thing?

Is there any technical reason that MakeButton Returns the ID as a last thing, as in: ID = MakeButton(NIL, X, Y...) Doesnt it anyway reserve the memoryspace as a first thing, hence it could return it as a first thing too? My question is related to the situation where I would want to use this returned...
by Bugala
Sun Sep 28, 2025 8:34 pm
Forum: Newbie questions
Topic: Reading Data From File
Replies: 6
Views: 502

Re: Reading Data From File

Yep, Settings sounds like ideal for WriteTable - ReadTable case: Function SaveSettings(SettingsTbl, FileName) OpenFile(1, Filename) WriteTable(1, SettingsTbl) CloseFile(1) EndFunction Function LoadSettings(Filename) OpenFile(1, Filename) Local TempSettingsTbl = ReadTable(1) CloseFile(1) Return(TempS...
by Bugala
Sat Sep 27, 2025 10:08 pm
Forum: Newbie questions
Topic: Reading Data From File
Replies: 6
Views: 502

Re: Reading Data From File

I am wondering what you are trying to achieve with this, and if instead of using textfile, you could use a Table file. In Hollywood, when you have a table,you could do for example: ExampleTable={ ["line1"] = {eng = "Attention!", deu="achtung!"} } OpenFile(1, "myfil...
by Bugala
Mon Sep 22, 2025 9:22 am
Forum: Newbie questions
Topic: Forum Problems?
Replies: 8
Views: 585

Re: Forum Problems?

I had to log in just a moment ago.
by Bugala
Tue Sep 16, 2025 1:20 pm
Forum: General programming
Topic: Why JSON files sometimes fail after Save?
Replies: 17
Views: 565

Re: Why JSON files sometimes fail after Save?

Hmm, Bugala, JSON is a data interchange format. That means it is intended to be written by programs and read by parsers that have been specifically developed for this purpose. The fact that it can be read and written in an editor makes life easier for developers (at least if they know what they're ...
by Bugala
Sun Sep 14, 2025 8:57 pm
Forum: General programming
Topic: Why JSON files sometimes fail after Save?
Replies: 17
Views: 565

Re: Why JSON files sometimes fail after Save?

Also, as I mentioned, this problem occurs when I am saving with Hollywood IDE as well. It appears, that by default Hollywood IDE is saving as UTF-8 BOM. Can you change Hollywood IDE by default to use UTF-8 only, or would that affect Hollywood scripts? Point being, that it is bit confusing that you c...