hexagon logo

Audible deviations

Hello all,
I know this is an odd question, but has anyone come across a script
that would use perhaps a .wav file to audibly convey the deviations
of vector points in real time when running the cmm program.
It would come in handy for me in a few instances. (Not being able to see the
monitor would be one instance.)
Or maybe an idea of how to start to tackle a script of this sort.,
Any comments would be appreciated.

Thanks
Parents


  • Copied from the other site


    Put the text below in a text file and change the extension to .bas or paste this into basic script editor and save. Then Insert>Basic Script and navigate to .bas file. This one you could call Plane.bas, and you could do the same for lines, points, etc.

    Code Dim speechobject As Object
    Dim response As String

    Sub Part1

    response = "TAKE HITS TO CREATE A PLANE"

    Set speechobject=createobject("sapi.spvoice")
    speechobject.speak response

    End Sub

    Sub Main

    Part1

    End Sub
Reply


  • Copied from the other site


    Put the text below in a text file and change the extension to .bas or paste this into basic script editor and save. Then Insert>Basic Script and navigate to .bas file. This one you could call Plane.bas, and you could do the same for lines, points, etc.

    Code Dim speechobject As Object
    Dim response As String

    Sub Part1

    response = "TAKE HITS TO CREATE A PLANE"

    Set speechobject=createobject("sapi.spvoice")
    speechobject.speak response

    End Sub

    Sub Main

    Part1

    End Sub
Children
No Data