Search found 5433 matches

by airsoftsoftwair
Tue Apr 10, 2018 9:29 pm
Forum: Wishlist
Topic: Physics engine
Replies: 4
Views: 4572

Re: Physics engine

Oh, sorry, C++ is not very convenient to pack into Hollywood plugins. It's no problem at all on all other systems but on AmigaOS it requires some effort.
by airsoftsoftwair
Tue Apr 10, 2018 9:28 pm
Forum: Announcements
Topic: Hollywood APK Compiler 1.2 released
Replies: 4
Views: 9349

Re: Hollywood APK Compiler 1.2 released

1) is there a limit to the number of assets I can link to an APK file? (TSMC uses a lot of them ....). No. 2) will the assets be wrapped around the apk file so the user will have a single file to download and install? Yes, they will be packed into your APK. OFF TOPIC: is it possible to load an Holl...
by airsoftsoftwair
Tue Apr 10, 2018 9:26 pm
Forum: General questions
Topic: Show column separators
Replies: 3
Views: 7086

Re: Show column separators

Sorry, Designer 4.0 doesn't have those separators but the next version will have them.
by airsoftsoftwair
Tue Apr 10, 2018 9:14 pm
Forum: Hollywood bugs
Topic: applet not working correctly
Replies: 9
Views: 7758

Re: applet not working correctly

Code: Select all

- Fix [Android/64-bit]: Polygons were always drawn in outline mode even when the filling mode was set to #FILLCOLOR
by airsoftsoftwair
Wed Apr 04, 2018 9:22 pm
Forum: General programming
Topic: Tables with named indices
Replies: 2
Views: 3582

Re: Tables with named indices

Sorry, that's not possible. When initializing a table using the {} constructor you mustn't make any assumptions about the order of initialization anyway, e.g.

Code: Select all

t = {x = func(0), y = func(1)}
You cannot rely on func(0) being called before func(1).
by airsoftsoftwair
Tue Apr 03, 2018 11:56 am
Forum: Newbie questions
Topic: RemoveItem with Brush
Replies: 7
Views: 6080

Re: RemoveItem with Brush

Yes, of course you need FreeBrush(). RemoveItem() just removes a table item, it doesn't care about what that table item actually is.
by airsoftsoftwair
Tue Apr 03, 2018 11:55 am
Forum: MUI Royale
Topic: Register.Position
Replies: 3
Views: 4548

Re: Register.Position

Ok, I see. This is something about MUI itself then. Please report to Thore.
by airsoftsoftwair
Mon Apr 02, 2018 9:52 pm
Forum: Wishlist
Topic: Android wish list
Replies: 19
Views: 14607

Re: Android wish list

No idea, it all depends on how complicated this is to do on the Java side. Keep in mind that Hollywood's Android backend is really quirky because it has to jump back and forth between Java and C code all the time. But Hollywood 7.2 will definitely bring on some improvements for Android. I'll also tr...
by airsoftsoftwair
Mon Apr 02, 2018 9:48 pm
Forum: MUI Royale
Topic: Listview.GetEntry
Replies: 5
Views: 6562

Re: Listview.GetEntry

Right, that is a good idea. I'll add a Pack() function which does the same as Unpack() but in reverse.