Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by german2209 · Jun 04, 2016 at 03:56 AM · webglpopupopenurlblocking

How can I modify this script to work with a 3d object like a cube to open a link in a new tab bypassing popup blockers?

Hi, I used this small piece of javascript code to open external links in an old project, but had to instruct the users to allow popup windows to make it work: var setURL : String = "http://www.google.com";

 function OnMouseDown():void {
     Application.ExternalEval("window.open('" + setURL + "')");
 }

Now I'm trying to make use of the example provided in [https://github.com/valyard/UnityWebGLOpenLink][1]

This are the 3 main files used by this example:

  1. Plugin:

    var OpenWindowPlugin = { openWindow: function(link) { var url = Pointer_stringify(link); document.onmouseup = function() { window.open(url); document.onmouseup = null; } } };

    mergeInto(LibraryManager.library, OpenWindowPlugin);

  2. Script 1:

    using UnityEngine; using System.Runtime.InteropServices;

    public class Link : MonoBehaviour { public void OpenLinkJSPlugin() { #if !UNITY_EDITOR openWindow("http://unity3d.com"); #endif }

      [DllImport("__Internal")]
         private static extern void openWindow(string url);
     }
    
    
    
  3. Script 2:

    using UnityEngine; using UnityEngine.EventSystems; using System; using UnityEngine.Events;

    public class PressHandler : MonoBehaviour, IPointerDownHandler { [Serializable] public class ButtonPressEvent : UnityEvent { }

      public ButtonPressEvent OnPress = new ButtonPressEvent();
     
         public void OnPointerDown(PointerEventData eventData)   {
             OnPress.Invoke();
         }
     }
    
    
    

This example is for making buttons open external links, but I need to transform it in someway that I can attach it to a 3d object like a cube, where I can define the URL to be opened for each element, and make the call to the plugin when the player clicks on the cube.

Thanks in advance for any help!

Regards,

German Acevedo Working on Unity3d 5.3.4f1 Professional Build target: WebGL

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

60 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Why does my toon shader not work when I build it in webgl? 0 Answers

How to capture Camera disconnect in using Webcamtexture for Webgl 1 Answer

Unity says my platformer micro game cannot be shared with webGL because the max size is 100 mb, but I should be able to share it 0 Answers

WebGL displacement shader doesn't work in build 0 Answers

How Can I Export To Win10 From Manjaro Linux? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges