
New in this prerelease of version 15.5 of the
MBS FileMaker Plugin:
Download at
monkeybreadsoftware.com/filemaker/files/Prerelease/
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.

New in this prerelease of the 25.4 plugins:
- Updated WiringPi to version 3.1.6.
- Undeprecated WiringPiMBS module.
- Added more methods and constants for WiringPiMBS module.
- Added AddItem() method variant to QLPreviewControllerMBS class, which takes an title text.
- Improved ReadString function in StdinMBS class to be more thread safe.
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
New functionality in documentation.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.
This year I had the chance to visit the Claris FileMaker conference in Japan. It is a bit different from the other conferences I visited before.
(more)
The November/December (23.6) issue of xDev Magazine is now available. Here's a quick preview of what's inside:
From Idea to Prototype by Tim Dietrich
Tim shares a novel way to use AI in your Xojo projects. Not for coding, but for designing, planning, and prototyping.
A Raspberry Pi Save File Dialog by Eugene Dakin
There are many features of Raspberry Pi that can't be obtained via built-in methods. In today's example, Eugene uses declares to create a save file dialog.
Converting Fitbit Data by Marc Zeedar
Years ago Marc got an internet-connect scale from Fitbit so he could track his weight. But it would never integrate with Apple's Health app. Now, using Xojo, Marc converts ten years of data and imports it into Health.
Android's New Developer Verification by Tim Dietrich
Recently Google threw a huge twist into Android development, requiring all developers register their apps for verification in a system similar to Apple's app signing. What does this mean for Xojo developers building for Android? Tim has some answers.
Plus: An interview with Christian Schmitz, learning to use unit testing, making your apps talk, charting weights, and more!
If you like to remove sensitive text from a PDF file in FileMaker, you can use the DynaPDF functions. We have parser functions to find text on a page, delete the text and we can draw a black bar on top of the word.
Let’s go through the script part by part. First you need to initialise DynaPDF once. This can happen early in the start script of your solution or later in the first script needing DynaPDF.
(more)
Recently I had to run a Xojo web app on a server for a client. We wanted to run four copies at once and distribute all users to them equally. Let me document how I do this for future installations.
(more)
Everything you need to find Tesseract libraries for macOS, Windows and Linux and instructions to load and initialize them with the MBS plugin (OCR.Load, OCR.IsLoaded, OCR.Initialize).
Quick summary (tl;dr)
- macOS: Install via Homebrew (`brew install tesseract` + `brew install tesseract-lang` for extra languages) or download prebuilt libs (MBS offers lib bundles). Then call
MBS("OCR.Load"; "/opt/homebrew/lib/libtesseract.4.dylib") (or path where Homebrew installed libs).
- Linux (Debian/Ubuntu): Install libraries and language files with apt:
sudo apt-get install libtesseract5 tesseract-ocr-lang. Then call MBS("OCR.Load"; "libtesseract.so.5") (and load leptonica first if required).
- Windows: Use a community build/installer (UB-Mannheim and similar). Place DLLs in program folder and call
MBS("Process.SetCurrentDirectory"; "C:\Program Files\Tesseract-OCR") & MBS("OCR.Load"; "libtesseract-4.dll").
- Important: Tesseract library version must match tessdata files (wrong combinations can crash). When using Tesseract 4.x+ with MBS, prefer
OCR.Load to explicitly load newer runtimes.
(more)
Six months until our MBS Xojo conference in Andernach starts. Since the last update we go the first speakers to confirm they are coming and listed the sessions:
- Protecting Sensitive Data in Xojo: Practical Encryption Techniques Using MBS Plugins
- Development of a tourist information system to promote local agritourism based on Xojo and Raspberry Pi installations
- What is new in the Xojo Web Framework?
- Framework and IDE enhancements
More sessions are in the works and get listed once the speakers confirm their attendance.
Attendees
We got a few more registrations, so we have over 20 people from 7 countries: 🇩🇪, 🇳🇱, 🇵🇱, 🇬🇧, 🇨🇭, 🇺🇸 and 🇬🇷.
Special guests
For years we worked with LibXL to provide excellent Excel integration with our MBS Xojo XL Plugin. And this year we are honored to have Dmytro Skrypnyk join us in Andernach for the conference.
If you signed up and you didn't receive an email from us, please contact us to check the status of the registration.
After installing the MBS FileMaker Plugin, register it to unlock licensed features and remove the trial dialogs. There are four ways to register — pick the one that fits your workflow.
(more)

