Shoutbox

Colour Fade plugin - 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)
+----- Forum: Plug-Ins (/forumdisplay.php?fid=28)
+------ Thread: Colour Fade plugin (/showthread.php?tid=12219)

Colour Fade plugin by Finn on 07-04-2003 at 07:35 AM

After playing with the plugin support for a little while i knocked this little thing up for anyone who is interested

there is no installer for it, just unzip to your plugins folder and restart plus

all it does is display text with a colour gradient, of course whoever your sending the text to must have msn plus for it to work (who doesnt?)


usage is

/xfade <colour> <colour> <text that you want coloured>

currently the colours can only be specified in hexadecimal in RRGGBB format

for example

/xfade FF0000 00FF00 some text

will fade from red to green

some other colours in hex :-

FF0000 = bright red
00FF00 = bright green
0000FF = bright blue
000000 = black
FFFFFF = white
7f7f7f = grey
FFFF00 = yellow
FF00FF = purple
00FFFF = cyan




RE: Colour Fade plugin by nus on 07-04-2003 at 07:39 AM

it seems a good plug-in
i can't test now cuz i'm at university at the xp computer and it doesn't let my install or unistall msgplus :fire:

when i go home i will download and test it a lot :D


EDIT:i test it, and i'm agree with Patchou, you can do an option:
/xfade random "text"

great job


RE: Colour Fade plugin by Patchou on 07-04-2003 at 07:47 AM

cool! I wanted that for myself! thanks :)

It works well, however, you should consider doing stuff like random fade because I dont want to specify an hexa color everytime :)


RE: Colour Fade plugin by Bamboe on 07-04-2003 at 11:12 AM

can you give me the source code???


RE: Colour Fade plugin by Tandy on 07-04-2003 at 11:15 AM

HEY NICE WORK FINN

*even patchou likes it (YOUR IN)

nice work


RE: Colour Fade plugin by Finn on 07-04-2003 at 11:32 AM

hey thanks guys

the random thingy is on its way (anything for msn plus creator! ;) ) and also adding being able to specify colours as "red" "green" etc

cant update until i get home from work tonight and can properly test it though


RE: Colour Fade plugin by Burning Bob on 07-04-2003 at 12:15 PM

You really made a good plugin.
This thing is going to be popular.
I hope you don't mind that I put it on my site???
:D:d:d:d:d:d:d:d


RE: RE: Colour Fade plugin by Burning Bob on 07-04-2003 at 12:17 PM

quote:
Originally posted by Bamboe
can you give me the source code???


Are you crazy Bamboe!!!
The guy made a good plugin he's not giving away his source code!
RE: Colour Fade plugin by Misterjad on 07-04-2003 at 12:19 PM

contact me please finn


RE: RE: RE: Colour Fade plugin by Misterjad on 07-04-2003 at 12:21 PM

quote:
Originally posted by Burning Bob
Are you crazy Bamboe!!!
The guy made a good plugin he's not giving away his source code!


Hum, and linux isnt a good prog ?

ask yourself why linux is so powerfull ?....

btw, open-source progs are not as famous as closed ones, but they are often greater ...
RE: Colour Fade plugin by musicalmidget on 07-04-2003 at 12:36 PM

It looks great!  I've downloaded and unzipped it...I just need someone to come online now so as I can try it. :P


RE: Colour Fade plugin by Finn on 07-04-2003 at 12:37 PM

seeing as people seem to want the source and it only took like 10 mins to do, here is the code for the fade function i did, its not great, its very quick and nasty but for anyone who wants it...

