Hello guys!! I'm new in forum so please forgive if I commit mistakes.
I got a file that I want to be in full screen mode when I open it. I'm prety sure
that there must have a macro that does it but I'm a total newby in macros. Even bought a book to understand it but it's going to be
a long, long ride till I learn.
Is there another way to archive it other than by macro?
If the only by macro. Which one, and how to use it?
Of course someone out there must know the answer. So please, help me!!
Thanks
How to open a file in full screen mode?
How to open a file in full screen mode?
OpenOffice 3.3 on Windows Vista
Re: How to open a file in full screen mode?
Tibor Kovacs, Hungary; LO7.5.8/25.8.5.2 /Win7-10-11 x64Prof.
PortableApps: LO3.3.0-25.8.5.2;AOO4.1.14
Please, edit the initial post in the topic: add the word [Solved] at the beginning of the subject line - if your problem has been solved.
PortableApps: LO3.3.0-25.8.5.2;AOO4.1.14
Please, edit the initial post in the topic: add the word [Solved] at the beginning of the subject line - if your problem has been solved.
- Charlie Young
- Volunteer
- Posts: 1559
- Joined: Fri May 14, 2010 1:07 am
Re: How to open a file in full screen mode?
The macro Tibor links to works from a control on the sheet. It also hides or shows the row and column headers.
I think a stripped-down version is what is sought here. Assigned to Document Open using Tools > Customize > Events
I think a stripped-down version is what is sought here. Assigned to Document Open using Tools > Customize > Events
Code: Select all
sub startFullScreen()
dim document as object
dim dispatcher as object
document = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
dim args(0) as new com.sun.star.beans.PropertyValue
args(0).Name = "FullScreen"
args(0).Value = True
dispatcher.executeDispatch(document, ".uno:FullScreen", "", 0, args())
end sub
Apache OpenOffice 4.1.1
Windows XP
Windows XP
Re: How to open a file in full screen mode?
As far as I remember, OOo will save the last window state. So open a file in Calc, select it to full screen, then close calc. All Files should now open full screen.
Apache OpenOffice 4.1.16 on Xubuntu 24.04.4 LTS