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 10, 2012 at 04:03 PM · guisavecreate

How to create a gui that the user can write in and save?

Hi I want to create a simple gui that allows the user to write in side the gui like a notepad kind of thing, but I it doesn't have to open a new gui space to write in everytime the user runs the program, what the user wrote last time in the gui I still want to be there. but I just want them to be able to edit the last thing the user wrote and then save it, so when the user opens it again it what the user wrote will still be there. Thanks and i'm kind of new to programming so please go easy on me, thanks so much.

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by XienDev · Dec 10, 2012 at 05:48 PM

Use textarea and local static variable ?... show when you need, and hide when you need.. ?

Comment
Add comment · 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
0

Answer by TheDarkVoid · Dec 10, 2012 at 05:52 PM

Here is a simple script for that:

 using UnityEngine;
 using System.Collections;
 
 public class SumRandom : MonoBehaviour {
 
     public string InputText;
     public int MaxLenght = 100000;
     void OnGUI()
     {
         InputText = GUI.TextField(new Rect(5,5, 500, 250), InputText, MaxLenght);
         if(GUI.Button(new Rect(5, 260, 245, 20), "Save"))
         {
             PlayerPrefs.SetString("SavedInput", InputText);
         }
         if(GUI.Button(new Rect(260, 260, 245, 20), "Load"))
         {
             InputText = PlayerPrefs.GetString("SavedInput");
         }
     }
 }
 
Comment
Add comment · Show 6 · 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 11, 2012 at 04:25 PM 0
Share

If you or someone could give me a example code or how you would do it, i'm not very code savvy if you don't have time thats ok, thanks for the help so far:)

avatar image TheDarkVoid · Dec 11, 2012 at 09:44 PM 0
Share

Added it to my Answer!

avatar image Jammer3000 · Dec 12, 2012 at 02:19 AM 0
Share

Thanks it worked, but for some reason I can't click enter to make it so the words will be able to go under the text example below of what it won't let me do, is there anyway to fix that?

$$anonymous$$y Schedule: Create Unity3d project Go to church Go grocery shopping

avatar image TheDarkVoid · Dec 12, 2012 at 02:55 AM 0
Share

Not sure what you're asking, are you trying to make a new line by pressing enter?

avatar image Jammer3000 · Dec 12, 2012 at 02:33 PM 0
Share

Yes exactly.

Show more comments

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

11 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

Related Questions

How to create a gui button inside an if statement? 1 Answer

Inputing an Equation 0 Answers

Simple Backpack "Pick up and drop" 1 Answer

My own GuiSkin on the script 2 Answers

GUI button not showing up 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