oh and it will also go beyond maxtofill by a small amount of letters (which i get around by simply setting maxtofill to be well under the maximum msn plus limit (but still greater than the actual network send limit)

the rest of the plugin is just parameter parsing

void FillColourFade(char *sResult, int maxtofill, int colour1, int colour2, char *text)
{
    int numlets = strlen(text)-1;
    float r1,g1,b1;
    float r2,g2,b2;
    float rstep, gstep, bstep;
    int letsdone = 0;
    char buf[5];

    r1 = (float)((colour1&0xff0000)>>16);
    g1 = (float)((colour1&0x00ff00)>>8);
    b1 = (float)(colour1&0x0000ff);
    r2 = (float)((colour2&0xff0000)>>16);
    g2 = (float)((colour2&0x00ff00)>>8);
    b2 = (float)(colour2&0x0000ff);

    rstep = (r2-r1)/(float)(numlets);
    gstep = (g2-g1)/(float)(numlets);
    bstep = (b2-b1)/(float)(numlets);

    while (*text && maxtofill > 0)
    {
        *(sResult++) = 3;
        maxtofill--;
        *(sResult++) = '(';
        maxtofill--;

        sprintf(buf, "%03d",(int)r1);
        strcpy(sResult, buf);
        sResult += strlen(buf);
        maxtofill -= strlen(buf);

        *(sResult++) = ',';

        sprintf(buf, "%03d",(int)g1);
        strcpy(sResult, buf);
        sResult += strlen(buf);
        maxtofill -= strlen(buf);

        *(sResult++) = ',';

        sprintf(buf, "%03d",(int)b1);
        strcpy(sResult, buf);
        sResult += strlen(buf);
        maxtofill -= strlen(buf);

        *(sResult++) = ')';
        maxtofill--;

        *(sResult++) = *(text++);
        maxtofill--;

        r1 += rstep;
        g1 += gstep;
        b1 += bstep;
    }
}



RE: Colour Fade plugin by Misterjad on 07-04-2003 at 12:59 PM

thx a lot finn ;)

musicalmidget> you can send an IM to an unexistant person :
Actions>send an IM (first one)>Others
write down an adress like qdf@fd.sdq and it'll work ;)


RE: RE: Colour Fade plugin by Finn on 07-04-2003 at 01:12 PM

quote:
Originally posted by Burning Bob
You really made a good plugin.
This thing is going to be popular.
I hope you don't mind that I put it on my site???
:D:d:d:d:d:d:d:d


no problem, but i should be updating it tonight so might want to wait until then
RE: Colour Fade plugin by Bamboe on 07-04-2003 at 02:06 PM

