Questions tagged [openoffice-impress]

related to OpenOffice.org Impress, a presentation application which is similar to Microsoft PowerPoint.

36 questions
1
vote
1 answer

Split and convert Microsoft PowerPoint presentations on a Linux server

I have to implement a web service, which takes a Microsoft PowerPoint presentation as an input, and outputs: every slide as a standalone ppt file text for indexing optionally a preview picture It should also be able to combine ppt files…
tamasd
  • 5,747
  • 3
  • 25
  • 31
1
vote
2 answers

Libreoffice impress notes formatting removed from slideshow

I am creating a Libreoffice Impress (powerpoint) set of slides and the one thing I can't figure out is notes formatting. The core issue is that I can format the notes, but when I start the slideshow, all of the formatting is removed and I end up…
1
vote
1 answer

Is there any Open Office or Libre Office SDK for .NET?

I need to extract text from presentation files (.odp) that were created in Libre Office Impress. I thought this would be super easy (I already implemented this function for .ppt and .pptx files). But I can't find any sample code out there that…
Arpi
  • 244
  • 3
  • 10
1
vote
0 answers

Open Office Impress

I have seen that in some question around presentation you suggest using OO Impress for this. I am trying to show multiple presentation in a non fullscreen window, but havent been very successful so far. Ideally I want to be able to move this…
Roman
  • 259
  • 1
  • 3
  • 8
1
vote
0 answers

Extracting media objects present in LibreOffice Impress using LibreOffice APIs

I am trying to get details of the media contents (video, audio ) present in a LibreOffice Impress document through LibreOffice API in java. The details which I want to extract is the type of media content present in the document. And also ways to…
1
vote
0 answers

How can I convert a PowerPoint or OpenOffice presentation to video in C# on my server side? (ASP.net)

I have a problem by converting a powerpoint presentation to video. I know that I can use the interrop library but my problem is that office can not be stable on an application server side (see: http://support.microsoft.com/kb/257757) Application…
MrDSG
  • 11
  • 2
0
votes
1 answer

Count number of lines of a powerpoint textbox

I have been using python-pptx and if scanny sees this: Thank a lot for your work! It has been an absolute pleasure to work with this package. Every functionality I needed was some how available and if I couldn't find it, there was some answer on…
5th
  • 2,097
  • 3
  • 22
  • 41
0
votes
1 answer

Cannot retrieve container for XShape in LibreOffice

I'm struggling with some code using LibreOffice 7.1.0 on Windows 10 to append images from a folder into separate slides in Impress. I've been looking here and OpenOffice documentation. This call continuously fails (null):…
0
votes
1 answer

how to select master slide in OpenOffice ODG document with TinyButStrong TBS

I can successfully manipulate fileds on a master slide of a PPTX document with this code: $TBS->PlugIn(OPENTBS_SELECT_SLIDE, '1', true); // select master slide $TBS->MergeField('abk', 'ainfo', true); // merge field…
patmin
  • 117
  • 1
  • 10
0
votes
1 answer

Convert LibreOffice Impress exported flash file into mp4 format?

I need to export the LibreOffice impress presentation into a video format using python. I have managed to export the presentation into flash file format using pyuno and I need to convert it into mp4 (or any other famous video) format. I have tried…
0
votes
1 answer

How to get custom shape type from OpenOffice SDK?

I am using OpenOffice SDK to open and parse ppt and pptx files; now I can open ppt files and extract shapes. XShape xShape = (XShape) UnoRuntime.queryInterface( XShape.class, xShapes.getByIndex(j)); String type = xShape.getShapeType(); By using…
mmohab
  • 2,303
  • 4
  • 27
  • 43
0
votes
0 answers

PPT changing color while converting with Unoconv

I am converting PPT to PDF using Unoconv on my Ubuntu 14.04 server. Most of the files are being converted correctly, except few files. After conversion, the color of the slide becomes very bright. When I open the PPTx in "Microsoft Office…
Gaurav
  • 1,214
  • 2
  • 17
  • 32
0
votes
1 answer

Why LibreOffice Impress displays two items at each key press, instead of one for each?

I created a LibreOffice Impress presentation with a bullet point list on a slide. I defined an animation for it so that each item displays after a new click. If I start the presentation then the mouse clicks don't do anything. If I press the space…
Csongor Halmai
  • 3,239
  • 29
  • 30
0
votes
1 answer

OpenOffice source code for power point pptx open and extraxt to images and export to swf

I need to find the source code for openoffice powerpoint fuinctions for opening a pptx, Reading slides, editing, find the slide transitions, convert slides to bitmaps, export to swf or other video formats. How to find out the source code in…
0
votes
2 answers

Helper class is not found in my java code

I am trying to integrate Apache open office sdk for Power point ,So that i have to use helper class but it is not found in ellipse IDE and Java JDK 8 also.Why? com.sun.star.uno.XComponentContext xOfficeContext = Helper.connect(); xDrawDoc…