Search found 5433 matches

by airsoftsoftwair
Tue Aug 07, 2018 11:05 pm
Forum: SDK
Topic: Keyfile generator for plugin?
Replies: 1
Views: 6033

Re: Keyfile generator for plugin?

Sure, that's possible but I'm not interested in creating such a generator because it's only of use for very few people...
by airsoftsoftwair
Tue Aug 07, 2018 11:00 pm
Forum: MUI Royale
Topic: Popobject class missing
Replies: 16
Views: 12686

Re: Popobject class missing

r-tea wrote: Tue Aug 07, 2018 8:41 pm A brand new question was just born. As Poplist creates a String gadget by itself, then how to pass typical String attributes (accept, maxlen, etc.) to it?
Currently not possible but could be added easily if you need them.
by airsoftsoftwair
Mon Aug 06, 2018 10:54 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69242

Re: Documentatation problems

Yes, Hollywood class doesn't really respect FixWidth and FixHeight. It's a known issue but not too high on the priority list because normally you just want to have the display determine the dimensions of the class object anyway.
by airsoftsoftwair
Mon Aug 06, 2018 10:52 pm
Forum: General programming
Topic: is file text.txt a text file?
Replies: 1
Views: 2353

Re: is file text.txt a text file?

Checking for a unprintable characters is a typical way of determining whether a file contains binary or text data. IsPrint() could come in handy here.
by airsoftsoftwair
Mon Aug 06, 2018 10:50 pm
Forum: MUI Royale
Topic: Popobject class missing
Replies: 16
Views: 12686

Re: Popobject class missing

Well, most attributes of that class cannot really be easily represented in XML or script. That's why MUI Royale supports only the higher level pop classes. What do you want to do with Popobject?
by airsoftsoftwair
Tue Jul 31, 2018 10:59 pm
Forum: Wishlist
Topic: More fontattributes to get
Replies: 2
Views: 2925

Re: More fontattributes to get

Should be possible. Request noted.
by airsoftsoftwair
Tue Jul 31, 2018 10:58 pm
Forum: Wishlist
Topic: FLITE plugin
Replies: 1
Views: 2361

Re: FLITE plugin

Not very likely because that's of too little use for the typical programmer :)
by airsoftsoftwair
Tue Jul 31, 2018 10:58 pm
Forum: Hollywood bugs
Topic: Documentation problems
Replies: 44
Views: 69242

Re: Documentatation problems

Well, in RapaGUI they are booleans but in MUI Royale they are numbers because that is what they are in MUI so I don't see any documentation mistake here. It's just a different implementation between MUI Royale and RapaGUI :)
by airsoftsoftwair
Tue Jul 24, 2018 8:22 pm
Forum: Newbie questions
Topic: App Examples making use of internet site's API
Replies: 11
Views: 12136

Re: App Examples making use of internet site's API

This is now being worked on by yours truly :)
by airsoftsoftwair
Tue Jul 24, 2018 12:57 pm
Forum: General programming
Topic: decompress (zlib) bytes
Replies: 4
Views: 3637

Re: decompress (zlib) bytes

Keep in mind that both CompressFile() and DecompressFile() use a custom format so for raw zlib compressed bytes you'd have to imitate this custom format. I think there is a "HWPK" identifier, then 4 reserved bytes, and then the raw zlib compressed bytes. So by composing your virtual file l...