Search found 5570 matches

by airsoftsoftwair
Fri Sep 13, 2024 9:59 pm
Forum: Hollywood bugs
Topic: apng plugin problem
Replies: 17
Views: 3691

Re: apng plugin problem

I've examined this now and the APNG file you provided is definitely corrupted. The header says it has 75 frames but the frames just stop after frame 43. I've tried to play it using Firefox, Chrome & XnView and they all stop playing after frame 43. So no bug in the APNG plugin here but the anim i...
by airsoftsoftwair
Fri Sep 13, 2024 9:57 pm
Forum: General plugin questions
Topic: Saving PNG Project icons with Iconic
Replies: 2
Views: 1742

Re: Saving PNG Project icons with Iconic

Code: Select all

- Fix: Saving PNG icons of type #AMIGAICON_PROJECT only worked if you also specifed a default tool
by airsoftsoftwair
Thu Sep 12, 2024 6:43 pm
Forum: Hollywood bugs
Topic: ConsolePrompt() prompts in debug window not in console
Replies: 11
Views: 1219

Re: ConsolePrompt() prompts in debug window not in console

I believe consolepromt() AND consoleprint() text output should go to console (black console window) While debugprint() should go to ide's bottom listgadget You're right that it would make perfect sense if ConsolePrint() wrote its output to a real console window but I don't really want to change its...
by airsoftsoftwair
Wed Sep 11, 2024 8:35 pm
Forum: Hollywood bugs
Topic: ConsolePrompt() prompts in debug window not in console
Replies: 11
Views: 1219

Re: ConsolePrompt() promts in debug window not in console

plouf wrote: Tue Sep 10, 2024 7:56 pm why else ConsolePrint() not go to the console ?
Looks like you first need to enter something before the script will continue execution. ConsolePrompt() will block until there's some input...
by airsoftsoftwair
Tue Sep 10, 2024 7:46 pm
Forum: Announcements
Topic: RapaGUI 2.2 released
Replies: 7
Views: 976

Re: RapaGUI 2.2 released

Ok, this is indeed a little weird because it seems to happen only sporadically. I'm not able to reproduce it on OS3 and OS4 at all but on MorphOS it indeed does happen from time to time. Anyway, I've already identified and fixed the cause of the issue. Since this is a critical issue that could break...
by airsoftsoftwair
Tue Sep 10, 2024 7:40 pm
Forum: General programming
Topic: Get info code about connection to an URL
Replies: 11
Views: 1224

Re: Get info code about connection to an URL

papiosaur wrote: Sun Sep 01, 2024 7:48 pm @Andreas: maybe add this info in hURL documentation?
Ok, added.
by airsoftsoftwair
Tue Sep 10, 2024 7:39 pm
Forum: General programming
Topic: get currently in use catalog
Replies: 5
Views: 472

Re: get currently in use catalog

I agree that it could be useful to find out the language of the currently used catalog. I'll see what I can do.
by airsoftsoftwair
Tue Sep 10, 2024 7:37 pm
Forum: Newbie questions
Topic: Converting ANSI C to Hollywood?
Replies: 5
Views: 436

Re: Converting ANSI C to Hollywood?

The biggest problem is probably to deal with data types. Hollywood doesn't have data types whereas C has data types of different quantities (char, short, int...) and most of them are also available as signed and unsigned types. So when porting such code to Hollywood you have to take great care that ...
by airsoftsoftwair
Tue Sep 10, 2024 7:34 pm
Forum: Hollywood bugs
Topic: Problem with PlayMusic
Replies: 8
Views: 5035

Re: Problem with PlayMusic

Hopefully soon :)
by airsoftsoftwair
Tue Sep 10, 2024 7:34 pm
Forum: Hollywood bugs
Topic: ConsolePrompt() prompts in debug window not in console
Replies: 11
Views: 1219

Re: ConsolePrompt() promts in debug window not in console

in "fix" says "when using DebugPrompt()" but we are speaking for Consolepromt() ? is the same thing ? just typo? Actually, DebugPrompt() does the same as ConsolePrompt(), it just won't do anything if debugging is disabled. also, dont know if its related and so fixed, but same pr...