
New in this prerelease of the 2.6 plugins:
- Improved Webviewer memory handling on Windows.
- Added ProgressDialog.GetTopMost and ProgressDialog.SetTopMost
- Added WebView.PrintPreview (For Windows)
- Added Font.Activate and Font.Deactivate functions.
Download at
monkeybreadsoftware.de/filemaker/files/Prerelease/

New in this prerelease of the 2.6 plugins:
- Fixed Mac plugin to be compatible again to Mac OS X 10.4 and newer. We lost that with adding SQL functions in pr2.
- Fixed ProgressDialog.GetBottomText to return bottom text on Mac and not top text.
- Added CURL.CloseDebugFile, CURL.CloseHeaderFile, CURL.CloseInputFile and CURL.CloseOutputFile
- Added CURL.CreateDebugOutputFile, CURL.CreateHeaderOutputFile, CURL.CreateOutputFile AND CURL.OpenInputFile
- Added CURL.SetOptionFileOnlyMode.
- Improved ProgressDialog button caption so it automatically fits the text length on Mac.
Download at
monkeybreadsoftware.de/filemaker/files/Prerelease/

Aron Kiesow was kind enough to post a custom function for Filemaker. With the
MBS_HTML_EncodeImage_JPG function you can embed images much easier into html pages for showing in the webviewer. It uses our plugins function
Container.GetBase64 to create the base64 version of the JPEG data loaded from the container. You can pass optional title, alt, width and height parameters if you like and simply insert the result.
Have fun and if you have similar functions, don't hesitate to tell us.

New in this prerelease of the 2.6 plugins:
- Added String.DecodeFromURL and String.EncodeToURL functions.
- Added MouseCursor.Set function to show different mouse cursor while processing.
- Added ProgressDialog.GetPositionX and ProgressDialog.GetPositionY.
- Added ProgressDialog.Update to redraw dialog.
Download at
monkeybreadsoftware.de/filemaker/files/Prerelease/

Well, in Filemaker, you can use ODBC Data sources to connect to SQL Databases and use them in Filemaker. But what if you need more flexibility or other features? Like...
- having database server user selectable, so your users can decide on runtime which server is used with what credentials?
- you simple want to call a store procedure on a SQL Server to trigger something on a database?
- you simply want to run a query to lookup some value.
- executing a special SQL command, for example to cleanup database?
- Export/Import data from sqlite database file.
- access database of some other application to directly change a value
As you see, there are quite a few use cases where you need SQL connectivity to run commands or query data directly with a SQL server. Especially as SQlite gets more popular for single user applications, read or writing values there is very interesting. For example when using Aperture application from Apple, you could read details from the database about the pictures you have directly.
To enable this, our new
Filemaker plugin with
version 2.6 supports connecting to Oracle, Microsoft SQL Server, DB2, Sybase, Informix, InterBase, SQLBase, MySQL, PostgreSQL, ODBC and SQLite databases. You can connect and execute commands. And if your command is a query, you can query result set with data. Also you can easily call stored procedures and pass parameters. As we support using prepared statements, you can set parameters for SQL queries and avoid SQL inject attacks.
This plugin is based on
SQLAPI and you can read about server specific things on their documentation. As you see in our
SQL.SetConnectionOption, you tell the plugin where to find the client library for the database you want. This way we can keep the plugin smaller and simply connect to the newest client library. Once the database client and library is specified, you can connect and run your queries.
We have a guide about it and if you have questions, please contact us. You can read
all new SQL functions and
our SQL guide.

New in this prerelease of the 2.6 plugins:
- Added new SQL methods for accessing multiple SQL databases (Oracle, SQL Server, DB2, Sybase, Informix, InterBase, SQLBase, MySQL, PostgreSQL and ODBC, SQLite).
- Fixed crash with CGPSConverter.Convert function.
Download at
monkeybreadsoftware.de/filemaker/files/Prerelease/
Here we have a nice project to use
TinyMCE with Filemaker in a Webviewer. We use our plugin to pass data from Filemaker to Webviewer to load text. And also other way from Javascript in Webviewer to Filemaker.

You can download project here: please use newer example in
plugin download.