Search found 5446 matches

by airsoftsoftwair
Wed Feb 19, 2014 6:33 pm
Forum: Hollywood bugs
Topic: OpenDirectory() & NextDirectoryEntry() problem
Replies: 2
Views: 3821

Re: OpenDirectory() & NextDirectoryEntry() problem

Right, that's clearly a bug. Thanks for the report, it's fixed now!
by airsoftsoftwair
Mon Feb 17, 2014 12:20 am
Forum: Announcements
Topic: Hollywood 5.3 released & soon available again for purchase
Replies: 43
Views: 90121

Re: Hollywood 5.3 released & soon available again for purcha

Well, iOS is not supported at all anyway :) Hollywood 5.3 introduced support for multi touch on Android but there's no inbuilt support for gestures yet. You'll have to detect gestures on your own. For simple swipes this should be pretty straight forward, though.
by airsoftsoftwair
Mon Feb 17, 2014 12:19 am
Forum: Newbie questions
Topic: about #include or parallel scripts
Replies: 2
Views: 4269

Re: about #include or parallel scripts

Yes, all scripts you @INCLUDE will be compiled into your applet or executable.
by airsoftsoftwair
Fri Feb 14, 2014 11:20 pm
Forum: Newbie questions
Topic: How to generate 5 random numbers without repeating?
Replies: 14
Views: 17229

Re: How to generate 5 random numbers without repeating?

My first answer was nonsense of course, I should've read the question first :) Maybe I'll add such functionality but it shouldn't be so hard to implement it on your own.
by airsoftsoftwair
Fri Feb 14, 2014 11:17 pm
Forum: MUI Royale
Topic: Listview visible entries
Replies: 13
Views: 14162

Re: Listview visible entries

These rectangle objects look wrong... they shouldn't be necessary but it's still strange that you get these empty spaces. Can you post the full XML?
by airsoftsoftwair
Fri Feb 14, 2014 11:11 pm
Forum: Designer bugs
Topic: Screensaver Engine
Replies: 5
Views: 12460

Re: Screensaver Engine

That's not really a bug but more like a wishlist request. But you're right, it makes sense to disable the screenblanker during presentations. I'll see if I can add this for future versions.
by airsoftsoftwair
Thu Feb 06, 2014 10:28 pm
Forum: Newbie questions
Topic: Hollywood Windows version portable?
Replies: 6
Views: 7518

Re: Hollywood Windows version portable?

Of course you'll also have to copy the files Hollywood.exe and Hollywood.key to the portable device and also set paths accordingly in the settings.
by airsoftsoftwair
Thu Feb 06, 2014 10:27 pm
Forum: Windows IDE
Topic: IDE confused by the existence of non_ASCII
Replies: 5
Views: 10247

Re: IDE confused by the existence of non_ASCII

It's not a problem with European charsets because their characters all fit into 8 bits. That's why Hollywood will work fine with them although the language itself is fixed to the ISO-8859-1 (Latin 1) charset but that already covers the most important European languages (French, Spanish, Italian, Por...
by airsoftsoftwair
Wed Feb 05, 2014 10:28 pm
Forum: General questions
Topic: Typing a %
Replies: 3
Views: 8259

Re: Typing a %

Then try it again because it is %% :)
by airsoftsoftwair
Wed Feb 05, 2014 4:27 pm
Forum: Newbie questions
Topic: How to generate 5 random numbers without repeating?
Replies: 14
Views: 17229

Re: How to generate 5 random numbers without repeating?

Code: Select all

For Local k = 0 To 4 Do DebugPrint(Rnd(range))