could you pleas give me the whole souce code, becaus i want to try to make a plug in but I have no idea how to start (I don't know how to make a dll in borland C++ 6)

tnx


RE: RE: RE: Colour Fade plugin by Burning Bob on 07-04-2003 at 02:15 PM

quote:
Originally posted by Finn
no problem, but i should be updating it tonight so might want to wait until then


I've already got it online but i'll update it when you're ready
RE: RE: Colour Fade plugin by Finn on 07-04-2003 at 02:25 PM

quote:
Originally posted by Bamboe
could you pleas give me the whole souce code, becaus i want to try to make a plug in but I have no idea how to start (I don't know how to make a dll in borland C++ 6)

tnx


download the msn plus plugin framework that patchou has released, as that has everything you need and its what i used as a basis

no idea about creating a DLL in borland C++ 6 as i simply loaded the project patchou provided and had VS .NET convert it to its format and it worked straight outta the zip
RE: Colour Fade plugin by musicalmidget on 07-04-2003 at 02:55 PM

I've just tried it.  It's great!

I agree with Patchou however, some random fades would make it even better.  Maybe you could also have a small pop-up box like you get for ctrl + k in the conversation window?

Well done! (y)


RE: Colour Fade plugin by Boldylocks on 07-04-2003 at 02:56 PM

cool,thanks for this plug-in , Finn  :D


RE: Colour Fade plugin by Alpha Binary on 07-04-2003 at 03:07 PM

Cool, Even Patchou likes it! ^^'


RE: Colour Fade plugin by billywoods1 on 07-04-2003 at 04:38 PM

* billywoods1 exempts himself from commenting about the yet again stolen idea :blah:

Patchou, random fade is very difficult, it never looks good... there are more dark colours than light colours.


RE: RE: Colour Fade plugin by Finn on 07-04-2003 at 04:53 PM

quote:
Originally posted by billywoods1
* billywoods1 exempts himself from commenting about the yet again stolen idea :blah:


Patchou, random fade is very difficult, it never looks good... there are more dark colours than light colours.


stolen idea?

actually i did a little vb proggy a few years ago for vbb message boards that did the same thing and when i saw the plugin support i thought i'd do the same thing

all the code is mine, so care to tell me who i have stolen anything from ?
RE: Colour Fade plugin by billywoods1 on 07-04-2003 at 07:31 PM

Read that again.

Stolen IDEA.

I've been developing Gradier for ages now and about half this board would testify for that. :P

Edit: and anyway, I had a VBulletin board admin asking if he could use my gradient code which I have on my forum... so it sounds suspiciously to me like they DON'T have it...


RE: Colour Fade plugin by Misterjad on 07-04-2003 at 07:41 PM

never mind, i dont think he heard from the gradier
...


RE: Colour Fade plugin by Finn on 07-04-2003 at 08:20 PM

I didnt say it was server side for VBB, it was a small VB program that you entered text into, chose colours, and then could copy and paste into a message

it was never fully released but only distributed to a select few people.

I had never heard of gradier until Misterjad sent me a PM asking to join the team, I politefully declined and gave him my reasons, and partially on his request i pasted the source here.

also as far as i understand it gradier is a seperate program, and not a plugin, if your trying to claim that you came up with the idea for text with colour gradients then i would have to disgaree as they have been around at least since the early text mode BBS's that i used to dial up with my modem to..

anyway i dont see why there should be any arguments here, i simply created a little plugin for my own use and then posted it here (i joined yesterday and had never been on here before then) just in case it may be of use to anyone else


New version by Finn on 07-04-2003 at 08:29 PM

As requested for :- a new version

this will probably be a final version unless someone gives me a reason to continue work on it, or requests an interesting to implement feature

new features

when specifying a colour code, you can use a ? mark to replace that digit with a random value

eg

/xfade ??0000 00??00 some text

will select a random red colour and fade to a random blue colour

you can also replace a colour with "*" as a shortcut to doing ?????? eg

/xfade * 000000 some text

will fade between a random colour and black

a new alias /xrfade some text is simply a shortcut to /xfade * * some text (eg it always fades between 2 random colours)


also instead of typing a colour in hex the following colours are now supported as words

red
black
blue
green
white
grey
cyan
yellow
purple

eg you can do

/xfade red green some text


RE: Colour Fade plugin by Finn on 07-04-2003 at 08:31 PM

helpful if i include the zip... :$

Edit :updated the zip to include a readme on how to use it for anyone who wants to stick it on their website (seeing as several people have asked to)

Edit2: latest version now updated in first post..


RE: Colour Fade plugin by saVTRonic on 07-04-2003 at 08:33 PM

thanks :)


RE: New version by Re-Mi on 07-04-2003 at 08:59 PM

quote:
Originally posted by Finn
As requested for :- a new version

this will probably be a final version unless someone gives me a reason to continue work on it, or requests an interesting to implement feature




well maybe ... you could look if you could get the emoticons to work on it, it doesn't seem to work if i use /xfade ( i like it :D)
example:

x/fade red blue testing this plugin :D doesn't show the emoticon but  : D

RE: RE: New version by Finn on 07-04-2003 at 09:02 PM

quote:
Originally posted by Simple me
quote:
Originally posted by Finn
As requested for :- a new version

this will probably be a final version unless someone gives me a reason to continue work on it, or requests an interesting to implement feature




well maybe ... you could look if you could get the emoticons to work on it, it doesn't seem to work if i use /xfade ( i like it :D)
example:

x/fade red blue testing this plugin :D doesn't show the emoticon but  : D



yup i know about this one, the problem is it inserts a colour code between each letter of the smiley, so stopping the smiley displaying, they only way i could detect this is scanning for all the default smileys and not inserting colour codes in them..

but then it wouldnt work for user defined smileys either which i have no way of scanning for so that wouldnt work... its not a major restriction anyway i think..
RE: Colour Fade plugin by BooGhost on 07-05-2003 at 03:59 AM

how about using like brackets, so everything between  the brackest would NOT have the fade color.... of course the brackets should desappear. that way to use a emoticon you should have to put [:D] instead of :D


RE: Colour Fade plugin by Tandy on 07-05-2003 at 05:00 AM

how bout making like a turn off/on button so you dont have to type the command (Y) so i can use ai all the time


RE: Colour Fade plugin by BooGhost on 07-05-2003 at 05:04 AM

wow that'd be AWESOME


RE: Colour Fade plugin by scapeg0at on 07-05-2003 at 05:26 AM

quote:
Originally posted by BooGhost
how about using like brackets, so everything between  the brackest would have the fade color.... of course the brackets should desappear. that way to use a emoticon you should have to put [:D] instead of :D


What if everything inside [ ] or ( ) wouldn't have colour fade?

Or a command to stop colour fade?

eg. /xfade red blue I Can Do A /xend :) /xfade red blue Smiley
RE: RE: Colour Fade plugin by Misterjad on 07-05-2003 at 07:26 AM

