- Home /
Link to another browser tab
Hi, I have this code to go to a web address, but opens in the same browser window.
Start function () { / / Start a download of The Given URL var www: WWW = new WWW (url);
/ / Wait for download to complete www yield;
/ / Assign texture renderer.material.mainTexture = www.texture;
}
OnMouseDown function () { Application.OpenURL ("http://google.com"); }
How do I link another browser screen?
Thanks
Comment
Your answer
Follow this Question
Related Questions
Place a link in another browser window. 3 Answers
What would be needed for a link in browser to start Unity with the player in a specific location? 1 Answer
Game pauses when user changes browser tab (even with RunInBackground) 1 Answer
WebGL - Open URL in new tab? 10 Answers
how to make an web link? 2 Answers