Usually, I use: ShellExecute(0, 'OPEN', PChar(edtURL.Text), '', '', SW_SHOWNORMAL);
How can I have the same behaviour (opening a link in the default browser), on all platforms (Windows and OSX)?
|
Usually, I use: How can I have the same behaviour (opening a link in the default browser), on all platforms (Windows and OSX)? |
|||||||||||||
|
|
In the FireMonkey discussion forum I found this code for a question about NSWorkspace.URLForApplicationToOpenURL:
(not tested by me) Update: Posix is not available on Windows so it is not possible to write a solution which uses the same OS calls on all platforms. I suggest to move such code in a central 'XPlatform' unit which has some IFDEF POSIX etc. |
|||||||||||||
|
|
Regarding the answer of mjn, I have written the following unit. I have successfully tested it on Windows but I don't have an OSX to test it on this platform. If someone can confirm it works, I'd appreciate.
and I call it like this:
|
|||||
|
|
XE2 C++ code that is tested succesfully (Windows 7 64 and OSX Lion), minor improvements. Thank's Whiler, the pain is over :)
|
|||
|
|
And now a C++ version (OSx code untested, also not sure about the _POSIX #def):
|
|||
|
|