quote:
Originally posted by Tandy
how bout making like a turn off/on button so you dont have to type the command (Y) so i can use ai all the time


hum, i imagine that would be a problem ... for the msn servers, and for you as well... the char limit is 1100 (thx patchou) and a fade fucntion adds you 8 chars by letter typed ....

these lines i wrote made 181 chars.. *8 = 1448 it would be too much and the message wouldnt be dispayed completly ....
imagine if each plus user (4 million ?) used the max char limit
lets calculate for 1 million person at the same moment
1 000 000 * 1 100 = 1 100 000 000 chars, and as a char is a byte it would make 1,1 Gb .... i dont think msn does have this bandwith ....

anyway, a plugin as to work with /x... command, nope?
RE: Colour Fade plugin by Misterjad on 07-05-2003 at 07:30 AM

as yr work is over finn
.... could we have the complete sources ??? :$


RE: Colour Fade plugin by Misterjad on 07-05-2003 at 07:41 AM

btw, i compiled 3 months ago a gradier (my version for fade :p) with the ability of making for BBCode & html code ... here it is ;)


RE: Colour Fade plugin by fluffy_lobster on 07-05-2003 at 09:07 AM

Don't sweat, billy, he may have had the same idea as you but Gradier still has the upper hand in many respects:
- Colour selection is a lot easier
- Background colours can be specified too
- Colours are converted back to hex so more can be fitted in

Xfade is a nice bit of coding though... If only I knew how to access the api in vb I'd convert Gradier.
Oh and by the way if no text is specified, xfade makes a gradient out of ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍýýýýÝÝ instead...


RE: RE: Colour Fade plugin by Finn on 07-05-2003 at 09:14 AM

quote:
Originally posted by Misterjad
as yr work is over finn
.... could we have the complete sources ??? :$



RE: Colour Fade plugin by opdude on 07-05-2003 at 10:21 AM

hey this is a wicked plugin im using it all the time now. i think that the on and off command would be good


RE: Colour Fade plugin by Finn on 07-05-2003 at 12:07 PM

okay one more version :o

i cleaned up the colour fade bit, to now specify the colours it outputs in hex, rather than decimal (i admit i got how to do this from gradier, which i must say has a rather nifty colour preview screen and allows you to graphically pick colours if you dont mind then copying and pasting to msn) - what that basically means is the colour-codes are shorter so you can get more text in

also added a new alias

/xnfade <num colours> <colour> ... <colour> for doing multiple fade within the same text

eg

/xnfade 8 red green blue purple yellow cyan blue red some text

also, if you want to disable the fade mid text type a "ctrl-k" character (if it works you should see the plus colour menu come up) and another one to re-enable it, this is mostly useful for putting smileys inside a colour fade, for example

/xrfade this is a piece of text <ctrl-k>:D<ctrl-k> with a smiley inside a colour fade




RE: Colour Fade plugin by cool_myll on 07-05-2003 at 01:49 PM

very good. If i have and my friend dont will he see it? if he has plus


RE: RE: Colour Fade plugin by Finn on 07-05-2003 at 02:12 PM

quote:
Originally posted by cool_myll
very good. If i have and my friend dont will he see it? if he has plus


yes

to see it, you only need plus
RE: Colour Fade plugin by nus on 07-05-2003 at 02:40 PM

i'm sorry i did'nt really change the file

it works fine !!!!!!





RE: RE: Colour Fade plugin by Finn on 07-05-2003 at 02:58 PM

