Search found 603 matches

by jPV
Sat Mar 02, 2024 1:24 pm
Forum: Amiga IDE questions
Topic: Lost debug output on Os4 Codebench
Replies: 1
Views: 504

Re: Lost debug output on Os4 Codebench

There was a change in Hollywood 8.0 that debug output is disabled on compiled executables, unless you set EnableDebug to True. Does Codebench compile executables instead of running scripts with Hollywood interpreter, or something like that?
by jPV
Tue Feb 27, 2024 8:20 am
Forum: RapaGUI
Topic: Listview CheckBox column & AROS
Replies: 5
Views: 385

Re: Listview CheckBox column & AROS

In any case, if someone wants issues to be fixed on Zune, it most likely doesn't need anything from Hollywood's side. In my experience the bugs can be fixed in Zune and that's it, it starts to work with Hollywood programs when you update AROS (components). If someone has time, motivation, and patien...
by jPV
Fri Feb 23, 2024 8:43 am
Forum: RapaGUI
Topic: Listview CheckBox column & AROS
Replies: 5
Views: 385

Re: Listview CheckBox column & AROS

There are "millions" of things that don't work with Zune, it's quite buggy with MUI compatibility and doesn't support newer MUI features, so I would say it's a Zune issue if it works on all other platforms. I've come across with numerous incompatibilities with Zune when writing my programs...
by jPV
Fri Feb 23, 2024 8:11 am
Forum: RapaGUI
Topic: Change colors in a button
Replies: 7
Views: 325

Re: Change colors in a button

Or maybe create a group just for a button and set the background color for the group... to get red borders around the button. Like this: @REQUIRE "rapagui" gui$ = [[ <?xml version="1.0" encoding="iso-8859-1"?> <application id="app"> <window title="Test&qu...
by jPV
Thu Feb 22, 2024 8:06 pm
Forum: RapaGUI
Topic: Change colors in a button
Replies: 7
Views: 325

Re: Change colors in a button

Bugala's answer doesn't work with RapaGUI.

I'm not sure if you can tune looks of buttons with RapaGUI.. maybe with some trickery in certain amount, but basically MUI is designed so that users can config their button looks and programmers shouldn't hardcode anything.
by jPV
Wed Feb 21, 2024 10:29 am
Forum: Hollywood bugs
Topic: Hurl2.0 - Error initializing cURL!
Replies: 12
Views: 1845

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 some...
by jPV
Wed Feb 21, 2024 10:25 am
Forum: Newbie questions
Topic: Is there way to check mouse movement on edge of screen?
Replies: 5
Views: 411

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

Thanks for that OnMouseMove Event, I didn't even realize there is one like that, will use it. Yeah, there are maaany nice events to avoid constant polling of things :) And BTW. OnMouseMove event provides X and Y positions of the mouse pointer in the function call, so you can make it even more effic...
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: 411

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

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

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