Jump to content
Server Maintenance This Week. ×

Applescript-Newbie


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

Recommended Posts

I'd like to save records in Filemaker (such as important faxes).

I'd probably need an applescript to do this but I have absolutely no idea what I'm up against. I read the help files etc., and experimented around a bit, but I still find it difficult.

Can anybody tell me how to accomplish this?

Or is there another way to save single records anywhere else on my computer?

------------------

Yeti

Link to comment
Share on other sites

What software do your faxes come from? If you have scriptable fax software, you should be able to make a script to copy the current fax and then paste it into filemaker. A script might look like this:

code:


tell application "MyFaxApplication"

copy current document to MyImportantFax

end tell

tell application "Filemaker Pro"

create new record with data MyImportantFax

end tell


This would create a new filemaker record in the current database, and put the fax document into the first defined field.

Link to comment
Share on other sites

No! I put this all wrong! blush.gif

I'm sorry, what I meant to ask is the following:

I'd like to save faxes FROM Filemaker into/onto the networkfile where all the documents go that belong to tha same project.

So it doesn't have to go in, it has to go out!

Phew, I hope this makes sense....

------------------

Yeti

Link to comment
Share on other sites

I don't really think you need AppleScript to do this. Just set up a regular Filemaker script that exports your fax records to a text file. I can't be more specific without more information about how your database is set up, and what kind of file format that you want to save the faxes in.

Link to comment
Share on other sites

This topic is 8482 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.