Search found 167 matches

by p-OS
Sun Dec 17, 2023 11:52 pm
Forum: RapaGUI
Topic: You are the OS
Replies: 4
Views: 3040

Re: You are the OS

Actually MUi does not have a real Button class. Every Object based on Area.mui or any subclass of it can be made a Button. Even a group. One has to set MUIA_InputMode to MUIV_InputMode_RelVerify and a notifcytion trigge to MUIA_Pressed. Normal Buttons in MUI are actually TextObjects: (C Code:) okbut...
by p-OS
Fri Mar 17, 2023 12:25 am
Forum: General programming
Topic: Show splash screen while app is loading?
Replies: 11
Views: 3075

Re: Show splash screen while app is loading?

As soon as RapaGui is used, Hollywood Displays are only visible inside Rapagui Hollywood class. Tbus open a RapaGui window for the Splash Screen
by p-OS
Tue Mar 14, 2023 9:33 pm
Forum: Newbie questions
Topic: Autoboot Game on Amiga CD32
Replies: 2
Views: 831

Re: Autoboot Game on Amiga CD32

Theoretically yes, But on unxtended devices with only 2MB Ram HW Apps might stop with out of memory error.
by p-OS
Thu Mar 09, 2023 5:35 pm
Forum: Newbie questions
Topic: cross platform application howto detect operating system
Replies: 3
Views: 742

Re: cross platform application howto detect operating system

Check the manual for preprocessort command IF, there uis an example how to do conditional compilation depending on the paltform it is running.
by p-OS
Mon Feb 27, 2023 9:51 am
Forum: Showcase
Topic: First public HGui release published!
Replies: 10
Views: 4630

Re: First public HGui release published!

Short instruction to test: 1. Goto https://github.com/Allanon71/HGui 2. Click on green "Code" button,in the popup menu select "Download Zip". 3. Extract Zip Archive 4. Open the file +Includes.hws for editing 5. Goto line 14 6. Adapt the following constant #INC_PATH = "C:/Use...
by p-OS
Fri Feb 11, 2022 2:53 am
Forum: Hollywood bugs
Topic: MakeDirectory() error on macOS
Replies: 6
Views: 3006

Re: MakeDirectory() error on macOS

https://stackoverflow.com/questions/622 ... app-folder

There seem to exist some coding rules from Apple. Maybe newer OS Versions do enforce them ?
by p-OS
Thu Feb 10, 2022 7:56 pm
Forum: Hollywood bugs
Topic: MakeDirectory() error on macOS
Replies: 6
Views: 3006

Re: MakeDirectory() error on macOS

Just an idea...

try

Code: Select all

m_newDir$ = FullPath(m_currentDir$, "MakeDirectory")
by p-OS
Tue Jan 18, 2022 5:57 pm
Forum: General questions
Topic: PNG as anim files
Replies: 4
Views: 3117

Re: PNG as anim files

Did you install the "APNG Anim" Plugin ?
by p-OS
Mon Dec 20, 2021 5:11 am
Forum: General plugin questions
Topic: hURL - MQTT protocol support included ?
Replies: 6
Views: 3094

Re: hURL - MQTT protocol support included ?

Of course my router supports that.

Thabkx for the idea !

I simply didn't consider the possibility to use different external ports für each debvice :roll:
by p-OS
Sun Dec 19, 2021 10:46 pm
Forum: General plugin questions
Topic: hURL - MQTT protocol support included ?
Replies: 6
Views: 3094

Re: hURL - MQTT protocol support included ?

I just bought my first wifi power sockets. As the port of the devices is not adjustable (thus port redirection on the router cannot be used), a mqtt server is the only chance to manage them from outside the lan. Installing a mqtt service on my router is possible but not an easy task. And then I also...