Hi,
I'm building a Power App with a Gallery from which I want to open Links. Some of them work (Excel file via "https://<company>.sharepoint.com/<...>&file=<filename>.xlsx" and a Power App via "https://apps.powerapps.com/play/<...>") but others don't. I tested if an entry with google.com works, which didn't.
It is configured like this:
- Gallery.Items = Anwendungen

- Gallery.OnSelect = Launch(ThisItem.URL)

- App.OnStart = ClearCollect(Anwendungen;
{
Titel: "Test";
Kurzbeschreibung: "Google";
Kategorie: "Allgemein";
Symbolbezeichnung: "Uhr";
URL: "https://www.google.com/"
}; ...)

I Also tried Gallery.OnSelect =
- Launch(EncodeUrl(ThisItem.URL))
- Launch(Concatenate(Anwendungen_Gallery.Selected.URL;"?web=1"))
- Launch(ThisItem.URL; {}; LaunchTarget.New)
Then I tried to launch google from a button, which also didn't work... I just added a button to the screen with OnSelect=Launch("https://www.Google.com").
The gallery and button are both in DisplayMode=Edit.
Hope someone can help.