Page 1 of 1

[Solved]Run default application in Linux

Posted: Thu Feb 28, 2013 3:13 pm
by infratec
Hi,

I have an ugly bug:

I use

Code: Select all

RunProgram("http://...")
as action for clicking on a 'Donate-Button'
Unfortunately this works only in Windows :cry:

How can I start the 'default' web browser in Linux :?:

Bernd

Re: [Solved]Run default application in Linux

Posted: Thu Feb 28, 2013 3:36 pm
by infratec
Found the solution:

Code: Select all

RunProgram("xdg-open", "https://...", "")
Bernd