Issue report by seevogel
Product
FileMaker ProVersion
11, 12 and maybe othersOperating system version
OSX 10.9.1Description of the issue
tell application "FileMaker Pro 11 Advanced"sort layout "myLayout" by field "name" of table "myTable" of database "myDatabase" in order ascending
end tell
TURNING INTO:
tell application "FileMaker Pro 11 Advanced"
sort layout "myLayout" by field "name" of table "myTable" of database "myDatabase" in order stop
end tell
Steps to reproduce the problem
create a new database with the given Names and enter some records.Open the AppleScript-Editor and enter following code:
tell application "FileMaker Pro 11 Advanced"
sort layout "myLayout" by field "name" of table "myTable" of database "myDatabase" in order ascending
end tell
Actual result
the script running without recognizable problems BUT:If you look below to the bottom of the AppleScript-Editor "Events"
"ascending" turned into "stop".
"descending" turning into "note"