TranceAddict Forums

TranceAddict Forums (www.tranceaddict.com/forums)
- Humour / Funny Stuff / Cool Web Sites
-- Look @ this cup holder...
Pages (4): « 1 2 [3] 4 »


Posted by bilange on Apr-02-2003 07:23:

Yeah, by the way it did work for me, i'm using WindowsXP with internet explorer.


Posted by BigDil on Apr-02-2003 10:34:

quote:
Originally posted by Magimaster
It's still not working for me


should I be happy or sad?


Rather happy, I guess.


Posted by Dwingo on Apr-02-2003 22:28:

quote:
Originally posted by BigDil
Rather happy, I guess.


What is everyone concerned about? It's not like your computer is being intruded. It's just that your browser executes a secure script it has recieved. No harm can be done by that. I'ld be rather sad if this script didn't work for me, because it would mean that my browser isn't as compatible as some others might be.

And it will definately not give anyone access to your harddrives or whatever. There are other, easier ways for that

By the way: someone wrote that this script must've been new or something. Well, it isn't. I recieved it for the first time over two years ago.


Posted by daydreamer on Apr-02-2003 22:37:

quote:
Originally posted by BeatFreak
Hey!! It also unzipped my pants!! Hey!!!



you to. i thought it was only me.


Posted by Stanza on Apr-03-2003 13:01:

quote:
Originally posted by bilange
Why it doesnt work on everyone's computer?

Heres an idea:

First, it is VBscript. Who's behind vbscript? Microsoft. Heres a quote from some random webpage searched from google:



So it should only work for internet explorer.


Second, look at this line, this is a line from the source code of that web page:

Set oWMP = CreateObject("WMPlayer.OCX.7" )

I dont know vbscript at all, but I think this is a vbscript line that should work with recent "Windows Media player" versions only. This is only guessing, but I think it (opening CD's) does work with Windows XP by default, because it has a quite recent vesion (7 or 8, I dont know)

Want a proof? For those running Windows, try this: Click on start, then choose "Run...". Enter wmplayer and press on OK.

My guess:

- People that was able to run "wmplayer" should have their CD drives opened automaticly by this page
- People using internet explorer that which their CD drive DIDN'T open are using an older version of Windows, or simply witout the new Windows Media player (with the blue'ish skin and the weirdo visualisation plugin)


Wow, nice explaination dude. That "wmplayer" command line did work for me.


Posted by BlueHawk on Apr-03-2003 20:20:

Fuck!! It scared the shit out of me..


Posted by StaticFive on Apr-04-2003 18:25:

quote:
Originally posted by Magimaster
mwuhahahahaha

my computer is impervious to this child's play.


CHILD'S PLAY!!!!!


Probably cuz you have one of those retarded 2X caddy cd rom drives!


Posted by StaticFive on Apr-04-2003 18:26:

quote:
Originally posted by pnuemo
you all need to be careful, because if your cd-rom is opening from looking at a picture, than there is some hidden code executing that. you need to update your OS, whatever it is. and possibly think about getting a firewall!


firewalls dont block html fool.


Posted by Dwingo on Apr-05-2003 14:32:

quote:
Originally posted by StaticFive
firewalls dont block html fool.


HTML doesn't open cd-rom drives fool.

You need some kind of script to do so. Like javascript or some other


Posted by Lira on Apr-05-2003 14:51:

quote:
Originally posted by BlueHawk
Fuck!! It scared the shit out of me..

Conclusion: this thing should be quite useful for people suffering from constipation


Posted by StaticFive on Apr-06-2003 04:12:

quote:
Originally posted by Dwingo
HTML doesn't open cd-rom drives fool.

You need some kind of script to do so. Like javascript or some other


I know what it takes to open a cd drive... actually, it's the windows media player OCX plugin, in case you were wondering


Posted by Dwingo on Apr-06-2003 13:02:

quote:
Originally posted by StaticFive
I know what it takes to open a cd drive... actually, it's the windows media player OCX plugin, in case you were wondering



I wasn't


Posted by whiskers on Apr-06-2003 13:24:

quote:
Originally posted by StaticFive
firewalls dont block html fool.


yes, they don't block html, but if any of you were wondering, one of the Zonealarm versions blocks java & vb scripts nowadays... of course, that screws up viewing harmless pages that are based on some type of script


Posted by StaticFive on Apr-09-2003 00:42:

quote:
Originally posted by Dwingo
I wasn't


lol...I don't know... you sounded pretty inquisitive!


Posted by Dwingo on Apr-09-2003 08:21:

inquisi... WHAT?


Using the WMPlayer:


Set oWMP = CreateObject("WMPlayer.OCX.7")

' attempt to connect with the cdrom collection interface...
Set colCDROMs = oWMP.cdromCollection

' if cdrom collection found, and there are cdrom drives present,
' then execute eject method on all the cdrom dirves...
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If



