Search found 6 matches
- Sun Jun 07, 2026 7:06 pm
- Forum: RapaGUI
- Topic: Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
- Replies: 3
- Views: 1851
Re: Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
Thanks for your reply. To be honest, I'm no longer certain that the issue was caused solely by the order of InstallEventHandler() and moai.CreateApp(). The problem appeared during a period when I was making larger changes to the application, including adding multilingual support and moving some init...
- Mon Jun 01, 2026 10:55 pm
- Forum: RapaGUI
- Topic: Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
- Replies: 3
- Views: 1851
Re: Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
SOLVED After bisecting the git history, the root cause was identified: `InstallEventHandler` must be called before `moai.CreateApp()` on AmigaOS. On Windows and macOS the order doesn't matter, but on AmigaOS MUI fires events immediately during GUI creation — if the handler isn't registered yet, Wai...
- Sun May 31, 2026 9:54 pm
- Forum: RapaGUI
- Topic: Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
- Replies: 3
- Views: 1851
Wrong usage/parameters at WaitEvent on AmigaOS - window opens correctly, crash before user interaction
Hi, I'm developing a RapaGUI 2.2 application (Fotografista, a photo editor) compiled with Hollywood 11, targeting Windows, macOS ARM, and AmigaOS. I'm experiencing a crash on AmigaOS that I cannot reproduce on Windows or macOS. Error message: "Wrong usage/parameters for this command! Read the d...
- Tue May 26, 2026 3:41 pm
- Forum: RapaGUI
- Topic: MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
- Replies: 4
- Views: 7023
Re: MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
Yes, the famous "works for me"
But that was it. You were right about checking the user profile. I had Hollywood 9 installed previously, so the old plugins were still there. I overwrote them and went back to the previous code. It works fine. Thank you for the help.
- Tue May 26, 2026 1:27 pm
- Forum: RapaGUI
- Topic: MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
- Replies: 4
- Views: 7023
Re: MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
Thank you for your help and the test EXE. The moai.Notify calls still crash in my compiled EXE with "Unknown notification". Your test EXE works fine. The only difference I can see is that in your example moai.Notify is called in the main script scope, not inside a function. Could that make...
- Tue May 26, 2026 12:57 am
- Forum: RapaGUI
- Topic: MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
- Replies: 4
- Views: 7023
MouseLeft/MouseMove/MouseRight notifications not working in compiled EXE on Windows
Hi, I'm developing a graphics application using Hollywood and RapaGUI on Windows 11. I have a Scrollcanvas widget and I need to handle mouse events for a selection/rubber-band feature. In the Hollywood IDE (F5), everything works fine. In the compiled EXE, I get the following error at startup: `Unkno...