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
9
Question by Fattie · Aug 12, 2013 at 01:00 PM · bugsmetamoderation

[Meta] Send Message is STILL broken on moderation page?

That's amazing - it's been like six months.

Is it broken for everyone else or just me?

Comment
Add comment · Show 20
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 Fornoreason1000 · Aug 12, 2013 at 01:09 PM 0
Share

it plays up for me too. the message either becomes a comment like it supposed (at least that's my understanding) or not at all.

also the "Reject and Send $$anonymous$$essage" also doesn't work.. it just rejects it. but im only at 1k but I reject things like "write my code" or "What is Null Reference Error!". but I seem to have trouble telling them the right way to make questions because half the messages don't even show up.

when you press "send $$anonymous$$essage" does it just take you to the top of the page?

also the Advanced Questions appear to be bugged unless there aren't any.

avatar image Fattie Fornoreason1000 · Aug 12, 2013 at 01:30 PM 0
Share

Hi @Forno, I am referring to this:

alt text

which is on the moderation link under each new item awaiting vetting.

the "Send message" button is supposed to send a message to the person in question (I'm pretty sure it is not supposed to become a comment) - that's how it has worked in the past anyways.

Also when you say "Reject and Send $$anonymous$$essage", where is that?? Could you post a screenshot? What do you click to get to that?

Cheers!

screen shot 2013-08-12 at 15.28.23.png (9.2 kB)
avatar image Fornoreason1000 Fornoreason1000 · Aug 12, 2013 at 01:40 PM 0
Share

if its easier call me F1k, Forno sounds weird... but yup that what im talking about.. it either works but come up as a comment or scrolls me to the very top of the current page.

this is the button im talking about

alt text

its the same place as the other moderation. also I'm having an annoying bug with the up-loader where the crop selection tool overlaps the Accept Cancel window. forcing me to press Tab until accept highlights then press Enter.

alt text

[2]: /storage/temp/14206-untitled-1.png

untitled-1.png (32.2 kB)
avatar image AlucardJay Fornoreason1000 · Aug 29, 2013 at 09:19 AM 3
Share

The fact that functionality is still missing is a fkn joke.

Show more comments
avatar image Sajidfarooq · Aug 29, 2013 at 09:31 AM 0
Share

^Agreed...Do the Unity Tech employees even visit this place?

avatar image Fattie · Aug 29, 2013 at 09:41 AM 0
Share

Cmon guys .. I could take as much as one-half line of PHP to fix that problem

;-)

Seriously it's kind of weird it is not fixed yet. There's no "real explanation" for that. Even if they're planning a massive new release, or whatever, someone should just click 4 keys on their keyboard and fix it, you know?

avatar image meat5000 ♦ · Aug 29, 2013 at 09:46 AM 1
Share

Really, moderation should be for finding abuse spam and bad language. Really it should not be used to reject bad questions. Everyone should have a chance to have their 'question' answered no matter how abo$$anonymous$$able it may be and then it is down to H$$anonymous$$ (High $$anonymous$$arma) to Close the question if they are not successful or its not going anywhere. At the very least direct them to the forums.

Of course, if SEND $$anonymous$$ESSAGE actually worked this wouldn't be an issue.

avatar image Fattie · Aug 29, 2013 at 09:49 AM 0
Share

right, Send$$anonymous$$essage has to work - or essentially the whole board is unusable

Show more comments

2 Replies

· Add your reply
  • Sort: 
avatar image
3

Answer by Jamora · Feb 24, 2014 at 05:42 PM

While we're waiting for an official fix, I made this GreaseMonkey script that allows us to use the send message button on the moderation page, so that it actually sends the message as well.

 // ==UserScript==
 // @name        FixUASendMessage
 // @namespace   UA
 // @description Fix Send Message on UA mod queue
 // @include     http://answers.unity3d.com/moderation/index.html*
 // @version     1
 // @grant       none
 // ==/UserScript==
 
 var visibilityValues = document.getElementsByName("visibility");
 var bodies = document.getElementsByName("body");
 
 for(var i=0; i<bodies.length;i++){
     bodies[i].onclick = function(){
        correctRights();
     };
 }
 
 function correctRights(){   
     for(var i=0; i<visibilityValues.length;i++){
         visibilityValues[i].value = "full";
     }
 }
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 vexe · Feb 27, 2014 at 06:44 AM 0
Share

das right! wanna get something done? do it yourself!

avatar image Benproductions1 · Feb 27, 2014 at 08:19 AM 0
Share

Now can you fix the broken tutorial video link? :P

Awesome job btw, it's sad when people don't fix their websites and you have to resort to Grease$$anonymous$$onkey scripts to do it for them.

avatar image
0

Answer by dzone_adm · Jan 07, 2014 at 04:48 PM

SendMessage should be working again - please let us know if it stops working again.

Comment
Add comment · Show 11 · 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 Jamora · Jan 07, 2014 at 05:12 PM 1
Share

Awesome, nice to see UA hasn't been forgotten.

avatar image HappyMoo · Jan 07, 2014 at 06:30 PM 0
Share

wait, what? That was too easy :) Thanks!

avatar image Benproductions1 · Jan 08, 2014 at 01:01 AM 0
Share

Send$$anonymous$$essage now pops up, but I'm still unable to actually send it. Writing works just fine and there's no exception in any of the javascript, but it still doesn't post a comment...

avatar image AlucardJay · Jan 26, 2014 at 01:44 PM 3
Share

Jan 27th 2014 : Added Send $$anonymous$$essage text, clicked comment button, comment button remains faded and comment doesn't get added :

alt text

While (if) I have your attention, why have Unity Employed $$anonymous$$oderators become very 'selective' about what they respond to. We are adding information to help you identify and fix problems, yet we get zero feedback.

Again, I ask, have you noticed this UA bug and are you looking at fixing he problem? : http://answers.unity3d.com/questions/526226/meta-user-search-is-not-working.html

commentnotsending.jpg (115.3 kB)
avatar image HappyMoo · Feb 18, 2014 at 04:56 PM 1
Share

For future reference: Contacting support@answerhub.com is the preferred way of handling such problems.

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

27 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

Related Questions

QATO: Please add # items awaiting moderation 1 Answer

[Meta] Moderation queue comments - do askers actually see them? 1 Answer

[Meta] Should links to external code or code screenshots be published? 1 Answer

[Meta] Can line#s be displayed in the Mod queue? 1 Answer

[Qato] What's up with the moderation queue now? 2 Answers


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