Delphi Template |
Author: |
Message: |
kasperl
New Member
Posts: 9
Joined: Jul 2003
|
RE: Delphi Template
i got it, is there a way for a script to only run after someone from the inside activates it, and someone from the outside triggered it?
|
|
07-07-2003 08:34 PM |
|
|
Whacko
Full Member
Posts: 209 Reputation: 1
40 / / –
Joined: Apr 2002
|
O.P. RE: Delphi Template
UPDATED FOR 2.20.48!!!!
I code in:
C
C++
Delphi
Visual Basic
Pascal
|
|
07-08-2003 10:57 AM |
|
|
kasperl
New Member
Posts: 9
Joined: Jul 2003
|
RE: Delphi Template
i'll learn Delphi first, before i start playing with this stuff more.
btw, is it possible for a plugin to write to the disk, and to recieve and send files?
|
|
07-08-2003 08:06 PM |
|
|
chris
Veteran Member
Posts: 1137 Reputation: 2
36 / / –
Joined: May 2003
|
RE: Delphi Template
What about 2.20.52?
|
|
09-01-2003 05:02 AM |
|
|
volkl
Senior Member
Haro
Posts: 641
– / / –
Joined: Jul 2003
|
|
09-01-2003 07:33 AM |
|
|
chris
Veteran Member
Posts: 1137 Reputation: 2
36 / / –
Joined: May 2003
|
RE: Delphi Template
i think its a programing language... i could be wrong but im pretty sure
|
|
09-01-2003 07:45 AM |
|
|
censu
New Member
Posts: 2
Joined: Sep 2003
|
RE: Delphi Template
Wow! Whacko, I love you, i really couldn't be assed doing the conversion myself! Cheers even more for open-sourceing it. I intend to re-write the program listed here:
http://www.joni.easynet.co.uk/myprogs_msn7727.html
This time, fully opensource, with better protection and less annoyance features.
Thanks again.
(oh yeah, the dowload is disabled right now, but will be up soon)
|
|
09-01-2003 02:47 PM |
|
|
censu
New Member
Posts: 2
Joined: Sep 2003
|
RE: Delphi Template
In response to Kasperl's question.
"is it possible for a plugin to write to the disk, and to recieve and send files?"
Yeah, a pluggin being a .dll file, is simply an .exe file... incapable of Launching itsself. Within a .dll, you can have most any aspect of an .exe , but of course, it mus be triggered in this instance by msgplus or another application sending commands and things to it, i.e. initialise().
Hope that helps
Censu
|
|
09-01-2003 02:51 PM |
|
|
g@rfield
New Member
Posts: 1
Joined: Sep 2003
|
RE: Delphi Template
I compiled your template (using Delphi 6), but the tag (!XTAG1) does not result in the text 'test', instead the tag just get shown in the message window. What am I doing wrong ?
I'm using MsgPlus 2.20.53 with MSN Messenger 6.0.0602
BTW the .dll you supplied in the zipfile doesn't work either.
|
|
09-10-2003 04:55 AM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: RE: Delphi Template
quote: Originally posted by censu
Wow! Whacko, I love you, i really couldn't be assed doing the conversion myself! Cheers even more for open-sourceing it. I intend to re-write the program listed here:
http://www.joni.easynet.co.uk/myprogs_msn7727.html
This time, fully opensource, with better protection and less annoyance features.
Thanks again.
(oh yeah, the dowload is disabled right now, but will be up soon)
if you created the website i suggest editing your no right click feature cuz i still got through it... use this instead (its what i use on my site for my boss in the states)
Stick this between </head> and <body>
code: <script language=JavaScript>
function clickIE4()
{
if (event.button==2)
{
return false;
}
}
function clickNS4
{
if (document.layers||document.getElementById&&!document.all)
{
if (e.which==2||e.which==3)
{
return false;
}
}
}
if (document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById)
{
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("return false")
</script>
|
|
09-15-2003 05:26 AM |
|
|
Pages: (3):
« First
«
1
[ 2 ]
3
»
Last »
|
|