Issue report by DanShockley
Product
FileMaker ProVersion
12.0v4Operating system version
Mac OS X 10.9.1Description of the issue
When communicating with FileMaker via AppleScript, it is sometimes useful to reference a document by partial name match using AppleScript's command 'every document whose name contains SOMESTRING.' Apparently FileMaker does that name match on a strict case-matching basis. This remains true even when the command is wrapped with a block 'ignoring case' - which is incorrect behavior.Steps to reproduce the problem
Have databases with similar names, but with different case patterns. For example: Invoices_A1, INVOICES_a2, and INVOICES_B.Run AppleScript that SHOULD find the two documents whose names match (case insensitively) invoices_a:
tell application "FileMaker Pro Advanced"
ignoring case
every document whose name contains "invoices_a"
end ignoring
end tell