How to Launch Web Browser with URL From In-Game

Overview Author () Dear Community, This is how you can launch the OS default web browser with your chosen URL from inside the game via C++! CPP FString TheURL = "http://www.google.com/"; ...

Updated over 4 years ago Edit Page Revisions

Overview

Author ()

Dear Community,

This is how you can launch the OS default web browser with your chosen URL from inside the game via C++!

CPP

FString TheURL = "http://www.google.com/";
FPlatformProcess::LaunchURL( *TheURL, nullptr, nullptr );

Summary

More information can be found in the documentation.

Enjoy!

()