Search found 5443 matches

by airsoftsoftwair
Thu Aug 20, 2015 4:46 pm
Forum: MUI Royale
Topic: PopList Userdata
Replies: 1
Views: 3419

Re: PopList Userdata

Poplist derives from Listview class which doesn't support userdata for the individual items either. The only class which actually supports this is Listtree class. All other List classes don't support this because the individual items aren't addressed through an id but through a numeric index (0, 1, ...
by airsoftsoftwair
Thu Aug 20, 2015 4:44 pm
Forum: MUI Royale
Topic: PopList insert Brush
Replies: 2
Views: 4587

Re: PopList insert Brush

Right, will be fixed.
by airsoftsoftwair
Thu Aug 20, 2015 4:43 pm
Forum: General programming
Topic: Adding Locale support
Replies: 1
Views: 2860

Re: Adding Locale support

On OS4, English names are used for the catalog drawers but on OS3 and MorphOS (not sure about AROS), locale.library expects translated drawer names, i.e. on OS4 you would have to use "german" and "french" whereas on OS3 and MorphOS the equivalent would be "deutsch" and ...
by airsoftsoftwair
Thu Aug 20, 2015 4:39 pm
Forum: MUI Royale
Topic: .AddPage method
Replies: 6
Views: 7775

Re: .AddPage method

In similar vein to Group.Insert please can you make it optionally possible to Add a Page before a given obj, defaulting to end of Register if not specified. Makes sense... I'll consider adding this. Another thing, an error in the Documentation... Register.ClosePage() This method will close the page...
by airsoftsoftwair
Tue Aug 18, 2015 7:03 pm
Forum: General programming
Topic: OWB (MorphOS) runs Hollywood's applet online
Replies: 7
Views: 9039

Re: OWB (MorphOS) runs Hollywood's applet online

You have to use -QUIET (with a minus prefix).
by airsoftsoftwair
Sun Aug 16, 2015 1:54 pm
Forum: General programming
Topic: OWB (MorphOS) runs Hollywood's applet online
Replies: 7
Views: 9039

Re: OWB (MorphOS) runs Hollywood's applet online

Nice. Btw, you can add the QUIET argument to suppress Hollywood Player's startup screen.
by airsoftsoftwair
Sat Aug 08, 2015 10:00 pm
Forum: Newbie questions
Topic: Is MP3 ssupport in Hollywood itself?
Replies: 4
Views: 4992

Re: Is MP3 ssupport in Hollywood itself?

DirectShow and AudioFile should be available on every Windows and Mac OS X installation, respectively. If MP3 playback doesn't work on a certain Mac OS installation, I'd need more information on the exact OS X version as well as the MP3 that refuses to play. mp3.datatype is also available on every M...
by airsoftsoftwair
Tue Aug 04, 2015 3:20 pm
Forum: Newbie questions
Topic: How do i know how much memory my program is using?
Replies: 13
Views: 12272

Re: How do i know how much memory my program is using?

Well, you know that MP3s are compressed. In memory uncompressed PCM data is VERY large. 3 minutes of 44.1khz 16bit stereo audio will eat up 44100*4*180 bytes, i.e. almost 30 megabyte. Better keep that in mind...
by airsoftsoftwair
Tue Aug 04, 2015 3:18 pm
Forum: Newbie questions
Topic: Is MP3 ssupport in Hollywood itself?
Replies: 4
Views: 4992

Re: Is MP3 ssupport in Hollywood itself?

On Windows MP3 playback is supported through DirectShow, on Mac OS through the AudioFile API, on MorphOS through mp3.datatype. All other platforms need the AVCodec plugin.