Checked 20 pages of posts and couldn't find anything related to this. Not sure if my problem is related to upgrading to version 7.2, me going from NT to XP Professional or a little bit of both.
All i need to do is have a .wav file on my C: play when a certain threshold is met. It used to work like a charm.. now i get an error message. Here's how the Action that used to work in NT was written:
'This script uses a COM component defined in
'GsSampleTEObjects.DLL the source code for which
'is included in the CCPulse installation package. It should
'be compiled using Visual Basic in order for this script to work.
'Create the Genesys sound object
[b]Set SoundObject = CreateObject("GsSampleTEObjects.GsActionSoundObject")[/b]
'Specify the full path to a WAV file in order to play it.
[b]SoundObject.PlaySoundFile("c:\winnt\media\ccpulse wav\air_raid.wav")[/b]
Line 1-5 are just notes since they have ' in the front. Lines 6 and 8 are the only ones being executed.
Since i'm on XP now i edited the path to say [b]SoundObject.PlaySoundFile("c:\GCTI\ccpulse\wav\air_raid.wav")[/b] which is where the file is now located but regardless i get the exact same error message when i test it now for [b]both[/b] examples.
Error is as follows:
[b]Error at
Line:6
Position: 0
Error Message: ActiveX component can't create object: 'GsSampleTEObjects.GsActionSoundObject'[/b]
Any ideas how to fix this? It worked like a charm before. All i had to do is change the name of the .wav file in the path if i wanted a different sound to play

I even tried putting the file right under C: and used the code [b]SoundObject.PlaySoundFile("c:\air_raid.wav")[/b] and still no luck
