Jump to content

rdr

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by rdr

  1. Hello, I am debugging a script that automates LibreOffice. All tasks execute successfully when running the script in every possible way BUT from debug run. When running it with debug run, then I get a COM error from one of the functions called on a LibreOffice COM object. Any ideas why would that happen, only when debugging the script?
  2. Ok guys, thank you both for your help!
  3. Heh, I can understand your puzzle, but it looks like it just happens. I am using LibreOffice and I am just calling a method on its API. This is the part of the code: ... 1. $oReturn = $oDesktop.loadComponentFromURL($sURL, "_default", 0, $aoProperties) 2. If Not IsObj($oReturn) Then 3. _ErrorNotify("Error", $sFuncName, "", "$_GeneralError") 4. Return SetError($_OOoCalcStatus_GeneralError, 0, 0) 5. Else 6. Return SetSuccess($_OOoCalcStatus_Success) 7. EndIf The code never reaches line 2 when a process of LibreOffice is left running. In the other case, it just runs fine. Weird, I know.
  4. Thank you for the reply. The thing is that I get the error in a very specific case: when a process of the software I am manipulating through AutoIt is left running. In the case were a fresh start of the software is made, the error does not occur. So, could it still be a missing include?
  5. Hello all, Is there a way to catch the 'Unknown function name' AutoIt error? I am getting it in a case that is irrelevant to the message and although I have an error object that triggers my error handling method when com errors occur, I am just getting a pop up message when this error happens. Is there a way to handle it differently? Thank you, rdr //edit: I am using the latest Beta version
  6. Hello, Is there any plan on when this version will become official? Thank you!
  7. Thank you very much for your replies. I installed the Beta version and compiled the script again but unfortunately I am getting COM errors ('interface not registered' for $array[] and 'type mismatch' for $array = []). So, I am guessing there must be some small difference in the implementation of the empty table in autoit? EDIT: It turns out I was passing another parameter wrong and $array = [] did the job after all! Thank you very much again!
  8. Hello, I need to make a call to a method that takes as a parameter a variant that should be an array of properties. For the specific function that I need to be executed, there are no needed properties, so I would need to pass an empty array. In VB I would just use the Array() constructor, but in AutoIt what can I use? Is there something equivalent? Thank you
×
×
  • Create New...