Search found 5894 matches

by airsoftsoftwair
Sat Feb 07, 2026 1:46 pm
Forum: Newbie questions
Topic: EventHandler on multiple windows
Replies: 1
Views: 134

Re: EventHandler on multiple windows

Yes, you must install event handlers for display individually. This is a deliberate design choice to avoid unnecessary CPU load, e.g. the "OnMouseMove" event handler will generate lots of traffic and often you don't need it for all of your windows which is why you must install event handle...
by airsoftsoftwair
Sat Feb 07, 2026 1:44 pm
Forum: Newbie questions
Topic: Miniwood and compress files problems
Replies: 14
Views: 906

Re: Miniwood and compress files problems

I'm afraid you need to try breaking your project down into a small MCVE that shows the problem so that I can check it here. Otherwise it's impossible to analyze the problem and potentially fix it...
by airsoftsoftwair
Sat Feb 07, 2026 1:43 pm
Forum: APK Compiler
Topic: GetMACAddress()
Replies: 1
Views: 134

Re: GetMACAddress()

Nowadays it's very difficult to obtain the MAC address because Android typically blocks this because of security considerations so I'm afraid there's not much you can do against it.
by airsoftsoftwair
Sat Feb 07, 2026 1:42 pm
Forum: General programming
Topic: FileRequest() Not Working on Android
Replies: 7
Views: 517

Re: FileRequest() Not Working on Android

It's good that PathRequest() solved the issue but the behaviour still doesn't make sense to me because it should also work without having to call PathRequest() first. FileRequest() should automatically request the permissions once you select a file so it's strange that this doesn't work without Path...
by airsoftsoftwair
Sat Feb 07, 2026 1:40 pm
Forum: Off topic
Topic: What makes AI model better with Hollywood?
Replies: 2
Views: 159

Re: What makes AI model better with Hollywood?

Well, that shows that those AIs are still not that good. I mean it could take its information from the 1000+ pages of the Hollywood manual but apparently it's not able to understand that so well because it always comes up with non-existing functions. If it were really "intelligent", it sho...
by airsoftsoftwair
Sat Feb 07, 2026 1:38 pm
Forum: Windows IDE
Topic: Windows IDE Auto-closes when Launched (Hollywood 11)
Replies: 9
Views: 699

Re: Windows IDE Auto-closes when Launched (Hollywood 11)

Thanks, but beta versions of course might use all kinds of temporary things that got removed or changed later so this needn't be investigated further. The only important thing is that release versions of plugins don't crash ;)
by airsoftsoftwair
Sat Feb 07, 2026 1:36 pm
Forum: Hollywood bugs
Topic: Linux Ubuntu/Lite OS: Hide Display problem
Replies: 4
Views: 395

Re: Linux Ubuntu/Lite OS: Hide Display problem

Thanks for the MCVE but I'm afraid I can't reproduce the problem. I've tested your MCVE on Ubuntu 20.04 LTS on x86_64. I start your script, press the SPACE key, the display is hidden. Then I click the app's icon in the Ubuntu dock to show the window again. The window opens up and still shows the tex...
by airsoftsoftwair
Wed Feb 04, 2026 5:14 pm
Forum: General programming
Topic: FileRequest() Not Working on Android
Replies: 7
Views: 517

Re: FileRequest() Not Working on Android

Hmm... does PathRequest() show the same behaviour or does that work?
by airsoftsoftwair
Sun Feb 01, 2026 12:33 pm
Forum: Windows IDE
Topic: Windows IDE Auto-closes when Launched (Hollywood 11)
Replies: 9
Views: 699

Re: Windows IDE Auto-closes when Launched (Hollywood 11)

The one that was causing the problem was created on July ‎1, ‎2024. (I can email you the file if you want to look at it.) Is that a beta version or something? I don't see any official version in the RapaGUI history that has a build date of July 1, 2024. The only release in 2024 was 2.2 on 24th Augu...
by airsoftsoftwair
Sun Feb 01, 2026 12:32 pm
Forum: General programming
Topic: FileRequest() Not Working on Android
Replies: 7
Views: 517

Re: FileRequest() Not Working on Android

This is my code: f$=FileRequest("Select File") NPrint(f$) The error is reported "In function: FileRequest" So the file requester pops up and you are able to select a file and after you have selected a file you get the "error locking ..." error? What Android version is ...