Search found 5446 matches

by airsoftsoftwair
Wed Feb 26, 2014 4:48 pm
Forum: Hollywood bugs
Topic: AnimPlayer.hws example bug
Replies: 1
Views: 3299

Re: AnimPlayer.hws example bug

Right, thanks for the report :)
by airsoftsoftwair
Wed Feb 26, 2014 4:47 pm
Forum: General programming
Topic: Doublebuffer don´t work in Android
Replies: 2
Views: 4260

Re: Doublebuffer don´t work in Android

Does it work if you disable hardware scaling? (Enable "No hardware scale" in the options menu *before* starting your applet)
by airsoftsoftwair
Wed Feb 26, 2014 4:44 pm
Forum: Newbie questions
Topic: DownloadFile with https protocol
Replies: 6
Views: 8594

Re: DownloadFile with https protocol

HTTPS needs SSL support which Hollywood currently doesn't provide. You can use wget or some other external program as a workaround.
by airsoftsoftwair
Mon Feb 24, 2014 4:39 pm
Forum: Hollywood bugs
Topic: Possible bug in IsPicture()
Replies: 10
Views: 11830

Re: Possible bug in IsPicture()

Actually, I've just seen that the TIFF and JPEG2000 plugins also don't set the dimensions and alpha channel information for IsPicture() either... thus giving you some random values of whatever is on the stack at the moment. Just in case anybody is having problems, I hereby declare this issue as &quo...
by airsoftsoftwair
Sun Feb 23, 2014 6:40 pm
Forum: Newbie questions
Topic: How to read width and height parameters from an image?
Replies: 7
Views: 8826

Re: How to read width and height parameters from an image?

It's not a matter of syntax, your code was just plain wrong :)
by airsoftsoftwair
Sun Feb 23, 2014 6:28 pm
Forum: Hollywood bugs
Topic: Possible bug in IsPicture()
Replies: 10
Views: 11830

Re: Possible bug in IsPicture()

That's a bug in that EPEG plugin prototype I sent you some months ago... it doesn't support IsPicture() correctly :)
by airsoftsoftwair
Wed Feb 19, 2014 7:19 pm
Forum: MUI Royale
Topic: Listview visible entries
Replies: 13
Views: 14163

Re: Listview visible entries

Your <rectangle> objects seem to cause this trouble. Removing them makes the listviews fill up all the available space. Also, you set "pagemode=true" for the main <vgroup> of your window... you must not do this! AFAIR the window's elementary vgroup/hgroup must never be a pagemode group. Yo...
by airsoftsoftwair
Wed Feb 19, 2014 6:35 pm
Forum: Newbie questions
Topic: Android and Hollywood
Replies: 2
Views: 4468

Re: Android and Hollywood

Sure, it is. There aren't really any restrictions for Hollywood on Android. The only requirement is that the device runs at least Android 2.3.3 and that the CPU is an ARM one.
by airsoftsoftwair
Wed Feb 19, 2014 6:34 pm
Forum: Newbie questions
Topic: How to generate 5 random numbers without repeating?
Replies: 14
Views: 17233

Re: How to generate 5 random numbers without repeating?

@youyise: But it's not guaranteed to behave like this. It could also return 5,1,5,14,17 or even 5,5,5,5,5 because the numbers are, well, random :)