Search found 5446 matches

by airsoftsoftwair
Sun Apr 21, 2024 11:54 am
Forum: Announcements
Topic: Hollywood Designer 7.0 released
Replies: 6
Views: 457

Re: Hollywood Designer 7.0 released

lazi wrote: Fri Apr 19, 2024 10:03 pm May I ask an instant download too after ordering the CD version?
Sure, just mention that you want a download version as well in the comments section on the order form and I'll handle it :)
Tuxedo wrote: Sun Apr 21, 2024 11:08 am Unfortunately I no more have a real Amiga machine...
Not an excuse, you can use it on WinUAE ;)
by airsoftsoftwair
Sun Apr 21, 2024 11:52 am
Forum: Hollywood bugs
Topic: Run and UNC paths on Windows
Replies: 1
Views: 211

Re: Run and UNC paths on Windows

Yes, this looks like a bug. Will be fixed.
by airsoftsoftwair
Sun Apr 21, 2024 11:52 am
Forum: Newbie questions
Topic: RebelSDL screen update "problems"?
Replies: 7
Views: 391

Re: RebelSDL screen update "problems"?

BTW...how I can set a desired fps limit without get stuttering? I use ReblSDL. I'd set "EnableVSync" to TRUE when requiring RebelSDL and then just draw in a loop without using SetInterval() or anything, but just like this: @REQUIRE "rebelsdl", {EnableVSync = True} Repeat p_DrawN...
by airsoftsoftwair
Sun Apr 14, 2024 11:14 am
Forum: RapaGUI
Topic: sortable depending on other attributes
Replies: 4
Views: 282

Re: sortable depending on other attributes

Ok, I'll take a look.
by airsoftsoftwair
Sun Apr 14, 2024 11:14 am
Forum: Newbie questions
Topic: RebelSDL screen update "problems"?
Replies: 7
Views: 391

Re: RebelSDL screen update "problems"?

2 - sorry...how I can check that? You need to keep in mind that you're really dealing with two different buffers, e.g. if you draw like this: BeginDoubleBuffer(True) SetFillStyle(#FILLCOLOR) Box(0, 0, 640, 480, #RED) Flip Box(0, 0, 640, 480, #BLUE) Flip ; all drawing done here will go to the buffer...
by airsoftsoftwair
Mon Apr 08, 2024 7:58 pm
Forum: Newbie questions
Topic: RebelSDL screen update "problems"?
Replies: 7
Views: 391

Re: RebelSDL screen update "problems"?

1 - I've a 165Hz monitor but changing the "SetInterval(Nil, p_Scroll, 1000/x)" x value above 60 dont seems to do any difference...setting lower values slow down object velocity, but increasing above 60 dont seems to do anything...also setting up the EnableVSync TAG To "False"......
by airsoftsoftwair
Mon Apr 08, 2024 7:50 pm
Forum: RapaGUI
Topic: sortable depending on other attributes
Replies: 4
Views: 282

Re: sortable depending on other attributes

Which platform is this? With RapaGUI it's really essential to always mention the platform that shows the behaviour because RapaGUI has lots of different backends.
by airsoftsoftwair
Mon Apr 08, 2024 7:48 pm
Forum: RapaGUI
Topic: How do I pre populate the Poppath Gadget
Replies: 1
Views: 133

Re: How do I pre populate the Poppath Gadget

The fact that relative paths will appear in the Poppath gadget in case you select a relative path in the file requester is just how MUI behaves here. Of course I could change that by making Poppath always use absolute paths but this would mean fiddling with MUI classes default behaviour and I'm not ...
by airsoftsoftwair
Mon Apr 08, 2024 7:44 pm
Forum: RapaGUI
Topic: Problem with HTMLview on Android
Replies: 7
Views: 2520

Re: Problem with HTMLview on Android

I'm afraid I don't see how this can be worked around. But in the next version it'll hopefully be fixed.
by airsoftsoftwair
Mon Apr 08, 2024 7:43 pm
Forum: RapaGUI
Topic: Input validation
Replies: 5
Views: 222

Re: Input validation

Isn't there a nicer way to hand over an object and get validation of missing required fields as a present, to avoid manually checking the attributes of an object to avoid empty/null values? Well, that's definitely something your script should handle. I don't think there's any GUI toolkit that provi...