| View previous topic :: View next topic |
| Author |
Message |
gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Sun Apr 10, 2011 7:47 pm Post subject: |
|
|
| Code: | // ==UserScript==
// @name adding text styling test
// @namespace http://forum.cheatengine.org/*
// @include *forum.cheatengine.org/*
// ==/UserScript==
var postButton = document.forms.namedItem("post").elements.namedItem("post");
function styling(){
var newmsg = "";
var oldmsg = "";
var postMessage = document.forms.namedItem("post").elements.namedItem("message");
var newmsgpos = 0;
if (parseInt(postMessage.value.search("[/quote]")) == -1){
newmsg = postMessage.value;
oldmsg = "";
}
else if (postMessage.value.search("[/quote]") != -1){
newmsgpos = postMessage.value.lastIndexOf("[/quote]");
newmsg = postMessage.value.substring(newmsgpos + 8);
oldmsg = postMessage.value.substring(0,newmsgpos + 8);
}
postMessage.value=oldmsg+"[color=darkblue][size=9] "+newmsg+" [/size][/color]";
}
postButton.addEventListener("click", styling, true); |
|
|
| Back to top |
|
 |
Channel GannoK pffrt
Reputation: 130
Joined: 12 Apr 2008 Posts: 608
|
Posted: Sun Apr 10, 2011 8:47 pm Post subject: |
|
|
| gogodr wrote: | | Code: | // ==UserScript==
// @name adding text styling test
// @namespace http://forum.cheatengine.org/*
// @include *forum.cheatengine.org/*
// ==/UserScript==
var postButton = document.forms.namedItem("post").elements.namedItem("post");
function styling(){
var newmsg = "";
var oldmsg = "";
var postMessage = document.forms.namedItem("post").elements.namedItem("message");
var newmsgpos = 0;
if (parseInt(postMessage.value.search("[/quote]")) == -1){
newmsg = postMessage.value;
oldmsg = "";
}
else if (postMessage.value.search("[/quote]") != -1){
newmsgpos = postMessage.value.lastIndexOf("[/quote]");
newmsg = postMessage.value.substring(newmsgpos + 8);
oldmsg = postMessage.value.substring(0,newmsgpos + 8);
}
postMessage.value=oldmsg+"[color=darkblue][size=9] "+newmsg+" [/size][/color]";
}
postButton.addEventListener("click", styling, true); |
|
Thanks mang.
_________________
|
|
| Back to top |
|
 |
Evil_Intentions Expert Cheater
Reputation: 65
Joined: 07 Jan 2010 Posts: 214
|
Posted: Sun Apr 10, 2011 8:52 pm Post subject: |
|
|
| gogodr wrote: | | Code: | // ==UserScript==
// @name adding text styling test
// @namespace http://forum.cheatengine.org/*
// @include *forum.cheatengine.org/*
// ==/UserScript==
var postButton = document.forms.namedItem("post").elements.namedItem("post");
function styling(){
var newmsg = "";
var oldmsg = "";
var postMessage = document.forms.namedItem("post").elements.namedItem("message");
var newmsgpos = 0;
if (parseInt(postMessage.value.search("[/quote]")) == -1){
newmsg = postMessage.value;
oldmsg = "";
}
else if (postMessage.value.search("[/quote]") != -1){
newmsgpos = postMessage.value.lastIndexOf("[/quote]");
newmsg = postMessage.value.substring(newmsgpos + 8);
oldmsg = postMessage.value.substring(0,newmsgpos + 8);
}
postMessage.value=oldmsg+"[color=darkblue][size=9] "+newmsg+" [/size][/color]";
}
postButton.addEventListener("click", styling, true); |
|
I could like totes make an encryptor with this.
|
|
| Back to top |
|
 |
|