Search found 33 matches

by amiga23
Sun Feb 18, 2024 8:11 pm
Forum: General programming
Topic: Output of Program executed with Run() is not handled ion AmigaOS 3
Replies: 1
Views: 132

Output of Program executed with Run() is not handled ion AmigaOS 3

Output of a program executed on AmigaOS3 with Run() does not call the RunOutput event handler. Function p_printoutput(msg) ConsolePrint("\n---printoutput---") ConsolePrint(msg.Output) EndFunction Function p_printreturncode(msg) ;ForEach(msg, DebugPrint) ConsolePrint("\n---printreturnc...
by amiga23
Tue Apr 04, 2023 10:13 pm
Forum: Hollywood bugs
Topic: HaveItem does not work if uppercase letters are used
Replies: 2
Views: 1320

Re: HaveItem does not work if uppercase letters are used

Hmm okay, Rawget() is the function to use. But that is confusing, what is this automatic lower case good for?
by amiga23
Tue Apr 04, 2023 10:03 pm
Forum: Hollywood bugs
Topic: HaveItem does not work if uppercase letters are used
Replies: 2
Views: 1320

HaveItem does not work if uppercase letters are used

If I put a key with uppercase letters into a table, HaveItem does not find it. I found some similar issues in the forum, but these claim that table keys are case sensitive, so I consider this a bug in HaveItem(). I guess there is a LowerStr() in HaveItem, which should not be there. table = {} table[...
by amiga23
Mon Mar 27, 2023 5:24 pm
Forum: General programming
Topic: Hide CMD windows when running some program via Run() on windows
Replies: 8
Views: 2700

Re: Hide CMD windows when running some program via Run() on windows

For RunOutput I do already use an EventHandler and it gets the output correctly, but still the window opens.
by amiga23
Mon Mar 27, 2023 5:20 pm
Forum: Wishlist
Topic: Homepage: Open links to documentation and forum in separate tabs
Replies: 7
Views: 2038

Re: Homepage: Open links to documentation and forum in separate tabs

Yes it works now as expected. Thank you very much
by amiga23
Mon Mar 20, 2023 9:47 pm
Forum: Hollywood bugs
Topic: StringRequest does not handle Unicode on windows
Replies: 1
Views: 776

StringRequest does not handle Unicode on windows

StringRequest does not display correctly on windows. It works fine on GNU/Linux.
If user enters Umlauts in StringRequest requester, these Umlauts are handled as unicode correctly. If I display the same string in a StgringRequest again, Umlauts will be broken.
by amiga23
Mon Mar 20, 2023 9:38 pm
Forum: Wishlist
Topic: Homepage: Open links to documentation and forum in separate tabs
Replies: 7
Views: 2038

Re: Homepage: Open links to documentation and forum in separate tabs

@plouf _blank is not used, _new is used which is wrong, please check the html code: <li>Hollywood 10.0 documentation (<a href="docs/html/hollywood" target="_new">html</a>&nbsp;|&nbsp;<a href="docs/pdf/hollywood.pdf" target="_new">pdf</a>)</li> <li>Holl...
by amiga23
Mon Mar 20, 2023 9:10 pm
Forum: Wishlist
Topic: Homepage: Open links to documentation and forum in separate tabs
Replies: 7
Views: 2038

Homepage: Open links to documentation and forum in separate tabs

Currently when clicking a link to documentation or the forum, it is opened in a new tab. When clicking another link, it will be opened in the same tab. For me this is very annoying. Use-case: When I do program in Hollywood, I need the documentation to Hollywood itself and additionally to each plugin...
by amiga23
Mon Mar 20, 2023 6:05 pm
Forum: General programming
Topic: Hide CMD windows when running some program via Run() on windows
Replies: 8
Views: 2700

Hide CMD windows when running some program via Run() on windows

When I use the run() method, on windows always a CMD window is opened, while the exe called by Run() is running. Same size and same position as opening cmd.exe.
Is there a way to suppress these windows or, minimize them, or at least have them in background?