| View previous topic :: View next topic |
| Author |
Message |
denhamon Newbie

Joined: 21 Mar 2005 Posts: 3 Location: Central Illinois
|
Posted: Mon Mar 21, 2005 8:42 pm Post subject: Impress show without GUI |
|
|
I'm running Impress 1.1 under Linspire 4.5
I can start a slide show from the command line using -show, but the GUI pops up during the load of the slide show. Does anyone know how to suppress the GUI from showing? I've tried the -minimize and the -noheader in conjunction with the -show but they don't seem to make any difference. Did I miss something? Thanks -DH  |
|
| Back to top |
|
 |
Cybb20 Super User


Joined: 02 Mar 2004 Posts: 1569 Location: Frankfurt, Germany
|
Posted: Tue Mar 22, 2005 12:25 am Post subject: |
|
|
You mean the GUI is showing up during the whole slide show or just slightly before the slideshow starts?
Christian _________________ - Knowledge is Power - |
|
| Back to top |
|
 |
denhamon Newbie

Joined: 21 Mar 2005 Posts: 3 Location: Central Illinois
|
Posted: Tue Mar 22, 2005 7:36 am Post subject: |
|
|
No, just before the slide show starts, as the file is loading.
-DH |
|
| Back to top |
|
 |
Cybb20 Super User


Joined: 02 Mar 2004 Posts: 1569 Location: Frankfurt, Germany
|
Posted: Tue Mar 22, 2005 9:30 am Post subject: |
|
|
That probably will be hard to do, especially if it's a big file that you're dealing with.
A macro would probably be the easiest way to do this, you can call macros from the command line, like that:
soffice "foo.sxw" "macro:///<lib>.<module>.<function>"
Christian _________________ - Knowledge is Power - |
|
| Back to top |
|
 |
denhamon Newbie

Joined: 21 Mar 2005 Posts: 3 Location: Central Illinois
|
Posted: Wed Mar 23, 2005 4:23 pm Post subject: |
|
|
Thanks, good to know I wasn't just missing something. I'll start looking deeper into macros. Thanks again. -DH  |
|
| Back to top |
|
 |
Cybb20 Super User


Joined: 02 Mar 2004 Posts: 1569 Location: Frankfurt, Germany
|
Posted: Thu Mar 24, 2005 12:53 am Post subject: |
|
|
No problem Denhamon.
To give you a quick start on this, the slide show interface can be accessed with
| Code: |
slideshow = thisComponent.Presentation
slideshow.start() 'starts the presentation
|
Christian _________________ - Knowledge is Power - |
|
| Back to top |
|
 |
|