I am using libre office on 3.6, on a raspberry pi. I have installed libre office with no problems. On past versions i would use a macro to stop the powerpoint presentation from pausing at the end of a slideshow, using this article https://issues.apache.org/ooo/show_bug.cgi?id=88112. That worked flawlessly for a little while, until i built a new device, and now when i try and apply this macro i get the following error “BASIC runtime error. Property or method not found: Presentation” on line 12, “Presentation = Doc.Presentation”. Unfortunately i dont know scripting well enough to know what is going on. Does anyone have any idea for me to look at?
REM ***** BASIC *****
REM Set presentation variables for all presentations
REM See also the OOo Developer's Guide:
http://wiki.services.openoffice.org/w/images/9/93/DevelopersGuide_OOo3.1.0_09DrawingDocuments.odt
Sub Main
Dim Doc As Object
Dim Presentation As Object
Doc = ThisComponent
Presentation = Doc.Presentation
REM Uncomment the line below to make all presentations loop endlessly:
REM Presentation.IsEndless(True)