Search found 5443 matches

by airsoftsoftwair
Fri Aug 17, 2018 11:41 pm
Forum: General programming
Topic: How can I unit-test my code?
Replies: 7
Views: 5670

Re: How can I unit-test my code?

For unit tests, the new @IF preprocessor command can also come in handy.
by airsoftsoftwair
Fri Aug 17, 2018 11:40 pm
Forum: Hollywood bugs
Topic: OnWheelUp/OnWheelDown with Hollywood 7.1 on Windows 10 doesn´t work
Replies: 5
Views: 4532

Re: OnWheelUp/OnWheelDown with Hollywood 7.1 on Windows 10 doesn´t work

Works here. Have you tested the MousewheelDemo script that comes with Hollywood? Works fine here on Windows 10.
by airsoftsoftwair
Mon Aug 13, 2018 10:27 pm
Forum: MUI Royale
Topic: An array of ID's
Replies: 10
Views: 10755

Re: An array of ID's

Well, you can't use Hollywood variables directly in XML but of course you can use a template XML and replace certain tokens on-the-fly with things evaluated at script runtime. However, I haven't really understood what you want to do so you'd have to present a specific example in order for me to be a...
by airsoftsoftwair
Mon Aug 13, 2018 10:25 pm
Forum: Hollywood bugs
Topic: Problem with InKeyStr()
Replies: 8
Views: 6394

Re: Problem with InKeyStr()

Oops, will be fixed. Thanks for reporting!
by airsoftsoftwair
Fri Aug 10, 2018 3:10 pm
Forum: APK Compiler
Topic: Android apk and drawers
Replies: 15
Views: 17569

Re: Android apk and drawers

DownloadFile() cannot unpack archives, but you could use the ZIP plugin for that.
by airsoftsoftwair
Thu Aug 09, 2018 9:24 pm
Forum: APK Compiler
Topic: Android apk and drawers
Replies: 15
Views: 17569

Re: Android apk and drawers

Make your app download the missing files using DownloadFile() and store them in the external storage. You can get the external storage dir using GetSystemInfo(). The directory returned in "ExternalStorage" equals the dir returned by the getExternalFileDirs() Android API.
by airsoftsoftwair
Thu Aug 09, 2018 6:13 pm
Forum: MUI Royale
Topic: Popobject class missing
Replies: 16
Views: 12779

Re: Popobject class missing

Well, don't hold your breath :)
by airsoftsoftwair
Thu Aug 09, 2018 6:12 pm
Forum: MUI Royale
Topic: An array of ID's
Replies: 10
Views: 10755

Re: An array of ID's

In Hollywood strings can be used as table indices, e.g.

Code: Select all

a["test"] = 5
a.test = 5
Both lines do exactly the same thing but the first line allows you to use a string as the index. More infos here.
by airsoftsoftwair
Wed Aug 08, 2018 10:34 pm
Forum: Off topic
Topic: Post number 10,000
Replies: 0
Views: 8127

Post number 10,000

Sorry for being off-topic but this is post number 10,000 on these forums. Thanks to all who are contributing to the Hollywood forums! Now on to the next 10,000 posts :-)
by airsoftsoftwair
Wed Aug 08, 2018 10:30 pm
Forum: MUI Royale
Topic: Popobject class missing
Replies: 16
Views: 12779

Re: Popobject class missing

Yes, you're right. This should've been available from the very start. I'll add it.