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 nitinDhami · Jun 05, 2017 at 06:37 AM · texthyperlinks

text mesh pro

I am trying to add hyperlinks in my text by using text mesh pro asset , I have added the tag for it and the Scripts TMP_text_Selector_B to it and TMP_text_Info Debug to it and have added different ids to each link textx, now the problem is that when I click my other texts also it is opening the other links if some one is having a solution for how to add hyperlinks for multiple texts in a line it would be of great help

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

1 Reply

· Add your reply
  • Sort: 
avatar image
4
Best Answer

Answer by Siniarski · Jul 06, 2017 at 07:02 AM

Was figuring this out today as I was running into similar issues. Here is an example of the script attached to the same gameObject that has my TextMeshProUGUI component.

 using UnityEngine;
 using UnityEngine.EventSystems;
 using TMPro;
 
 public class MyTextMeshLinkHandler : MonoBehaviour, IPointerClickHandler
 {
     TextMeshProUGUI textMeshPro;
     Canvas canvas;
     Camera camera;
 
     void Awake ()
     {
         textMeshPro = gameObject.GetComponent<TextMeshProUGUI> ();
         canvas = gameObject.GetComponentInParent<Canvas> ();
         if (canvas.renderMode == RenderMode.ScreenSpaceOverlay) {
             camera = null;
         } else {
             camera = canvas.worldCamera;
         }
     }
 
     public void OnPointerClick (PointerEventData eventData)
     {
         int linkIndex = TMP_TextUtilities.FindIntersectingLink (textMeshPro, Input.mousePosition, camera);
         if (linkIndex != -1) {
             TMP_LinkInfo linkInfo = textMeshPro.textInfo.linkInfo [linkIndex];
             switch (linkInfo.GetLinkID ()) {
             case "id_1":
                 Application.OpenURL ("http://answers.unity3d.com");
                 break;
             case "id_2":
                 //Do something else
                 break;
             }
         }
     }
 }

And the content in the Text Input Box for your TextMeshProUGUI component would have something like this.

 Hello, I get help from <link="id_1">AnswersUnity</link> and this <link="id_2">Does something else</link>

Just a side note this worked on desktop and iPhone too.

Comment
Add comment · Show 2 · Share
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
avatar image nitinDhami · Jul 25, 2017 at 11:23 AM 0
Share

Thanks a lot for your response

avatar image babayandbabay · Aug 01, 2019 at 08:55 PM 0
Share

OH $$anonymous$$AN, YOU $$anonymous$$ADE $$anonymous$$Y DAY, I LOST AROUND HOUR JUST GETTING -1 EVERY TI$$anonymous$$$$anonymous$$ WHY IT SHOULD BE NULL?

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

110 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 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

How to change the text inside UI>Text 1 Answer

Unity 5 - Does anyone know how to scale the text in the UI? 1 Answer

CachedTextGenerator no longer has any character info in Unity 5.3 0 Answers

How do you prevent canvas text from clipping into 3D models? 1 Answer

Resizing font by scale according to screen size, (More complicated than you might think) 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