Search found 969 matches

by Juan Carlos
Mon Apr 20, 2026 1:01 pm
Forum: Hollywood bugs
Topic: DisplayTextObjectFX
Replies: 10
Views: 1959

Re: DisplayTextObjectFX

Thank you Flinx for your suggestion, I've known for years, based on experience, that certain instructions work differently on each system. My usual practice is to replace them with a more effective and functional solution. But it's difficult. Sometimes I can figure out why instruction X works fine o...
by Juan Carlos
Mon Apr 20, 2026 11:01 am
Forum: Hollywood bugs
Topic: DisplayTextObjectFX
Replies: 10
Views: 1959

Re: DisplayTextObjectFX

It is a little complicated make a little example for you, but I'll try it.
by Juan Carlos
Mon Apr 20, 2026 11:01 am
Forum: Polybios
Topic: #PDFERR_FORMAT constant not found
Replies: 4
Views: 2152

Re: #PDFERR_FORMAT constant not found

No, your simple code doesn't work, again shows the window mistake wit the same message:
Constant #PDFERR_FORMAT constant not found!
File: Test.hws (current line 2)
by Juan Carlos
Sun Apr 19, 2026 11:09 am
Forum: Showcase
Topic: HollyTris - modern Tetris clone
Replies: 7
Views: 429

Re: HollyTris - modern Tetris clone

I can make the test on MorphOS real, if you are interested.
by Juan Carlos
Sat Apr 18, 2026 10:25 am
Forum: Showcase
Topic: HollyTris - modern Tetris clone
Replies: 7
Views: 429

Re: HollyTris - modern Tetris clone

A little suggestion, the music files are wav format, perhaps you must think in make versions for other systems as MorphOS, AmigaOS4, AROS,and in these systems the wav format change to ogg via plugin, and make the executables more littlest.
by Juan Carlos
Fri Apr 17, 2026 3:34 pm
Forum: Hollywood bugs
Topic: DisplayTextObjectFX
Replies: 10
Views: 1959

Re: DisplayTextObjectFX

Yes, and on Linux Mint it works.
by Juan Carlos
Thu Apr 16, 2026 9:47 pm
Forum: Hollywood bugs
Topic: DisplayTextObjectFX
Replies: 10
Views: 1959

Re: DisplayTextObjectFX

The code uses the BGPic 1, as little Windows to launch the main program, but this trick works in other systems less on Linux.
Also there are the textobjefts, but the basic visual effect is open a little Windows using the BGPic closes this Windows and open the main program window.
by Juan Carlos
Thu Apr 16, 2026 11:49 am
Forum: Hollywood bugs
Topic: DisplayTextObjectFX
Replies: 10
Views: 1959

Re: DisplayTextObjectFX

The example is very easy with the program star in a little background picture and showing the DisplayTextObjectFX, this problem only happen on Linux, on Windows, MorphOS and AmigaOS 3.9, not. Function p_Intro() PlaySample(1, 1) EnableLayers() DisplayBrush(1, 0, 0) ;Cover. DisplayTextObjectFX(1, 20, ...
by Juan Carlos
Thu Apr 16, 2026 11:45 am
Forum: Polybios
Topic: #PDFERR_FORMAT constant not found
Replies: 4
Views: 2152

Re: #PDFERR_FORMAT constant not found

No, I are using the normal PDF plugin, in fact the program under Windows and MorphOS runs fine, only on Linux Mint gives me this problem when I compile the program GrimoriumPDF.
by Juan Carlos
Sat Apr 04, 2026 1:07 pm
Forum: Code snippets area
Topic: Progress bar without pixel jumps
Replies: 3
Views: 2318

Re: Progress bar without pixel jumps

there are other variables to evaluate, for example, it's to copy a file, the file size, copy ratios Take a look at my for loop — there’s a reason it goes from (almost) zero to one. So all you need is a division, for example, the current copy progress divided by the file size. Thank you, interesting...