Search found 604 matches

by jPV
Sun Aug 04, 2019 10:05 am
Forum: Newbie questions
Topic: Change menutext
Replies: 2
Views: 2906

Re: Change menutext

I didn't find any other solution... so I made, for example, the recent files list in RNOPDF menus by remoing & freeing the old menu, and creating a new menu.
by jPV
Fri Aug 02, 2019 3:31 pm
Forum: General programming
Topic: Get success/error on file save
Replies: 6
Views: 4318

Re: Get success/error on file save

I guess Hollywood gives an error if a write doesn't succeed, and exits (quits) the program unless you handle it otherwise. So, if you want to check it, at least one way to do it is to disable internal error handler and check yourself. Something like this: s$="blabla" f$="ram:bla.txt&q...
by jPV
Fri Aug 02, 2019 7:30 am
Forum: Showcase
Topic: RNOTags
Replies: 1
Views: 4933

RNOTags

RNOTags is an advanced GUI based ID3 tag editor for MP3 files. Features: - Reads v1.0, v1.1, Enhanced (v1+), v2.2.0, v2.3.0, and v2.4.0 tags - Can write v1.1, v2.3.0, and v2.4.0 tags, and convert between them - Can remove all kinds of tags - Recognises all 100+ ID3v2 frames - Can edit and create 60...
by jPV
Thu Aug 01, 2019 7:56 am
Forum: Newbie questions
Topic: event and program flow
Replies: 2
Views: 2427

Re: event and program flow

I was reading the example code in this post, https://forums.hollywood-mal.com/viewtopic.php?f=4&t=2099#p11046 It doesn't seem to be that good example, please don't do it like this in your code ;) This would be better to do with real events rather than a busy loop. Or if you do it with a busy lo...
by jPV
Sat Jul 27, 2019 12:30 pm
Forum: General programming
Topic: Any way to get MorphOS to 1920x1080 HD resolution?
Replies: 3
Views: 2673

Re: Any way to get MorphOS to 1920x1080 HD resolution?

Of course it would be better if the game (or other program) wouldn't be hard coded to certain resolution. Laptop users can't upgrade their displays, "retro users" may want to use 4:3 displays etc :) For example, I'm scaling and positioning graphics elements in my RNOInfoScreen according th...
by jPV
Sat Jul 27, 2019 11:54 am
Forum: General programming
Topic: Any way to get MorphOS to 1920x1080 HD resolution?
Replies: 3
Views: 2673

Re: Any way to get MorphOS to 1920x1080 HD resolution?

I guess it's mostly depending of the hardware if it's capable to display FullHD resolution, not MorphOS itself. I've been using 1920x1080 resolution on my daily MorphOS setup for years. It's a Mac mini with 64MB graphics memory and it's been working just fine on FullHD monitors and video projectors,...
by jPV
Fri Jul 26, 2019 5:39 pm
Forum: Showcase
Topic: RNOInfoScreen
Replies: 14
Views: 25357

Re: RNOInfoScreen

1.6 - Support for Digital Audio Player, borderless window option, settings weren't saved on certain OS3 versions.
1.7 - Embedded images in MP3 files now display with all ID3v2.x tags, added support for RNORadio
by jPV
Mon Jul 22, 2019 4:09 pm
Forum: Polybios
Topic: pdf.GetText() on an empty page
Replies: 1
Views: 5222

pdf.GetText() on an empty page

If I try to get text from a page which doesn't have any text, Hollywood exits with the error "Specified character is out of range!". Could this be changed so that GetText() would give an empty string in these cases? It's a bit annoying to start checking page length all the time before gett...
by jPV
Tue Jul 16, 2019 11:36 am
Forum: Polybios
Topic: pdf.GetLastError on MorphOS
Replies: 5
Views: 7613

Re: pdf.GetLastError on MorphOS

Tipsi wrote: Mon Jul 15, 2019 10:23 pm What if you write pdf.GetLastError() immediately after pdf.OpenDocument()?
Didn't make any difference.
by jPV
Mon Jul 15, 2019 8:28 am
Forum: Polybios
Topic: pdf.GetLastError on MorphOS
Replies: 5
Views: 7613

Re: pdf.GetLastError on MorphOS

airsoftsoftwair wrote: Sun Jul 14, 2019 6:01 pm You must only call pdf.GetLastError() if pdf.OpenDocument() actually failed
Why there is #PDFERR_SUCCESS (No error occurred.) then?