Hi everyone !
My question is in the title : I'm using PPT Office 2003, and don't succeed to create the object for the presentation already opened in a current PPT session. I'm very new to handling COM objects via AutoIt and as you can see still have a lot to learn
I tried this code :
Global $oAppl = ObjGet("", "PowerPoint.Application")
If @error Or Not IsObj($oAppl) Then Exit MsgBox(0, "Error", "Error creating PPT application. @error = " & @error & ", @extended = " & @extended)
Global $oPresInterface = $oAppl.Presentations ; Get presentation interface
Global $oPresentation = $oPresInterface.ActivePresentation
Obviously last line doesn't work at all, I got an error message saying the command is unknown... please anyone, help me with this !
Thanks in advance,
Eazyrider