Playmaker Action Welcome! › Forums › Unity Plugins › In-App Web Browser › Playmaker Action This topic has 2 replies, 2 voices, and was last updated 3 years, 10 months ago by hunter_something. Log In Register Lost Password Viewing 3 posts - 1 through 3 (of 3 total) Author Posts March 25, 2021 at 8:21 pm #11728 hunter_somethingParticipant Hi there! The asset store listing says that this comes “Bundled with ready-to-use Playmaker action” – but I can’t seem to find it. Could you let me know how I can locate this file? Thanks! March 25, 2021 at 10:55 pm #11729 PiotrKeymaster hey, try this one: using System.Collections.Generic; using UnityEngine; namespace HutongGames.PlayMaker.Actions { [ActionCategory("InAppBrowser")] [Tooltip("Open a URl using InAppBrowser")] public class InAppBrowserOpenURL : FsmStateAction { [RequiredField] [Tooltip("URL")] public FsmString address; public override void Reset() { address = null; } public override void OnEnter() { DoEnter(); Finish(); } private void DoEnter() { InAppBrowser.OpenURL(address.Value); } } } This reply was modified 3 years, 10 months ago by Piotr. March 26, 2021 at 8:20 pm #11731 hunter_somethingParticipant Thanks – that worked great! Author Posts Log In Register Lost Password Viewing 3 posts - 1 through 3 (of 3 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In