// ==UserScript== // @name MLP Easy Emotes // @namespace http://www.reddit.com/r/mylittlepony/ // @description Allows you to use the emoticons from /r/MyLittlePony quickly and easily. // @homepage http://redd.it/iqces // @author RogueDarkJedi // @version 3.4 // @include http://www.reddit.com/r/*/comments/* // @include * // @include http://www.synchtube.com/r/RedditBronies // @exclude http://www.redditmedia.com/* // @icon http://i.imgur.com/WrtvH.png // @iconURL http://i.imgur.com/WrtvH.png // ==/UserScript== // Thanks to derram for contributing our icon! var ponyEmotes = { form: null, style: "", isOpen: false, prefs: { useMRP: true, mouseOutEnabled: false, lineOffset: 19, ignoreLogin: true, zIndex: 9999, height: 250, width: 130, }, addGlobalRule : function(css) { ponyEmotes.style += css + "\n"; }, injectStyle : function() { var style, head = document.getElementsByTagName('head')[0]; if (!head) return; style = document.createElement('style'); style.setAttribute('id', 'easyEmotesStyle'); style.setAttribute('type', 'text/css'); style.innerHTML = ponyEmotes.style; head.appendChild(style); }, togglePanel : function() { ponyEmotes.form = document.activeElement; var easyEmotesPanel = document.getElementById("easyEmotesPanel"); ponyEmotes.isOpen = (easyEmotesPanel.getAttribute("class") == "hidePanel easyEmotes emotesPanel"); if(ponyEmotes.isOpen) easyEmotesPanel.setAttribute("class", "easyEmotes emotesPanel"); else easyEmotesPanel.setAttribute("class", "hidePanel easyEmotes emotesPanel"); }, mouseOutHide : function(event) { event.stopPropagation(); event.cancelBubble = true; if(ponyEmotes.isOpen == false || (event.relatedTarget == null || event.relatedTarget.parentNode.id == "emoteIconList" || event.relatedTarget.parentNode.id == "easyEmotesPanel" || event.relatedTarget.id == "easyEmotesPanel")) return; ponyEmotes.togglePanel(); }, addEmote : function(event, theForm) { event.preventDefault(); var emoteTag = event.target.getAttribute("emote"); var startSelect = theForm.selectionStart; var endSelect = theForm.selectionEnd; var oldLength = theForm.value.length; /* If selected text (for alt text) */ if(startSelect != endSelect) { theForm.value = theForm.value.substring(0, startSelect) + ((startSelect == 0) ? "" : " ") + '[](' + emoteTag + ' "' + theForm.value.substring(startSelect, endSelect) + '") ' + theForm.value.substring(endSelect, oldLength); } else { theForm.value = theForm.value.substring(0, startSelect) + ((startSelect == 0) ? "" : " ") + "[](" + emoteTag + ") " + theForm.value.substring(startSelect, oldLength); } // Move the cursor to after the emote injection. var newPos = endSelect + (theForm.value.length - oldLength); theForm.setSelectionRange(newPos, newPos); //Close the form and toggle focus. ponyEmotes.togglePanel(); theForm.focus(); }, inject : function() { var floatingHelper = document.createElement("div"); floatingHelper.setAttribute("id", "easyEmotesToggle"); floatingHelper.setAttribute("class", "easyEmotes emotesToggle"); floatingHelper.innerHTML = "

Emotes >>

"; document.body.appendChild(floatingHelper); var easyEmotesPanel = document.createElement("div"); easyEmotesPanel.setAttribute("id", "easyEmotesPanel"); easyEmotesPanel.setAttribute("class", "hidePanel easyEmotes emotesPanel"); easyEmotesPanel.innerHTML = "Click to insertX







































































