Adding a Dummy Text Feature to OpenOffice.org Writer
Productivity Sauce
Every now and then, I need to fill a blank OpenOffice.org Writer document with dummy text. While OpenOffice.org comes with a built-in feature that allows you to do that (type dt and press the F3 function key), it generates only one paragraph at a time and doesn't allow you to specify your own dummy text. So instead of the built-in dummy text feature, I used to use the Magenta Lorem Ipsum Generator extension that pulls dummy text from the lipsum.com Web site. It is, indeed, a nifty solution, but since it requires an Internet connection to do its magic, it's not of much use when I work off-line. So I wrote a simple macro that inserts dummy text into the current OpenOffice.org Writer document. The macro pulls text from the dummy.txt plain text file which you should prepare beforehand and place in the OpenOffice.org user directory ( e.g., /home/USER/.openoffice.org/3/user where USER is your actual user name). The text file should contain a few paragraphs of whatever dummy text you want to use. Make sure that the text doesn't contain empty paragraphs. Now copy the macro below, choose Tools | Macros | Organize macros | OpenOffice.org Basic, open the Module1 item in the Standard library for editing and paste the code.
Sub DummyText() Dim ParaNo as Integer ThisDoc=ThisComponent ThisText=ThisDoc.Text TheCursor=ThisText.createTextCursor SubstService = CreateUnoService("com.sun.star.util.PathSubstitution") UserPath = SubstService.substituteVariables("$(user)", true) DummyTxt = UserPath + "/dummy.txt" f1 = FreeFile() Open DummyTxt for Input as #f1 ParaNo=InputBox("Number of Paragraphs:", "Input") ParaCounter=0 Do while ParaCounter<ParaNo Line Input #f1, s TheCursor.String=s+Chr(13)+Chr(13) TheCursor.collapseToEnd ParaCounter=ParaCounter+1 Loop Close #f1 End Sub
Save the macro, close the OpenOffice.org Basic editor, and you are good to go. If setting up the macro manually is not your cup of tea, you'll be pleased to learn that this macro has been rolled into the latest release of the Writer's Tools extension. However, the Dummy Text tool is not available in the Writer's Tools main menu, so you have to add it to an existing OpenOffice.org menu. To do this, choose Tools | Customize, select the desired menu from the Menu drop-down list, press the Add button, navigate to OpenOffice.org Macros | My Macros | WriterTools | _Hidden, select the DummyText macro, and press Add. That's it. Now you can use the macro to insert dummy text into Writer documents.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
How to do something similar without OpenOffice
(the ODF scripting category on the same website contains other examples of the same technique applied to spreadsheets and presentations.)