Search found 147 matches

by mrupp
Mon Jan 15, 2024 8:05 pm
Forum: Wishlist
Topic: Enhancement for CreateRexxPort()
Replies: 1
Views: 1274

Enhancement for CreateRexxPort()

Hi there When creating an ARexx port it is needed to evaluate the next free port number (like "MY_COOL_PORT.1"). This is of course possible to do like this: Function p_ARexxPortExists(portName$) Local checkPort = RunRexxScript("if show(ports,'" .. portName$ .. "') then retur...
by mrupp
Mon Jan 15, 2024 6:48 pm
Forum: General programming
Topic: ARexx port: How to return a list of values
Replies: 4
Views: 1468

ARexx port: How to return a list of values

Hi there I'm implementing an Arexx port for my RapaGUI based "SonosController" and am trying to follow these guidelines here: https://wiki.amigaos.net/wiki/UI_Style_Guide_ARexx#Returning_Data It says when returning a list of values they should be returned as an array. In the HW docs I only...
by mrupp
Mon Jan 15, 2024 1:21 pm
Forum: RapaGUI
Topic: Window manipulations
Replies: 3
Views: 1261

Window manipulations

Hi there I'm implementing an Arexx port for my RapaGUI based "SonosController" and am trying to follow these guidelines here: https://wiki.amigaos.net/wiki/UI_Style_Guide_ARexx#Standard_ARexx_Commands Just to make sure that I'm not missing something, could you please confirm that the follo...
by mrupp
Mon Jan 15, 2024 12:47 pm
Forum: General programming
Topic: How to internationalize the DockyContextMenu?
Replies: 2
Views: 995

How to internationalize the DockyContextMenu?

Hi there Is there a way to internationalize the OS4 DockyContextMenu? So far, I create the DockyContextMenu like this: @MENU 1, { { "Docky", { { "Play/Pause", ID = "dockmenPlayPause" }, { "Previous", ID = "dockmenPrevious" }, { "Next", ID =...
by mrupp
Mon Feb 27, 2023 8:55 pm
Forum: General plugin questions
Topic: hURL for AROS?
Replies: 6
Views: 4832

Re: hURL for AROS?

I'd be interested in hURL for AROS, too, for it would enable me to compile my SonosController for AROS as well...
by mrupp
Sun Feb 26, 2023 10:02 pm
Forum: Wishlist
Topic: Windows 10 Notifications
Replies: 12
Views: 11116

Re: Windows 10 Notifications

- New [OS3]: ShowNotification() supports the Ranchero system now; since apps need to register before they can show notifications with Ranchero it's recommended that if you intend to use ShowNotification() on AmigaOS3 with Ranchero you should use @APPIDENTIFIER to specify a unique ID for your app Ex...
by mrupp
Fri Feb 24, 2023 9:32 am
Forum: Wishlist
Topic: Windows 10 Notifications
Replies: 12
Views: 11116

Re: Windows 10 Notifications

airsoftsoftwair wrote: Tue Jan 01, 2019 4:36 pm Looks interesting, I'll see if it can be supported!
Just wondering if Ranchero support has been implemented, yet. If not, any plans to do so? From its docs it should be as easy as sending an arexx message to its port, apparently.
by mrupp
Sat May 21, 2022 6:00 pm
Forum: Hollywood bugs
Topic: Possible bug concerning FX #ZOOMWEST on macOS
Replies: 2
Views: 1952

Possible bug concerning FX #ZOOMWEST on macOS

Hi there I might have encountered a bug that only affects macOS. It concerns the #ZOOMWEST FX if used on a text object that starts with spaces. Please check out the following example: @APPTITLE "Zoom-West-Test" @FONT 1, "Courier New Bold", 90 EnableLayers() UseFont(1) SetFontStyl...
by mrupp
Mon Feb 14, 2022 2:40 pm
Forum: Hollywood bugs
Topic: MakeDirectory() error on macOS
Replies: 6
Views: 3079

Re: MakeDirectory() error on macOS

Now, this is interesting: The following code works , the "test" subfolder is created in the "Ressources" folder in the app bundle: @APPTITLE "MakeDirectory-Test" SetFontColor(#LIME) SetFontStyle(#ANTIALIAS) SetFont(#SANS, 20) m_currentDir$ = GetCurrentDirectory() ;m_new...
by mrupp
Thu Feb 10, 2022 8:56 pm
Forum: Hollywood bugs
Topic: MakeDirectory() error on macOS
Replies: 6
Views: 3079

Re: MakeDirectory() error on macOS

p-OS wrote: Thu Feb 10, 2022 7:56 pm Just an idea...

try

Code: Select all

m_newDir$ = FullPath(m_currentDir$, "MakeDirectory")
Sorry, I don’t get it, could you please elaborate why this should be working any different from my example? The only difference seems to be the name of the new folder, or what am I missing?