Search found 604 matches

by jPV
Tue Feb 06, 2024 9:59 pm
Forum: General questions
Topic: AVCodec and Emulation...
Replies: 14
Views: 2230

Re: AVCodec and Emulation...

Here's some reasoning for it (both my and Andreas thoughts): https://forums.hollywood-mal.com/viewtopic.php?p=12377#p12377 You can always @REQUIRE plugins you know you need in your script, and then they'll be loaded from the global directory as before. Or do ?LoadPlugin("avcodec") if you w...
by jPV
Tue Feb 06, 2024 3:21 pm
Forum: RapaGUI
Topic: Use Pageview class with Treeview class ?
Replies: 8
Views: 985

Re: Use Pageview class with Treeview class ?

By testing more, if there is only 1 column, i have the graphic bug, if 2 columns are sets, the show is correct. I also had the graphical bug on the treeview titles with a single column example code. It shows underlaying windows/desktop where it should show the title.. and then it flickers with rand...
by jPV
Tue Feb 06, 2024 3:14 pm
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 376

Re: Couple of Hollywood Innerworkings questions

1. No problem there. The NotInUse is a local variable to the function. Even if you change its contents in the inner ForEach, it doesn't affect to the outer ForEach. Both functions have their own local NotInUse variables that aren't accessible anywhere else. 2. No problems there either (as long as yo...
by jPV
Tue Feb 06, 2024 2:50 pm
Forum: General questions
Topic: AVCodec and Emulation...
Replies: 14
Views: 2230

Re: AVCodec and Emulation...

Probably this change in Hollywood 9.0: - Change [Amiga]: Executables compiled by Hollywood will no longer load all plugins from LIBS:Hollywood by default; scripts which want to have that behaviour need to use the new GLOBALPLUGINS argument/tooltype or the new "GlobalPlugins" tag in @OPTION...
by jPV
Mon Feb 05, 2024 12:03 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2040

Re: Treeview and XML

This works here: @REQUIRE "RapaGUI" Function p_EventFunc(msg) If msg.attribute = "Active" Then DebugPrint(msg.triggervalue) EndFunction xml$ = [[ <?xml version="1.0" encoding="iso-8859-1"?> <application id="app"> <window id="win" title=&qu...
by jPV
Tue Jan 23, 2024 2:22 pm
Forum: General plugin questions
Topic: Saving PNG Project icons with Iconic
Replies: 1
Views: 808

Saving PNG Project icons with Iconic

PNG icons can't be saved as a Project icon unless you provide a DefaultTool. It's inconsistent with other icon formats, which do change the Type even without providing the DefaultTool option. Tested on MorphOS. @REQUIRE "iconic" CreateBrush(1, 64, 64, #BLUE) CreateIcon(1, {{Type=#BRUSH, Im...
by jPV
Sun Jan 21, 2024 6:01 pm
Forum: Showcase
Topic: RNOEffects
Replies: 9
Views: 8988

Re: RNOEffects 2.0 released

https://jpv.amigaaa.com/RNOEffects/RNOEffects_Video.png I just uploaded RNOEffects 2.0 on file repositories. Highlights of the update are the Pixel Editor tool and saving images in the palette mode, but here's the full change log too.  Version 2.0:  - Added the "Pixel editor" tool with co...
by jPV
Thu Jan 11, 2024 12:34 pm
Forum: Hollywood bugs
Topic: Hurl2.0 - Error initializing cURL!
Replies: 12
Views: 1900

Re: Hurl2.0 - Error initializing cURL!

Are you sure it's about being offline? Because I got a report with RNOXfer that it doesn't work at all with AmiTCP/IP 3.x even if it'd be online. AmiTCP/IP 4.x and other newer stacks do work, so some component probably requires new enough bsdsocket.library or so. Is it hURL itself or AmiSSL or somet...
by jPV
Mon Jan 08, 2024 4:42 pm
Forum: Hollywood bugs
Topic: LoadPalette crashes with JPEG2000 images
Replies: 1
Views: 1904

LoadPalette crashes with JPEG2000 images

Hollywood hits&crashes when I try to load a palette from a JPEG2000 image (both JP2 and J2K). Of course it should fail to load the palette anyway, but it shouldn't crash the program either, and it doesn't crash with any other formats I've tried. Tested on MorphOS. @REQUIRE "jpeg2000" f...
by jPV
Wed Jan 03, 2024 8:50 pm
Forum: RapaGUI
Topic: Problem to sort numbers
Replies: 11
Views: 5663

Re: Problem to sort numbers

I guess it uses some generic sorting algorithm (quicksort or so), which doesn't need to compare each item with all other items, but is narrowing it down with less tries. You can see what it's doing by adding "DebugPrint(e1, e2)" in the sorting function. With a quick look it seems to do som...