quote:
Originally posted by nus
i've got the last version and it doesn't work fine :(


whats wrong with it ?
RE: Colour Fade plugin by Burning Bob on 07-05-2003 at 03:14 PM

_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|Great update!!!                                                         |
|You really need to make more of this shit.                |
|( (I)Something like it but for backgroundcolours(I) ) |
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-


RE: RE: RE: Colour Fade plugin by Burning Bob on 07-05-2003 at 03:23 PM

quote:
Originally posted by nus
i've got the last version and it doesn't work fine :(


Sure it's the plugin ???
Maybe it's something else ???
Or it can be a bug.
RE: Colour Fade plugin by billywoods1 on 07-05-2003 at 04:54 PM

Lobster (and anyone else interested):

I do agree that it's nothing to make enemies over, but it's not the first time my idea has been stolen.

* billywoods1 shoots a dodgy look towards BetterName (although admittedly Ginge did ask us beforehand), NickEXP and various other addons that didn't quite make it...

I just get a tiny bit annoyed when someone takes my idea. Comparably, if some people stole all of Patchou's ideas and future suggestions and made a free, better MSN addon, I think he'd be a bit more than slightly p***ed off. Even if they didn't steal them and they thought them up themselves, Patchou would still be annoyed. So would the rest of this forum.

The fact that the idea was stolen doesn't bother me too much until I realise how popular Gradier really is. If you don't believe me, look at the Nedstat on my page... just the English version... it has about 150000+ views. (The fact that it's gone down noticeably from 4500/day to a few hundred doesn't matter! ;)) There's no way a Plus! user could have NOT seen it if they're on the forums. I post all the time, and my avatar caption/signature are nearly always something to do with Gradier, plus there are loads of posts about them (Gradier, BetterName, NickEXP) if you go a few weeks back. And it's on mess.be and msgplus.net.

The only reason he's beaten me to it is that he knows C++ and I don't. So forgive me if I want to strangle people like that with a coat hanger, but maybe you can understand why it annoys me so much. :P


RE: Colour Fade plugin by leito on 07-05-2003 at 08:10 PM

Finn you rule man!! hahaha your plugin is really good, congratulations!


RE: Colour Fade plugin by n_b on 07-05-2003 at 08:31 PM

Respect 2 Finn, you're the man :)
really cool stuff what you made here, keep up tha good work ;)


RE: Colour Fade plugin by nus on 07-05-2003 at 08:57 PM

Hey Patchou:
you see how popular is the /xfade plugin???
you will add it to msgplus!, no???? :D
it's great


billywoods1:

I don't think that nobody's has stolen your idea, he's only got the same idea. the gradier is something that so many people was waiting for, and, naturly, one of them (finn) do a plugin. And C++ is so easy, you can learn it so fast ;)


RE: Colour Fade plugin by Liquid on 07-05-2003 at 10:25 PM

This is a cool plugin thx (Y)


RE: Colour Fade plugin by bkwoodroff on 07-06-2003 at 01:03 AM

this is a great plugin, but i have an idea for the char limit. the only downside is the plugin would be required to see it.
i've never programmed for messenger, but would it be possible to send the /xfade command and hex codes as hidden chars to the other user, then have then interpretted client-side as they're received? if you understand what i mean? it would be less text sent, and then its just a matter of the plugin recognising the hidden chars and creating the fade.


RE: Colour Fade plugin by leito on 07-06-2003 at 01:05 AM

but in that case, both Messengers, would need to have the plugin, and thats the magic (*) of this one!


RE: Colour Fade plugin by bkwoodroff on 07-06-2003 at 01:07 AM

thats true, but they both need plus anyways correct? and i mean, patchou likes the plugin already...maybe in the next version it could be released with plus and then you wouldn't have to worry about the independant plugin.


RE: Colour Fade plugin by leito on 07-06-2003 at 01:15 AM

that could be really cool! Patchou just have to use some ideas of millions of people (that could make their own plugins) to improve Plus! and I´m sure Finn is not against that!


RE: Colour Fade plugin by bkwoodroff on 07-06-2003 at 01:18 AM

exactly, and he doesn't even have to code it into plus, he can make it a "plugin pack" and the automatic installation installs it, but the custom installation has the option. That way he can list it as a 3rd party plugin pack, and still not be liable for anything going wrong. Because if he coded it into plus, i'm sure he would end up redoing everything, and we don't want plugins to make his life hell.


RE: Colour Fade plugin by 3vilboy on 07-06-2003 at 10:23 AM

