I used Application.OpenURL("www.google.uk")
to open a Website. This works but If I try to open more URL's only one will stay open.
I need a way to open more tabs.
This is my foreach where I need to open different tabs with ids provided above.
foreach ( var ids in mehrerenids)
{
Application.OpenURL($"LINK/{ids}");
}
Unity 2019.4.25f1 HoloLens 2
greetings
Launching multiple tabs by looping code at the same time is not supported right now, it always launches only one Edge window, and only one tab shows in it.
Even though, UnityEngine.WSA.Launcher.LaunchUri(uri, false)
can open the weblink and avoid the system suspend your app is by launching a flat browser window directly inside your unity app. But it still always holds only one slate at the same time.