Skip to content

Commit

Permalink
better failure output from ClipboardXmlToFmObjects
Browse files Browse the repository at this point in the history
  • Loading branch information
DanShockley committed Jul 29, 2024
1 parent ab545c9 commit 507b5ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Support/ClipboardXmlToFmObjects.fmfn
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ Let ( [
];
Case (
IsEmpty ( objectType )
; "Could not identify any FileMaker objects in the clipboard, which begins with the following text: "
& Char ( 13 ) & Left ( textFromClipboard ; 100 )
; "Could not identify any FileMaker objects in the clipboard, which"
& If ( not IsEmpty ( textFromClipboard )
; " begins with the following text: " & Char ( 13 ) & textFromClipboard
; " contains the following clipboard formats: " & Char ( 13 ) & clipboardFormats
)
;
"Converted XML to FM object(s) of type: " & objectType
)

)



)

0 comments on commit 507b5ae

Please sign in to comment.