Returns the text that is stored in the quick find box.
Get(QuickFindText)
None
text
FileMaker Pro 11.0
Use this function to pass the text that's in the quick find box to a script when you override the Perform Quick Find command in a custom menu set.
Performs a quick find using the text entered in the quick find box. If no records are found, returns a custom error message.
Perform QuickFind [Get ( QuickFindText )]
If [Get ( LastError ) = 0]
Go to Layout ["Invoice Details" ( Invoices )]
Go to Record/Request/Page [First]
Else
Show Custom Dialog ["There are no invoices containing \"" & Get ( QuickFindText ) & "\""]
End If