Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 8276 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Bit of a cheeky one this but I am trying to get an Applescript to take a SKU number from a field in a Filemaker database and use this information to find the the graphical image of this SKU in a Cumulus database. The Filemaker part works fine with putting the SKU number into the variable but I can't get the Cumulus part to work!

This is the script I have so far.

tell application "FileMaker Pro"

go to database "BOM.fp5"

go to layout "BOM"

set SKU to get data cell "SKU" of current record

end tell

tell application "Cumulus Single User"

open "Filemaker Server:

Posted

You should use tell statements for the databases too.

tell application "FileMaker Pro"

--tell fm to do something

tell databases "database name"

--tell database to do something

end tell

end tell

tell application "Cumulus"

--tell cumulus to do something

tell database "imagedatabase name"

--tell database to do something

end tell

end tell

This topic is 8276 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.