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 RealMTG · May 31, 2014 at 02:00 PM · scrollbarchat

Chat Scrollbar not working correctly

Hi!

I've got my chat and I need my scrollbar to allow you to scroll the bar. But my problem is. It doesn't show my scrollbar when I start (which is good) but when the messages starts overflowing, it doesn't appear and I can't scroll. What should I do?

Here is my code:

 scrollPosition = GUI.BeginScrollView(new Rect(0, Screen.height - 150, 400, 130), scrollPosition, new Rect(0, 0, 0, 130));
 
             GUI.Label(new Rect(5, 0, 390, 5), communication, myStyle);
 
             GUI.EndScrollView();

Thanks

Comment
Add comment · Show 1
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 RealMTG · Jun 01, 2014 at 03:11 PM 0
Share

Anyone? I really need help with this!

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by thornekey · Jun 01, 2014 at 03:23 PM

this is because there is nothing to scroll.. to make it always there you must tell it to never be hidden:

         scrollPosition = GUILayout.BeginScrollView(scrollPosition, false, true, GUILayout.Width(400), GUILayout.Height(130));    
 

if u use a GUILayout you get options.

Comment
Add comment · Show 3 · 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 RealMTG · Jun 02, 2014 at 09:52 AM 0
Share

I don't know how to work with GUILayout and I am not planning to learn it either.

avatar image thornekey · Jun 02, 2014 at 11:19 PM 0
Share

why arent you willing to learn it? it is much cleaner in your scripts... you should always be willing to learn new things.. especially when it comes to program$$anonymous$$g or youll always be slandered as a noob.

avatar image RealMTG · Jun 03, 2014 at 02:29 PM 0
Share

It is just that I want to be very specific on where I have my GUIs. What I have understood, that's a bit hard to do in GUILayout.

avatar image
0

Answer by zharik86 · Jun 01, 2014 at 07:22 PM

Your error in initialization of the second rectangle in BeginScroll (). You write that its width is equal 0. Therefore you see nothing. Set value more than 0. For example:

  scrollPosition = GUI.BeginScrollView(new Rect(0, Screen.height - 150, 400, 130), scrollPosition, new Rect(0, 0, 400, 130));
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 RealMTG · Jun 02, 2014 at 09:52 AM 0
Share

There is still no scrollbar.

avatar image zharik86 · Jun 03, 2014 at 07:07 PM 0
Share

If you need "scrollbar" view texture, that change to:

  scrollPosition = GUI.BeginScrollView(new Rect(0, Screen.height - 150, 400, 130), scrollPosition, new Rect(0, 0, 400, 260));
  GUI.Label(new Rect(5, 5, 390, 20), communication, myStyle);
  GUI.EndScrollView();

How work with GUI.BeginScroll(), see my pregoing response

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

22 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

Related Questions

Unity and Facebook chat? 1 Answer

Help with chatting to NPC, click F for gui box etc 1 Answer

Two distinct triggers/scripts shouldn't be interacting, but are. 0 Answers

Voice Chat Script help? 1 Answer

Chat Message Box with Dynamic Message Sizes help 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