Open file in full-screen mode

Discuss the spreadsheet application
Post Reply
StevenW
Posts: 4
Joined: Thu Mar 07, 2024 3:56 pm

Open file in full-screen mode

Post by StevenW »

Hi Everyone,

I got a file that I want to be in full screen mode when I open it.

I have seen some macro options on this platform. But unfortanitly these macro's do not work with me.
Maybe language issues or an older version? I do not know.

Hopefully someone can help me?

Greetings Steven
Last edited by MrProgrammer on Thu Mar 07, 2024 5:15 pm, edited 1 time in total.
Reason: Edited topic's subject
OpenOffice 4.1 on windows
User avatar
RoryOF
Moderator
Posts: 34619
Joined: Sat Jan 31, 2009 9:30 pm
Location: Ireland

Re: full screen mode opening file

Post by RoryOF »

Open the file, switch to full screen mode, then Save it. It should thereafter open in full screen.
Apache OpenOffice 4.1.15 on Xubuntu 22.04.4 LTS
StevenW
Posts: 4
Joined: Thu Mar 07, 2024 3:56 pm

Re: full screen mode opening file

Post by StevenW »

First of all thanks for the quick reply!!!

Ctrl Shift J = Full Screen
But how can i save this file?

Is it also full screen for someone else if i send the file by email?
OpenOffice 4.1 on windows
User avatar
RoryOF
Moderator
Posts: 34619
Joined: Sat Jan 31, 2009 9:30 pm
Location: Ireland

Re: Open file in full-screen mode

Post by RoryOF »

The process I describe will only Save the OpenOffice Window filling the screen; you will have the toolbars and framing of the OpenOffice editing window. That Saved file should carry that condition forward to other users. I know of no way to Save merely the internal application screen as full screen (Ctrl Shift J).
Apache OpenOffice 4.1.15 on Xubuntu 22.04.4 LTS
StevenW
Posts: 4
Joined: Thu Mar 07, 2024 3:56 pm

Re: Open file in full-screen mode

Post by StevenW »

But that is indeed what i want. Open a file with only the internal application screen as full screen. I know it s possible with a macro. But the macro's i found on the internet did not work with me.

But of course thank you very much!

Hopefully someone else knows a macro option?
OpenOffice 4.1 on windows
nerdyaks
Posts: 1
Joined: Fri Mar 01, 2024 11:15 am

Re: Open file in full-screen mode

Post by nerdyaks »

To make an OpenOffice document open in full-screen mode automatically, you can use a macro. This approach allows you to bypass the need for manual intervention each time you open the document. Here's a detailed guide on how to achieve this:
Step 1: Enable Macro Execution
First, ensure that macro execution is enabled in OpenOffice. Go to Tools > Options > Libre/OpenOffice > Security > Macro Security and set it to 'Medium' level. This setting will prompt you for permission to execute macros when a document is opened
3
.
Step 2: Create the Full-Screen Macro
Open OpenOffice and navigate to the document you want to open in full-screen mode.
Go to Tools > Macros > Organize Macros > OpenOffice Basic.
In the dialog that opens, select My Macros.
Click New to create a new module. Name it something relevant, like FullScreenMacro.
In the macro editor, enter the following code:

Sub FullScreenOnOpen
Dim oCurrentController As Object
oCurrentController = ThisComponent.getCurrentController()
If Not oCurrentController.isFullScreen Then
oCurrentController.FullScreen = True
End If
End Sub
OpenOffice 3.1 on Windows Vista / NeoOffice 2.2.3 with MacOS 10.4 / OpenOffice 2.4 on Ubuntu 9.04
User avatar
robleyd
Moderator
Posts: 5087
Joined: Mon Aug 19, 2013 3:47 am
Location: Murbko, Australia

Re: Open file in full-screen mode

Post by robleyd »

Have you tried the suggestion in this AskLibreOffice post?
 Edit: Correct link to point to correct topic 
Cheers
David
OS - Slackware 15 64 bit
Apache OpenOffice 4.1.15
LibreOffice 24.2.2.2; SlackBuild for 24.2.2 by Eric Hameleers
StevenW
Posts: 4
Joined: Thu Mar 07, 2024 3:56 pm

Re: Open file in full-screen mode

Post by StevenW »

nerdyaks wrote: Fri Mar 08, 2024 10:10 am To make an OpenOffice document open in full-screen mode automatically, you can use a macro. This approach allows you to bypass the need for manual intervention each time you open the document. Here's a detailed guide on how to achieve this:
Step 1: Enable Macro Execution
First, ensure that macro execution is enabled in OpenOffice. Go to Tools > Options > Libre/OpenOffice > Security > Macro Security and set it to 'Medium' level. This setting will prompt you for permission to execute macros when a document is opened
3
.
Step 2: Create the Full-Screen Macro
Open OpenOffice and navigate to the document you want to open in full-screen mode.
Go to Tools > Macros > Organize Macros > OpenOffice Basic.
In the dialog that opens, select My Macros.
Click New to create a new module. Name it something relevant, like FullScreenMacro.
In the macro editor, enter the following code:

Sub FullScreenOnOpen
Dim oCurrentController As Object
oCurrentController = ThisComponent.getCurrentController()
If Not oCurrentController.isFullScreen Then
oCurrentController.FullScreen = True
End If
End Sub

Thank you very much for the complete answer. A very clear manual! I really appreciate this.
I entered the complete code. But this part is not working with me. And I am a macro dummy :(

If Not oCurrentController.isFullScreen Then
OpenOffice 4.1 on windows
Post Reply