Search found 5443 matches

by airsoftsoftwair
Sun Jan 28, 2024 12:51 pm
Forum: RapaGUI
Topic: Window manipulations
Replies: 3
Views: 1260

Re: Window manipulations

Ok, I'll see what I can do.
by airsoftsoftwair
Sun Jan 28, 2024 12:51 pm
Forum: Hollywood bugs
Topic: Plananarama 2.2 - Sprites are not Displayed until Screendrag or Screen-Switch
Replies: 5
Views: 1285

Re: Plananarama 2.2 - Sprites are not Displayed until Screendrag or Screen-Switch

Maybe it's related to 3.2 since I cannot reproduce this on any system. Can you test it on OS3.1 or OS3.9? I don't have a 3.2 system here.
by airsoftsoftwair
Sun Jan 28, 2024 12:47 pm
Forum: RapaGUI
Topic: Use Pageview class with Treeview class ?
Replies: 8
Views: 973

Re: Use Pageview class with Treeview class ?

Sure it is. Just set Pageview.Active to the desired page whenever the user clicks a treeview item.
by airsoftsoftwair
Sun Jan 28, 2024 12:45 pm
Forum: RapaGUI
Topic: Treeview and XML
Replies: 18
Views: 2019

Re: Treeview and XML

I'm afraid editing treeview items is currently broken in RapaGUI's MUI backend so it won't work on MorphOS or AmigaOS. But it's really a mystery because everything is implemented but it doesn't work. I don't know why I didn't notice this when I wrote the code. I surely must have tested it?! Anyway, ...
by airsoftsoftwair
Sun Jan 28, 2024 12:43 pm
Forum: Hollywood bugs
Topic: Possible problem with RapaGUI on Linux Manjaro
Replies: 2
Views: 781

Re: Possible problem with RapaGUI on Linux Manjaro

Replied in thread. It's a feature, not a bug :)
by airsoftsoftwair
Sun Jan 28, 2024 12:42 pm
Forum: RapaGUI
Topic: Updating listviews...
Replies: 25
Views: 2534

Re: Updating listviews...

I'm afraid that this is a "feature". GUI applications are expected not to block the main (UI) thread so your application must always make sure to return control to the main loop to give your app a chance to handle refresh and get user input. Instead of timers you could use functions like R...
by airsoftsoftwair
Sun Jan 28, 2024 12:34 pm
Forum: Hollywood bugs
Topic: OpenSerial Fail in android hollywood 10
Replies: 1
Views: 764

Re: OpenSerial Fail in android hollywood 10

Ok, this is probably because of some elevated security restrictions in Android because there weren't any changes in the Android serial code from Hollywood 9 to 10 so it must be some security thing in Android blocking serial access. I'll check.
by airsoftsoftwair
Sun Jan 28, 2024 12:30 pm
Forum: General plugin questions
Topic: Saving PNG Project icons with Iconic
Replies: 1
Views: 802

Re: Saving PNG Project icons with Iconic

Right, this is clearly a bug. Will be fixed.
by airsoftsoftwair
Sun Jan 28, 2024 12:29 pm
Forum: Hollywood bugs
Topic: Hollywood-Window freezing after SendRexxCommand
Replies: 1
Views: 772

Re: Hollywood-Window freezing after SendRexxCommand

I'm afraid I can't reproduce this one either. Neither with the ARexx demo nor with your MCVE. But I see that you're using 3.2. I don't have a 3.2 test system so maybe it's a bug in 3.2. On OS3.9 everything is working fine here. And many people use this Rexx stuff so I'd be highly surprised if this w...
by airsoftsoftwair
Sun Jan 28, 2024 12:26 pm
Forum: General programming
Topic: ARexx port: How to return a list of values
Replies: 4
Views: 1463

Re: ARexx port: How to return a list of values

Yes, exacly. I'm trying to return not only one but a list of values back to the ARexx script that has called a function which I handle in the "OnArexx" event. I don't think that this is technically possible. The interface in rexxsyslib.library expects all return values to be strings so Ho...