New in this prerelease of the 25.4 plugins:
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
New functionality in documentation.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 15.5 of the
MBS FileMaker Plugin:
- Updated DynaPDF to version 4.0.102.299.
- Fixed Plugin.CustomFunctionIDs function to return correct IDs.
- Changed plugin information string in the FileMaker preferences dialog to include license information if it gets stored with StoreRegistration function.
- In our preferences dialog you can now paste the whole license string and we separate it to the five fields.
- Changed Phidget.Release to automatically call Phidget.Close internally if needed.
- Removed dependency to GLIBCXX 3.4.29 to make the plugin compatible again with older Linux versions.
Download at
monkeybreadsoftware.com/filemaker/files/Prerelease/
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.

New in this prerelease of the 25.4 plugins:
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
New functionality in documentation.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 15.5 of the
MBS FileMaker Plugin:
- Removed tesseract 3 support. Please use version tesseract 5.x.
- Updated DynaPDF to version 4.0.102.298.
- Improved Text.HTMLtoStyledText function to handle underline and strikethrough better.
- Added UUID.TimeFromUUIDv7 function.
- Updated libarchive to version 3.8.2.
Download at
monkeybreadsoftware.com/filemaker/files/Prerelease/
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.
You may have a license for our MBS FileMaker Plugin, so you may be interested to use more XML features.
Since FileMaker has only built-in XSLT 1.0, you may enjoy the enhancements of XSLT 3.0 with way more options.
You can use the Saxon library in your projects with MBS Plugin to work on XML:
- XSLT 3.0 for transformations
- XQuery 3.1 for queries
- XSD 1.1 for document validation
- XPath 3.1 for navigation within documents
See our Saxon functions in the documentation.
(more)

New in this prerelease of the 25.4 plugins:
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
New functionality in documentation.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.

New in this prerelease of version 15.5 of the
MBS FileMaker Plugin:
Download at
monkeybreadsoftware.com/filemaker/files/Prerelease/
You can subscribe to our FileMaker mailing list to get notified for new pre-release and release versions.
Check out the FMTraining.tv website. Richard Carlton and his team do a daily free live stream about FileMaker to watch.
A few days ago Christian Schmitz from Monkeybread Software joined a live episode to talk a bit about the MBS FileMaker Plugin. Watch it on YouTube.
First there is a talk from Rick Kalman about the new standby server feature in testing. Then in our Q&A we talk about various topics including DynaPDF.WebLink function and the Events functions for creating events and reminders in your calendar. Later we use WebView functions to click buttons on a webpage.
(more)
Did you know that macOS 26 (and iOS 26) come with a small local LLM from Apple?
Since it runs local there is no cost involved and no network access. So why not tap into this resource when available to enhance your Xojo application?
You could use the LLM for:
- Generate text based on key words
- Summarize texts
- Tone editing to make some text sound more professional.
- Translate text
(more)
Just one month until the EngageU conference, the biggest FileMaker developer conference in Europe this year with over 200 attendees!
ClickWorks and Square Moon continue to organize a pan-european conference for Claris FileMaker developers from all over the world.
EngageU - FileMaker Conference 9th - 11th of November 2025, Antwerp, Belgium
(more)

New in this prerelease of the 25.4 plugins:
Download: monkeybreadsoftware.de/xojo/download/plugin/Prerelease/.
Or ask us to be added to our shared DropBox folder.
New functionality in documentation.
You can subscribe to our Xojo mailing list to get notified for new pre-release and release versions.