I've got a bit of a problem with the plugin. It works fine at my msn but when I send the .dll file to someone else and tell them what to do it doesn't work.
It only works at my cousin's msn but by two other people it doesn't :S??


RE: RE: Colour Fade plugin by billywoods1 on 07-06-2003 at 11:06 AM

quote:
Originally posted by nus
I don't think that nobody's has stolen your idea, he's only got the same idea. the gradier is something that so many people was waiting for, and, naturly, one of them (finn) do a plugin. And C++ is so easy, you can learn it so fast ;)


People really need to start learning to read posts properly.

At LEAST 4 people/groups have stolen my idea now. Only one had the small amount of courtesy required to TELL ME he'd stolen my idea. So I don't mind that. In case you're interested, it's Ginge's BetterName - I'm all for that, because he was honest.

But in the other cases, I will fight to make them at least realise that it was my idea. I know enough C++ to make Gradier, but I don't have VC++. Not my fault that he's made this before my language is even released.

And I'm not the only one. In case you haven't noticed, MisterJAD is a Gradier developer too - he just took a more subtle approach to it. I can't see why you people have a problem with this. Gradier's been out for 8 and a half months, and BetterName/NickEXP followed closely behind. I don't see how Finn couldn't have seen at least one of these programs. Everything on his plugin is in Gradier and, apart from the random fade, is in BetterName and NickEXP too. I don't mean to sound like a complete arsehole but I do get a bit annoyed. Don't take it the wrong way.
RE: RE: Colour Fade plugin by nus on 07-06-2003 at 11:13 AM

quote:
Originally posted by 3vilboy
I've got a bit of a problem with the plugin. It works fine at my msn but when I send the .dll file to someone else and tell them what to do it doesn't work.
It only works at my cousin's msn but by two other people it doesn't :S??


are you sure that the other ppl have the last version of plus! ????


billywoods1
sorry but i've have read your post, but with nobody i mean finn. i'm sorry, sometimes my english is so poor and it makes that you couldn't understand me. sorry.
RE: Colour Fade plugin by Burning Bob on 07-06-2003 at 11:28 AM

What happend with this tread???

@ start it was a cool tread because off xfade
now it's getting more boring with the day!

___________________________________________________
Just download the newest version of Plus! and then download this plugin. If you have a problem it's yours and not Finns!!!
___________________________________________________
:fire:  :fire:  :fire:  :fire:  :fire:  :fire:  :fire:  :fire: :fire: :fire:


RE: Colour Fade plugin by Hypnolinth on 07-06-2003 at 11:30 AM

wouldn't it be easier just to make free fader 9 work with Messenger plus! ? i 4get the place where u can download it nut i'm sure it'll be in google. Its by Alistair D Baillie, if thats any use.
nice work Finn, looks wicked.


RE: RE: RE: Colour Fade plugin by Finn on 07-06-2003 at 01:38 PM

quote:
Originally posted by billywoods1
I don't see how Finn couldn't have seen at least one of these programs. Everything on his plugin is in Gradier and, apart from the random fade, is in BetterName and NickEXP too. I don't mean to sound like a complete arsehole but I do get a bit annoyed. Don't take it the wrong way.



Before i created this plugin, i had never been on this forum, look at the date my account was created if you dont beleive me, i was simply waiting for the new plus to come out, i saw that on mess.be and downloaded it, i then saw the plugin download on mess.be and downloaded that and wrote xfade in about an hour, AFTER i had written it i found the link to here in the readme inside the plugin download, so i came here and thanked patchou for adding the plugin support, i then posted  xfade here on the small chance someone else might find it useful. I had never even heard of gradier until someone sent me a PM asking me to join your team, at the point i went to the link and found out what it was.

Funnily enough the world doesnt revolve around you and there are some people on the net who havent heard of your program...