"; document.body.appendChild(easyEmotesPanel); document.getElementById("emoteIconList").addEventListener("click", function(e) { ponyEmotes.addEmote(e, ponyEmotes.form); }, false); document.getElementById("closeEmoteList").addEventListener("click", ponyEmotes.togglePanel, false); floatingHelper.addEventListener("mouseover", ponyEmotes.togglePanel, false); if(ponyEmotes.prefs.mouseOutEnabled == true) easyEmotesPanel.addEventListener("mouseout", ponyEmotes.mouseOutHide, false); }, removePrevious : function() { ponyEmotes.style = ""; var toggler = document.getElementById("easyEmotesToggle"), sidePanel = document.getElementById("easyEmotesPanel"), styleRules = document.getElementById("easyEmotesStyle"), head = document.getElementsByTagName('head')[0]; if(toggler) document.body.removeChild(toggler); if(sidePanel) document.body.removeChild(sidePanel); if(styleRules && head) head.removeChild(styleRules); }, init : function() { // Remove previous injection if any. ponyEmotes.removePrevious(); if(ponyEmotes.prefs.lineOffset == 19) { if(document.getElementById("RESConsole")) ponyEmotes.prefs.lineOffset += 8; if(document.getElementsByTagName("shinebar").length > 0) ponyEmotes.prefs.lineOffset = 35; } ponyEmotes.addGlobalRule(".easyEmotes {border: 1px solid #E1B000; background-color: #FFFDCC; top: "+ ponyEmotes.prefs.lineOffset +"px; position: fixed;}"); ponyEmotes.addGlobalRule(".emotesToggle {height: 20px; z-index: "+ (ponyEmotes.prefs.zIndex - 1) +" !important;}"); ponyEmotes.addGlobalRule("#closeEmoteList {font-weight: bold; margin-left: 10%;}"); ponyEmotes.addGlobalRule(".emotesText {margin-top: 3px; color:black !important; font-size: 110% !important;}"); ponyEmotes.addGlobalRule(".hidePanel { display: none !important; }"); ponyEmotes.addGlobalRule(".iconList { overflow-y: scroll; height: 93%; width: 94%; overflow-x: hidden; }"); ponyEmotes.addGlobalRule(".iconList a { cursor: pointer !important; }"); ponyEmotes.addGlobalRule(".emotesPanel { text-align: center; width: "+ ponyEmotes.prefs.width +"px; height: "+ ponyEmotes.prefs.height +"px; z-index: "+ ponyEmotes.prefs.zIndex +" !important; }"); if(ponyEmotes.prefs.useMRP == true) ponyEmotes.addGlobalRule('a[href="/b00"], a[href="/b01"], a[href="/b02"], a[href="/b03"], a[href="/b04"], a[href="/b05"], a[href="/b06"], a[href="/b07"], a[href="/b08"], a[href="/b09"], a[href="/b10"], a[href="/b11"], a[href="/b12"], a[href="/b13"], a[href="/b14"], a[href="/b15"], a[href="/b16"], a[href="/b17"], a[href="/b18"], a[href="/b19"], a[href="/b20"], a[href="/b21"], a[href="/b22"], a[href="/b23"], a[href="/b24"], a[href="/b25"], a[href="/b26"], a[href="/b27"], a[href="/b28"], a[href="/b29"], a[href="/b30"], a[href="/b31"], a[href="/b32"], a[href="/b33"], a[href="/b34"], a[href="/b35"], a[href="/b36"], a[href="/b37"], a[href="/b38"], a[href="/b39"] { display: block; clear: none; float: left; width: 50px; height: 50px; background-image: url(http://thumbs.reddit.com/t5_2s8bl_1.png?v=easyEmotes); } a[href="/b00"] { background-position: -0px -0px; } a[href="/b01"] { background-position: -0px -50px; } a[href="/b02"] { background-position: -0px -100px; } a[href="/b03"] { background-position: -0px -150px; } a[href="/b04"] { background-position: -0px -200px; } a[href="/b05"] { background-position: -0px -250px; } a[href="/b06"] { background-position: -0px -300px; } a[href="/b07"] { background-position: -0px -350px; } a[href="/b08"] { background-position: -0px -400px; } a[href="/b09"] { background-position: -0px -450px; } a[href="/b10"] { background-position: -50px -0px; } a[href="/b11"] { background-position: -50px -50px; } a[href="/b12"] { background-position: -50px -100px; } a[href="/b13"] { background-position: -50px -150px } a[href="/b14"] { background-position: -50px -200px; } a[href="/b15"] { background-position: -50px -250px; } a[href="/b16"] { background-position: -50px -300px; } a[href="/b17"] { background-position: -50px -350px; } a[href="/b18"] { background-position: -50px -400px; } a[href="/b19"] { background-position: -50px -450px; } a[href="/b20"] { background-position: -100px -0px; } a[href="/b21"] { background-position: -100px -50px; } a[href="/b22"] { background-position: -100px -100px; } a[href="/b23"] { background-position: -100px -150px; } a[href="/b24"] { background-position: -100px -200px; } a[href="/b25"] { background-position: -100px -250px; } a[href="/b26"] { background-position: -100px -300px; } a[href="/b27"] { background-position: -100px -350px; } a[href="/b28"] { background-position: -100px -400px; } a[href="/b29"] { background-position: -100px -450px; } a[href="/b30"] { background-position: -150px -0px; } a[href="/b31"] { background-position: -150px -50px; } a[href="/b32"] { background-position: -150px -100px; } a[href="/b33"] { background-position: -150px -150px; } a[href="/b34"] { background-position: -150px -200px; } a[href="/b35"] { background-position: -150px -250px; } a[href="/b36"] { background-position: -150px -300px; } a[href="/b37"] { background-position: -150px -350px; } a[href="/b38"] { background-position: -150px -400px; } a[href="/b39"] { background-position: -150px -450px; } a[href="/c00"], a[href="/c01"], a[href="/c02"], a[href="/c03"], a[href="/c04"], a[href="/c05"], a[href="/c06"], a[href="/c07"], a[href="/c08"], a[href="/c09"], a[href="/c10"], a[href="/c11"], a[href="/c12"], a[href="/c13"], a[href="/c14"], a[href="/c15"], a[href="/c16"], a[href="/c17"], a[href="/c18"], a[href="/c19"], a[href="/c20"], a[href="/c21"], a[href="/c22"], a[href="/c23"], a[href="/c24"], a[href="/c25"], a[href="/c26"], a[href="/c27"], a[href="/c28"], a[href="/c29"] { display: block; clear: none; float: left; width: 70px; height: 70px; background-image: url(http://thumbs.reddit.com/t5_2s8bl_6.png?v=easyEmotes); } a[href="/c00"] { background-position: -0px -0px; } a[href="/c01"] { background-position: -0px -70px; } a[href="/c02"] { background-position: -0px -140px; } a[href="/c03"] { background-position: -0px -210px; } a[href="/c04"] { background-position: -0px -280px; } a[href="/c05"] { background-position: -0px -350px; } a[href="/c06"] { background-position: -0px -420px; } a[href="/c07"] { background-position: -0px -490px; } a[href="/c08"] { background-position: -0px -560px; } a[href="/c09"] { background-position: -0px -630px; } a[href="/c10"] { background-position: -70px -0px; } a[href="/c11"] { background-position: -70px -70px; } a[href="/c12"] { background-position: -70px -140px; } a[href="/c13"] { background-position: -70px -210px; } a[href="/c14"] { background-position: -70px -280px; } a[href="/c15"] { background-position: -70px -350px; } a[href="/c16"] { background-position: -70px -420px; } a[href="/c17"] { background-position: -70px -490px; } a[href="/c18"] { background-position: -70px -560px; } a[href="/c19"] { background-position: -70px -630px; } a[href="/c20"] { background-position: -140px -0px; } a[href="/c21"] { background-position: -140px -70px; } a[href="/c22"] { background-position: -140px -140px; } a[href="/c23"] { background-position: -140px -210px; } a[href="/c24"] { background-position: -140px -280px; } a[href="/c25"] { background-position: -140px -350px; } a[href="/c26"] { background-position: -140px -420px; } a[href="/c27"] { background-position: -140px -490px; } a[href="/c28"] { background-position: -140px -560px; } a[href="/c29"] { background-position: -140px -630px; }'); ponyEmotes.injectStyle(); /* Only create the panel and stuff if we are logged in. Inject My Reddit Ponies, should the person have that on. */ if(ponyEmotes.prefs.ignoreLogin == false) { if(!document.getElementById("mail")) return; } ponyEmotes.inject(); } }; ponyEmotes.init();