Like the headlines says, how to open System preferences pane on Mac from B4J code?
I know that a path can be opened by doing this
or this
I know that a path can be opened by doing this
B4X:
fx.ShowExternalDocument(File.GetUri(Folderpath, ""))
or this
B4X:
Dim shl As Shell
shl.InitializeDoNotHandleQuotes("shl", "Open", Array As String ("" & Folderpath))
'shl.WorkingDirectory = File.DirApp
shl.WorkingDirectory = Folderpath
shl.Run(100)
Last edited: