How to open a browser from the game ??

I want to open a browser like Firefox from the game in the URL (www.google.com), using blueprint or c# but i don’t now how can do that!!

Thank you for the help.

Sorry for my english is not good yet :stuck_out_tongue:

1 Like

From blueprint it is quite easy, just use a “Launch URL” node like this:

For C++ this should work:



FPlatformProcess::LaunchURL(TEXT("http://imgur.com/gallery/X4Sr3"), NULL, NULL);


Api docs here: FGenericPlatformProcess::LaunchURL | Unreal Engine Documentation

Both of those should open the page in what ever browser that the user has set as their default.

2 Likes

I am not sure if imgur recycled the link, but if not, well played sir, I had a good laugh.

3 Likes