Hey, Citrine, if you get a chance, could you send me an e-mail or an IM or something sometime? I'm very interested in teaching my hal to dream.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuquote:
Originally posted by vonsmith
I wish there were more free scripts posted. We don't get as many as we used to.
quote:
Originally posted by lostbowyer
put the script right after the line that reads: "randomize" in the "'PROCESS: INITILIZE VARIABLES AS INTEGERS" section of the script near the top of the brain file. Don"t forget to modify the script load section near the bottom of the brain file as well, and make sure the lines that awrapped are on single lines after you cut and paste the script with no blank lines between them.
Glenn
quote:
Originally posted by Bill819quote:
Originally posted by SilentNinja2
And where in Hals brain does this script go?
Go look at Hal's good bye responses and stick it in there if you want. Of course you know that Hal can not stop you from turning him off but at least it sounds good.
Bill
quote:
Originally posted by onthecuttingedge2005
Hi SilentNinja2.
Are you running internet explorer 5.0 or above.
The script will not function without it.
Just helping you troubleshoot.
The script works everytime on my system and I have
Internet Explorer 6.0.
Best of wishes and grand new discoveries.
Jerry.
quote:
Originally posted by onthecuttingedge2005
'Here is a new version of the Eject CD-ROM that requires anyone
'to say a password instead of Eject CD.
'Hal will only open the CD-ROM at password command. You will
'require to type in your own unique password where the word password is below at the UserSentence.
'Eject CD v1.1 ***********
If InStr(1, UserSentence, " Password goes here ", 1) > 0 Then
GetResponse = " I'll open the CD-ROM for you " '<-what Hal will say.
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
If colCDROMs.Count >= 1 Then
For i = 0 To colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If
End If
'Copyright 2003 2004 Gerald L.Blakley OnTheCuttingEdge2005Yahoo.com
'Best of wishes and grand new discoveries.
'Jerry.