If you think you can do better than xfade (i'm sure you can) then go ahead and do it, i am not stopping you hell i even posted the source here if you want a template to work from, but seeing as i have done nothing wrong i would kindly ask you to stop bitching to me because someone else happened to have a similar idea to you.

Seeing as xfade is also completely free and without strings attactched what would i have had to gain from "stealing" your idea ?
RE: Colour Fade plugin by Predatory Kangaroo on 07-06-2003 at 03:19 PM

Alright, i've been following this thread for since the start and i only have one thing to say.
Maybe Finn did see Gradier or some other program like it, but doesn't remember
On the other hand, maybe he didn't.  The point is that either way it doesn't really matter because, like you say, most people on this forum know about gradier, so they'll know that it's been done before (although not in this way) and know that the Gradier team can do it as well as Finn.
Now that i've done the totally impartial bit i'll say this:  If an idea isn't copyrighted, can it truly be stolen?
Someone thought of putting a timer in an oven, now hundreds of ovens have timers, yet none of them are stealing ideas :)

EDIT: And since it's open source, the boon of programming, I don't really see what harm is being done, no matter how you think about it.  Gradier was the original and has been reborn in a new form and a different name, from a different family, yet the original still continues to grow and flourish.


RE: RE: Colour Fade plugin by BooGhost on 07-06-2003 at 05:52 PM

quote:
Originally posted by 3vilboy
I've got a bit of a problem with the plugin. It works fine at my msn but when I send the .dll file to someone else and tell them what to do it doesn't work.
It only works at my cousin's msn but by two other people it doesn't :S??

make sure they close and then reopne the MsgPlus! they, easyiest way is restarting their pcs :P
RE: Colour Fade plugin by leito on 07-06-2003 at 07:02 PM

FINN do you have any other projects??


RE: Colour Fade plugin by loconet on 07-06-2003 at 08:03 PM

Would it be possible to color the text on the receiving end instead of before you send the text? sending the plugin id along with the wanted colors ;) .


RE: RE: Colour Fade plugin by Finn on 07-06-2003 at 08:05 PM

quote:
Originally posted by loconet
Would it be possible to color the text on the receiving end instead of before you send the text? sending the plugin id along with the wanted colors ;) .



the problem with that is then the receiver needs the plugin..
RE: RE: RE: Colour Fade plugin by loconet on 07-06-2003 at 08:07 PM

quote:
Originally posted by Finn
quote:
Originally posted by loconet
Would it be possible to color the text on the receiving end instead of before you send the text? sending the plugin id along with the wanted colors ;) .



the problem with that is then the receiver needs the plugin..


Very true, but blah! everyone should have it , hehe.

RE: RE: Colour Fade plugin by Swaptor on 07-07-2003 at 09:25 AM

quote:
Originally posted by Predatory Kangaroo
Alright, i've been following this thread for since the start and i only have one thing to say.
Maybe Finn did see Gradier or some other program like it, but doesn't remember
On the other hand, maybe he didn't.  The point is that either way it doesn't really matter because, like you say, most people on this forum know about gradier, so they'll know that it's been done before (although not in this way) and know that the Gradier team can do it as well as Finn.
Now that i've done the totally impartial bit i'll say this:  If an idea isn't copyrighted, can it truly be stolen?
Someone thought of putting a timer in an oven, now hundreds of ovens have timers, yet none of them are stealing ideas :)

EDIT: And since it's open source, the boon of programming, I don't really see what harm is being done, no matter how you think about it.  Gradier was the original and has been reborn in a new form and a different name, from a different family, yet the original still continues to grow and flourish.


* Swaptor agrees fully with Predatory Kangaroo
RE: Colour Fade plugin by kennetjuh on 07-08-2003 at 12:08 PM

i've got a suggestion for this pluggin. i really like the /xnfade but i always use it as a random. can't u make a random command for this like /xrnfade, so the only thing i have to type is the number of colors.

BTW this plugin rocks :P


RE: RE: Colour Fade plugin by Finn on 07-08-2003 at 06:03 PM

quote:
Originally posted by dannyres
error number 2:

when i type /xfade red blue testtesttesttest.... continuously untill you can type no more messenger just exits itself... i went into the messenger log thing and found this..

2003/07/08 12:26:37 - Entering CEditCtrlWnd::OnTextSend
2003/07/08 12:26:37 - Entering CEditCtrlWnd::OnTextSend - 1
2003/07/08 12:26:37 - Entering CEditCtrlWnd::OnTextSend - 2
c:patchou's documentsprogrammationmessengerplus2msgplusheditctrlwnd.cpp(980) : Assertion failed!
2003/07/08 12:26:37 - ERROR - CRT - 1 - (0) : Run-Time Check Failure #2 - Stack around the variable 'sCommand' was corrupted.
(0) : Run-Time Check Failure #2 - Stack around the variable 'sCommand' was corrupted.2003/07/08 12:26:52 -
2003/07/08 12:26:52 - ************ Messenger has been started ************


