Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 /
avatar image
0
Question by Jammer3000 · Dec 03, 2014 at 02:44 PM · c#urltwitter

Application.OpenURL Won't Open Url With Custom String?

I am trying to use Application.OpenURL(); to open a url that on a mobile device brings up the Twitter app and will take it to the post area in Twitter and have pre set text for the user to post which is (I've just scored "points" points) but it will not open the url as long as I am trying to add my currentScorefGui.guiText.text to the string I am passing to the Application.OpenURL(); If i remove the custom GUI text it works just fine?

I had this working just find but then yesterday it just stopped working randomly and I have tried so many different methods to get it to work but as long as I am trying to pass that gui text it won't work? Also the currenScoreGui has a GUI Text game object attached to it.

     public GameObject currentScorefGui;
     public string currentScoreText;
 
     void Update () {
         currentScoreText = "twitter://post?text=I've%20just%20scored%20" +  currentScorefGui.guiText.text + "%20points";
     }
 
     void OnMouseUp () {
         Application.OpenURL(currentScoreText);
         Debug.Log("Twitter Button Pressed...");
     }
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
1
Best Answer

Answer by rxmarccall · Dec 03, 2014 at 04:34 PM

I've been having a very similar problem, was working fine then suddenly just stopped. I just found this Unity answers page that seems to be working for me though! http://answers.unity3d.com/questions/61669/applicationopenurl-for-email-on-mobile.html

Comment
Add comment · Show 1 · 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 Jammer3000 · Dec 03, 2014 at 05:24 PM 0
Share

Thank you very much I have figured it out and the code below is how I got $$anonymous$$e to work.

 using UnityEngine;
 using System.Collections;
 
 public class TwitterButton : $$anonymous$$onoBehaviour {
     
     const string Address = "twitter://post?text=";
 
     public GameObject currentScorefGui;
 
     void On$$anonymous$$ouseUp () {
 
         string escName = $$anonymous$$yEscapeURL("I've just scored" + currentScorefGui.guiText.text + " points!");
         Application.OpenURL("twitter://post?text=" + escName);
         Debug.Log("Twitter Button Pressed...");
     }
 
     string $$anonymous$$yEscapeURL (string url)
     {
         return WWW.EscapeURL(url).Replace("+","%20");
     }
 }

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

26 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

Related Questions

Posting To Twitter From App? - Unity 3 Answers

A problem with intersection detection 1 Answer

Two exact objects behaving differently... *scratches head* 0 Answers

Animated Texture Offset 1 Answer

Unity Social Integration - Facebook Button Not Working? 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