1 Users appreciate this thread.
PC Chat Greasemonkey Chat Keyboard Replacer
NINTENDO64 (2013-01-07 03:33:41)Nice!
"If today were the last day of my life, would I want to do what I am about to do today?"
-Steve Jobs
DBS
-Steve Jobs
DBS
Log in to submit a comment
Back to forum: Triniate
New registered users today: 7
Newest registered user: ElegantVulpes
I thought I'd share this here, so:
You know that HORRIBLE ON-SCREEN KEYBOARD that you have to use on PC? (it works good on 3DS / touch keyboards but on PC not so hot..)
No longer. If you use Firefox (with Greasemonkey) or Chrome (with whatever custom scripts plugin they have), I created a simple script which overrides the chat button so it uses a text box input. Much nicer you see.
Source Code (just copy into a script):
// ==UserScript==
// @name Triniate Send Button
// @namespace http://www.triniate.com/
// @include http://www.triniate.com/play_2/*
// @version 1
// @grant none
// ==/UserScript==
function overrideChatClick(matchClass)
{
var elems = document.getElementsByTagName('*'
for (i in elems)
{
if((" "+elems[i].className+" " ).indexOf(" "+matchClass+" " ) > -1)
{
elems[i].onclick= (function() {
showchat2();
});
}
}
}
overrideChatClick('show_chat'
function showchat2() {
document.getElementById('chat_text_bar'
sendpost();
}
If you use it please let me know.
Edit: Fixed so it works on older/newer demo versions than 6.
2013-01-03 16:54:53