dunno if that helps but thought i would post it anyway.  I think it is a problem with xfade trying to send to much text.

Dan

EDIT: sorry about the :O's.. i dont know how to ude code on this board.

EDIT #2: i got my friend to try this and he has the same problem.

EDIT #3: this only happens when you do a long word without spaces.. eg it wont crash if you type /xfade red blue test test test continuously.



you really are a bar-stewerd ;)

I need to sort out xfade for the new plugin format so will have a look at this at the same time
RE: Colour Fade plugin by Sypher on 07-08-2003 at 06:32 PM

Is it possible to 'protect' your msn so that you won't see the colors? They are irritating if other people use it :P


RE: Colour Fade plugin by Alucard2k1 on 12-13-2003 at 04:11 AM

I know this question may seem a bit beginner-ish since I am a beginner, but I have xFade downloaded and everything, trouble is, I have not a clue how to work it. Any help here :S?


RE: Colour Fade plugin by Tochjo on 12-13-2003 at 11:53 AM

quote:
Taken from the readme
usage is
     /xfade <colour> <colour> <text that you want coloured>

currently the colours can only be specified in hexadecimal in RRGGBB format, for example
     /xfade FF0000 00FF00 some text

will fade from red to green; some other colours in hex :-
FF0000 = bright red
00FF00 = bright green
0000FF = bright blue
000000 = black
FFFFFF = white
7f7f7f = grey
FFFF00 = yellow
FF00FF = purple
00FFFF = cyan

[...]
also instead of typing a colour in hex the following colours are now supported as words:
red
black
blue
green
white
grey
cyan
yellow
purple

eg you can do
     /xfade red green some text

[... - read everything in the readme attached]

RE: XFade plugin by CookieRevised on 04-23-2004 at 01:41 PM

I know this is an old thread, but someone asked about it, and it was a pain to sort it out, so here it is again (together with some "revamped" info about the plugin):



XFade version 0
This version, that you can download in the first post of this thread, is the oldest one and doesn't have a version number. It also doesn't have a menu item in the plugins menu in Messenger Plus!. (source available, see below)

XFade.dll
MD5 hash: 47ff10815d317ae04c4189ba6eb25c97
CRC-32: f40e33b0


XFade version 1.0
This version is the one that you can download in the official plugins database, it is version 1.0! and NOT 2.0 as it is stated there. It does have a menu item in the plugins menu in Messenger Plus!. The command /xrfade doesn't work though...

XFade.dll
MD5 hash: 5a201bf10f5e3cfe41189926cd85398e
CRC-32: 2a323d78


XFade version 1.01
This version, provided by xsRush in the thread "XFade - what version?", is the latest version and is a bugfix of 1.0. The command /xrfade is fixed in this version. The original archive didn't had a readme though, so I'll provide the same archive here, including a "revamped" readme... (see also below)

XFade.dll
MD5 hash: d88fc6a47038d68d9ae63a1719c693f7
CRC-32: ca52d630


XFade version 2.0
This version does not exist, it is in fact version 1.0, see "XFade version 1.0" for explaination...



How to install
1) Close MSN Messenger completely (right-click on its icon in your systemtray and choose "exit").
2) Run the XFade installer provided within the zipfile.
3) Restart MSN Messenger.
4) Read the instructions.

* The installer will extract xfade.dll and put it into your plugins folder, nothing more.

How to uninstall
1) Close MSN Messenger completely (right-click on its icon in your systemtray and choose "exit").
2) Delete the file xfade.dll in your plugins directory.
(the default directory is "\program files\messenger plus! 2\plugins" or "\program files\messenger plus! 3\plugins")
3) Restart MSN Messenger.

* Since the plugin is written in VC++, no registry keys need to be deleted.

Source code for version 0
The fade-function source can be viewed in the current thread in this post.
And the full source code is available in this post.



Latest version 1.01 (incl. instructions):