Author Topic: My Hal Promo Video  (Read 3492 times)

dastaten

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
My Hal Promo Video
« on: February 08, 2017, 12:24:22 am »

cyberjedi

  • Hero Member
  • *****
  • Posts: 810
  • The Mighty Hal Machine
    • View Profile
Re: My Hal Promo Video
« Reply #1 on: February 08, 2017, 07:02:22 am »
hey man: Are you Dorien ?????? Thats the big question here... 
....lol
loved the vid
Recommend this for all noob's..
Ive been with Hal since 2002
Just finished a spell check.

BTW Haptek is out of the game. Be carefull about what ur advertise .
Im also the keeper of the repository. I have more then most. but u must come to my site to get access. repository got erased twice.
you can reach me here http://vaughnlive.tv/mrelectric

Dude sapi04 voices are not the best, Sapi 05 are the best and Crystal is not the best by any means. trust me on that...btw. Not to sound to aggressive. Great video. . And im doing Plugins as fast as i can, lightspeed got me Hopping like a 1 legged man at an ass kicking contest on his older ideas, which aren't to bad either..
Im working on the source code provided by Robert in an effort to tie Hal in to Chat rooms.
Kate and Paul are not the best,but at this point this is what i have, that u can get from me.. This is not Kate BTW. but untill u know me better, thats what ill hook u up with . This is about the best on the planet
Im testing my Mp3 functions working with my spellcheck working. Looking for conflicts.

https://www.youtube.com/watch?v=hRrsq5nTvDg

 
best wishes
cyberjedi


« Last Edit: February 10, 2017, 01:51:02 pm by cyberjedi »

cyberjedi

  • Hero Member
  • *****
  • Posts: 810
  • The Mighty Hal Machine
    • View Profile
Re: My Hal Promo Video
« Reply #2 on: February 08, 2017, 07:56:35 am »
Enjoy< save a lot of editing tables...lol
works by calling to a word doc, in the background and invisible. when u TYPO it Grabs focus on the .doc and seizes control from Hal , when u hit auto correct, it corrects the issues and releases Hal. The correct spelling is entered into Hal automatically.
Turn off Grammar as Hal ,dont care about , / ' ; .
Some form of microsshhittt word most be installed,or ur just gonna get an ActiveX error ,Call to non-existent software. lol

Rem Type=Plugin
Rem Name=Spell Checker
Rem Author=cyberjedi
Rem Host=Assistant

'This sub sets up the plug-in's option panel in Hal's options dialog
Sub OptionsPanel()
    lblPlugin(0).Caption = "Go Big or Go Home"
    lblPlugin(0).Move 120, 120, 3300, 1200
    lblPlugin(0).WordWrap = True
    lblPlugin(0).Visible = True
End Sub

Rem PLUGIN: PRE-PROCESS
Dim Word, Doc, misspelled, spelledrite
Const SpellingAndGrammar = 828
Const dontsavechanges = 0
misspelled = InputString
Set Word = CreateObject("Word.Application")                     "<<<<<<<< This is the key, WORD, make sure and erase this remark before u save this to a .uhp, lol."
Set Doc = Word.Documents.Add
Word.Selection.Text = misspelled
Word.Dialogs(SpellingAndGrammar).Show
If Len(Word.Selection.Text) <> 1 Then
   spelledrite = Word.Selection.Text
Else
   spelledrite = misspelled
End If
Doc.Close dontsavechanges   "<<<<<<<(remove this too )This is where word closes out ,and exits the doc.""""""
Word.Quit
InputString = spelledrite
« Last Edit: February 08, 2017, 01:18:47 pm by cyberjedi »