Let me guess. You found that using google?

There are more ways to open the drive then just executing the mediaplayer plugin.

I found this too for example:


You need to have "Active Desktop" installed to get at the "Shell.Application" object

Const ssfDRIVES = &H11 ' namespace constant (drives folder = 17)...
Const cdromDrvLtr = "G:\" ' specify your cd-rom drive letter...

Set oSH = CreateObject("Shell.Application")
' open the cd-rom drawer...
oSH.NameSpace(ssfDRIVES).ParseName(cdromDrvLtr).InvokeVerb "E&ject"



I understand only half of what it says here (only scripting I know is PHP), but as you can see in the commentline: you need to have certain applications installed, which is why it doens't work for some of you (if they used this script... i don't know)


Posted by Dr. Cfire on Apr-14-2003 01:24:

Pany Little Girl Crap

Mwahaha my browser is impervious to you little javascript hack. For any one who sees this a a possible serucity hole go get mozilla, it wil allow you to block this kind of javascript hack.
http://www.mozilla.org/


Posted by StaticFive on Apr-14-2003 01:59:

quote:
Originally posted by Dwingo
inquisi... WHAT?


Using the WMPlayer:


Set oWMP = CreateObject("WMPlayer.OCX.7")

' attempt to connect with the cdrom collection interface...
Set colCDROMs = oWMP.cdromCollection

' if cdrom collection found, and there are cdrom drives present,
' then execute eject method on all the cdrom dirves...
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If



Let me guess. You found that using google?

There are more ways to open the drive then just executing the mediaplayer plugin.

I found this too for example:


You need to have "Active Desktop" installed to get at the "Shell.Application" object

Const ssfDRIVES = &H11 ' namespace constant (drives folder = 17)...
Const cdromDrvLtr = "G:\" ' specify your cd-rom drive letter...

Set oSH = CreateObject("Shell.Application")
' open the cd-rom drawer...
oSH.NameSpace(ssfDRIVES).ParseName(cdromDrvLtr).InvokeVerb "E&ject"



I understand only half of what it says here (only scripting I know is PHP), but as you can see in the commentline: you need to have certain applications installed, which is why it doens't work for some of you (if they used this script... i don't know)


Oh, grrr. I hate it when people challenge my knowlege of programming. I'd hate to spill the beans, but I know most of visual basic, basic, c, c++, flash actionscript, and javascript. Damn, I guess you know more than I do though. I also make mean programs for the HP48G--lemme know if you want some! hehe please dont respond mang!

Hella!


Posted by Dwingo on Apr-15-2003 15:27:

quote:
Originally posted by StaticFive
Oh, grrr. I hate it when people challenge my knowlege of programming. I'd hate to spill the beans, but I know most of visual basic, basic, c, c++, flash actionscript, and javascript. Damn, I guess you know more than I do though. I also make mean programs for the HP48G--lemme know if you want some! hehe please dont respond mang!

Hella!


Sure dude
I just hate it when people try to boost with knowledge they don't have and try to flame people with it... yup YOU...

And as I said: only scripting I know is a bit of PHP


Posted by StaticFive on Apr-15-2003 19:32:

Behold, my arse.

quote:
Originally posted by Dwingo
Sure dude
I just hate it when people try to boost with knowledge they don't have and try to flame people with it... yup YOU...

And as I said: only scripting I know is a bit of PHP


I'm not flaming, just wondering why you feel that my knowlege is so inadequate that you feel you have to justify my response with reasoning. I don't remember how this started-- oh, wait, I don't care either! So INSTEAD of pasting personal code snippets that you will disregard and/or use to flame me in a reply, I think I will go participate in the life that you wish you had. Oops, sorry about the flame, I must have been anticipating a response.


Posted by Santino on Apr-16-2003 02:03:

im just with about evry one else. my cd-rom drive opened so big deal


Posted by joeh on Apr-16-2003 02:50:

This one opens both my drives - another opens just one.

Conclusion: its wank.


Posted by Dwingo on Apr-16-2003 07:04:

quote:
Originally posted by StaticFive
firewalls dont block html fool.


Remember this one?
But fuck it, I'll let it rest.


Posted by Mental Exodus on Apr-17-2003 00:01:

Be Cool!


Posted by xKaizeRx on Mar-16-2004 22:21:

cupholder

can someone help me out witht he cd rom cup holder??? i tried the script and it didnt work... and can anyone help out with the script to turn off your monitor?


Posted by Matt Jay on Mar-16-2004 22:32:

Re: cupholder

quote:
Originally posted by xKaizeRx
and can anyone help out with the script to turn off your monitor?



Don't think it's possible


Pages (4): « 1 2 [3] 4 »

Powered by: vBulletin
Copyright © 2000-2021, Jelsoft Enterprises Ltd.