Search found 606 matches

by jPV
Wed Feb 21, 2024 9:21 am
Forum: Newbie questions
Topic: Is there way to check mouse movement on edge of screen?
Replies: 5
Views: 596

Re: Is there way to check mouse movement on edge of screen?

Thanks to your suggestion, I figured out another way to get around the problem. Not perfect, but as long as refresh rate is very high, it works, although not perfectly It gets ultra heavy to call the functions that frequently, and especially to refresh the display 1000 frames per second. There's no...
by jPV
Tue Feb 06, 2024 10:06 pm
Forum: General programming
Topic: Couple of Hollywood Innerworkings questions
Replies: 5
Views: 471

Re: Couple of Hollywood Innerworkings questions

I'm not quite getting what you're after there... what it would do if you'd get the result (3) into the wild there?
by jPV
Tue Feb 06, 2024 9:59 pm
Forum: General questions
Topic: AVCodec and Emulation...
Replies: 14
Views: 3360

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: 1170

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: 471

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: 3360

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: 2320

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: 928

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: 9226

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: 2203

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...