fed Posted November 17, 2009 Posted November 17, 2009 I am trying to put information into the Clipboard for use outside my FMP database. I tried this, but it doesn't seem to work. Any hellp would be greatly appreciated. Set Variable [ $Claim Info; Value:Billing Claims::LastName & ", " & Billing Claims::FirstName ] Perform AppleScript [ Calculated AppleScript: "set the clipboard to " & $Claim Info ]
Søren Dyhr Posted November 17, 2009 Posted November 17, 2009 Try this Set Variable [ $claim; Value:Value:Billing Claims::LastName & ", " & Billing Claims::FirstName ] Perform AppleScript [ Calculated AppleScript: "set the_text to " & Quote($claim) & "¶set the clipboard to the_text" ] --sd
comment Posted November 17, 2009 Posted November 17, 2009 How about a one-liner: "set the clipboard to " & Quote ( Billing Claims::LastName & ", " & Billing Claims::FirstName )
Søren Dyhr Posted November 17, 2009 Posted November 17, 2009 True but when writing AS is the error messages tough to decipher - so the less you lump together in one statement the easier is it to debug! I believe the compilation ignores the excess code? --sd
Recommended Posts
This topic is 5484 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now