I have the following VB Script expression for Pop-ups. I am using ArcGIS Pro, same expression worked just fine in ArcMap.
I would like some help converting it to Arcade.
Function OpenLink ( [FENYKEP_FAJLNEV] )
Dim path
Dim objShell
Dim foldername
foldername = "G:\Alapadatok_orto_bekka\BEKKA_ESRI\fenykep"
path = [FENYKEP_FAJLNEV]
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute path, "", foldername, "open", 1
End Function