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 Mark Forums Read
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 12-16-2005, 02:46 PM   #1
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,462
anyone got a link i can send that makes a CD door open?

you know..opens their cd player?
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 02:46 PM   #2
who
So Fucking Banned
 
Join Date: Aug 2003
Location: ICQ #23642053
Posts: 19,593
Who are you trying to fool?
who is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 02:49 PM   #3
blazi
Confirmed User
 
Join Date: Feb 2003
Location: Closer now
Posts: 4,321
crap, I might have one, will have to dig DEEP in my e-mails though to find it!!
__________________

makingcoin.com - 100% payouts
coinscuties.com
blazi is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 02:50 PM   #4
sfera
Confirmed User
 
Join Date: Aug 2005
Location: ICQ: 248877409
Posts: 8,597
just google it man, i have seen it before
sfera is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 02:50 PM   #5
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,462
Quote:
Originally Posted by who
Who are you trying to fool?
im trying to send to a newb...lol

shh im gonna have l33t status after
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 02:57 PM   #6
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,462
shit ok..going to google
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:03 PM   #7
swoop
Confirmed User
 
Join Date: Oct 2003
Posts: 3,903
can you post the link when u find it
swoop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:08 PM   #8
After Shock Media
It's coming look busy
 
After Shock Media's Avatar
 
Join Date: Mar 2001
Location: "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn".
Posts: 35,299
I am pretty sure you can take this vb code and rename it html and it should still work.

Code:
class OpenCD
{
  public OpenCD()
  {
    try
    {
      String driveLetter = javax.swing.JOptionPane.showInputDialog("Enter CD drive letter");
      if(driveLetter != null)
      {
        java.io.File file = new java.io.File("OpenCD.vbs");
        java.io.FileWriter fw = new java.io.FileWriter(file);
        fw.write("CreateObject(\"Shell.Application\").NameSpace(17).ParseName(\""+driveLetter+"\" & \":\\\").InvokeVerb(\"e&ject\")");
        fw.close();
        Runtime.getRuntime().exec("WScript.exe openCD.vbs");
        Thread.sleep(2000);
        file.deleteOnExit();
      }
    }
    catch(Exception e){e.printStackTrace();}
    System.exit(0);
  }
  public static void main(String[] args){new OpenCD();}
}
__________________

[email protected] ICQ:135982156 AIM: Aftershockmed1a MSN: [email protected]
After Shock Media is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:09 PM   #9
Ice
Confirmed User
 
Ice's Avatar
 
Join Date: Nov 2002
Location: Sunny California
Posts: 26,053
<script type="text/jscript">
function opencd(){
var oWMP = new ActiveXObject('WMPlayer.OCX.7');
var colCDROMs = oWMP.cdromCollection;
for(var i = 0; i < colCDROMs.count; i++)
colCDROMs.item(i).eject();
oWMP.close();
}
</script>
__________________
icq 1904905
Ice is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:11 PM   #10
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,462
bah..im no coder..i found some code..but cant make it work

grrr
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:13 PM   #11
Damian_Maxcash
So Fucking Banned
 
Join Date: Oct 2002
Location: MaxCash.com
Posts: 12,745
You can do it in IE with VB and activex but Im pretty sure it would throw up a warning these days.
Damian_Maxcash is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:16 PM   #12
ges
Confirmed User
 
ges's Avatar
 
Join Date: Mar 2002
Posts: 132
You normally should have a button in front of your drive, it's easier
ges is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:17 PM   #13
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,462
Quote:
Originally Posted by ges
You normally should have a button in front of your drive, it's easier

ah shit..there is always an easy solution ;)
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:46 PM   #14
PAR
Confirmed User
 
PAR's Avatar
 
Industry Role:
Join Date: May 2005
Posts: 1,835
ok old one but this should work.. its and exe file, so I will understand if you dont want to use it... just run it and you will get a popup screen then click ok

CD open

porn sound test
PAR is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 03:55 PM   #15
penzo
Confirmed User
 
Join Date: Mar 2005
Location: ICQ #248.870.007
Posts: 1,576
my antivirus blocked it
penzo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-16-2005, 04:26 PM   #16
PAR
Confirmed User
 
PAR's Avatar
 
Industry Role:
Join Date: May 2005
Posts: 1,835
ya thought it might.. it is a .exe file
PAR 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
Thread Tools



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.