Shoutbox

[request] size font - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [request] size font (/showthread.php?tid=69574)

[request] size font by duck! on 12-16-2006 at 07:49 PM

On these forums you can do the code [ size=1 ]hi[ /size ] and it goes small and big whatever you want, and MP!L doesnt have that feature, but im pretty sure it can be done via script by doing /size1 /size2 /size3 etc

Would anyone have a go and script this script 8-)
So you could have
Hi
you suck
with out going to font changing the size then back again ;)


RE: [request] size font by duck! on 12-17-2006 at 01:18 PM

*bump
                      :cheesy:


RE: [request] size font by Jimbo on 12-17-2006 at 01:21 PM

quote:
Originally posted by noodle!
*bump
                      :cheesy:
I'm trying to do this but atm i cant find any way of changing the font size :s.
Ive worked out how to do colour, lol
RE: [request] size font by NanaFreak on 12-17-2006 at 01:24 PM

ok im am quite sure that this is impossible due to how WLM deals with the size of your text...

i could be using lets say size 10 and you could be using size 20 but when you send a message to me i get it in size 10

can you see what im saying here?


RE: [request] size font by Jimbo on 12-17-2006 at 01:37 PM

quote:
Originally posted by NanaFreak
ok im am quite sure that this is impossible due to how WLM deals with the size of your text...

i could be using lets say size 10 and you could be using size 20 but when you send a message to me i get it in size 10

can you see what im saying here?
Yes, very true as when you change the font size to say 14, the whole conversation's font size changes to 14, not just your font size
RE: [request] size font by duck! on 12-17-2006 at 01:42 PM

quote:
Originally posted by Jimbodude
quote:
Originally posted by NanaFreak
ok im am quite sure that this is impossible due to how WLM deals with the size of your text...

i could be using lets say size 10 and you could be using size 20 but when you send a message to me i get it in size 10

can you see what im saying here?
Yes, very true as when you change the font size to say 14, the whole conversation's font size changes to 14, not just your font size
Well that sucks :sad:
I was looking foward to the script
In a way you could still do this but with colors like:
Hi
Like this
But theres no point as you just have to use the code or use nanafreaks gradiant script
[off-topic]Cant wait for your new gradiant script, nanafreak[/off-topic]
RE: [request] size font by NanaFreak on 12-17-2006 at 01:44 PM

quote:
Originally posted by noodle!
quote:
Originally posted by Jimbodude
quote:
Originally posted by NanaFreak
ok im am quite sure that this is impossible due to how WLM deals with the size of your text...

i could be using lets say size 10 and you could be using size 20 but when you send a message to me i get it in size 10

can you see what im saying here?
Yes, very true as when you change the font size to say 14, the whole conversation's font size changes to 14, not just your font size
Well that sucks :sad:
I was looking foward to the script
In a way you could still do this but with colors like:
Hi
Like this
But theres no point as you just have to use the code or use nanafreaks gradiant script
[off-topic]Cant wait for your new gradiant script, nanafreak[/off-topic]
yea you can use the colours and use like a light gray but that its still kinda dodgy

[off-topic]
almost time to release it too noodle! ;)
[/off-topic]
RE: [request] size font by Jimbo on 12-17-2006 at 01:49 PM

quote:
Originally posted by noodle!
quote:
Originally posted by Jimbodude
quote:
Originally posted by NanaFreak
ok im am quite sure that this is impossible due to how WLM deals with the size of your text...

i could be using lets say size 10 and you could be using size 20 but when you send a message to me i get it in size 10

can you see what im saying here?
Yes, very true as when you change the font size to say 14, the whole conversation's font size changes to 14, not just your font size
Well that sucks :sad:
I was looking foward to the script
In a way you could still do this but with colors like:
Hi
Like this
But theres no point as you just have to use the code or use nanafreaks gradiant script
[off-topic]Cant wait for your new gradiant script, nanafreak[/off-topic]
Markee made me this script for font colours if you want.
Use like /colour=blue then your text
code:


function OnEvent_ChatWndSendMessage(ChatWnd, sMessage) {

if(sMessage.charAt(0) == "/"){
return parseCommands(sMessage,ChatWnd);
}
}
function parseCommands(sMessage,iOriginWnd){

if (sMessage.charAt(0) == '/'){
if(sMessage.charAt(1) == '/'){
return sMessage;
} else {
var firstSpace = sMessage.search(' ');
if(firstSpace == -1){
var command = sMessage.toLowerCase().substr(1);
var params = '';
} else {
var command = sMessage.toLowerCase().substr(1, firstSpace-1);
var params = sMessage.substr(firstSpace+1);
}
if(params != "") { Debug.Trace("The command \"" + command + "\" with the parameters \"" + params + "\" has been parsed."); }
else { Debug.Trace("The command \"" + command + "\" has been parsed."); }
switch(command) {
case 'colour=red':
iOriginWnd.SendMessage("4"+params);
sMessage = '';
break;
case 'colour=blue':
iOriginWnd.SendMessage("12"+params);
sMessage = '';
break;
case 'colour=green':
iOriginWnd.SendMessage("50"+params);
sMessage = '';
break;
case 'colour=yellow':
iOriginWnd.SendMessage("8"+params);
sMessage = '';
break;
case 'colour=purple':
iOriginWnd.SendMessage("6"+params);
sMessage = '';
break;
case 'colour=pink':
iOriginWnd.SendMessage("13"+params);
sMessage = '';
break;
case 'colour=orange':
iOriginWnd.SendMessage("36"+params);
sMessage = '';
break;
case 'colour=lilac':
iOriginWnd.SendMessage("21"+params);
sMessage = '';
break;
default:
}
}
}
return sMessage;
}
function OnGetScriptCommands()
{
var commands = '<ScriptCommands>';
commands+='<Command>';
commands+='<Name>colour=red</Name>';
commands+='<Description>'+"Change colour of text to red"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=blue</Name>';
commands+='<Description>'+"Change colour of text to blue"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=green</Name>';
commands+='<Description>'+"Change colour of text to green"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=yellow</Name>';
commands+='<Description>'+"Change colour of text to yellow"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=orange</Name>';
commands+='<Description>'+"Change colour of text to orange"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=pink</Name>';
commands+='<Description>'+"Change colour of text to pink"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=purple</Name>';
commands+='<Description>'+"Change colour of text to purple"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>colour=lilac</Name>';
commands+='<Description>'+"Change colour of text to lilac"+'</Description>';
commands+='<Parameters>Message</Parameters>';
commands+='</Command>';
commands+='</ScriptCommands>';
return commands;
}



RE: [request] size font by Oxy on 12-17-2006 at 02:45 PM

Shame. Would have been a nice idea.

quote:
Originally posted by noodle!
*bump
only bump after more than 24hrs please kthx.