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

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

Recommended Posts

Posted

Filemaker Pro7 seems (or proclaims) to be much more flexable when you want to work with different filetypes. What I want to know is the following:

We have several composers supplying a musicfile in different sound formats on our ftp server. They use specific codes so that it

Posted

I have just started playing with the Troi File plugin and it would seem to be able to do the job for you, I recommend you give it a try...

Posted

We use both XP and OSX. The server uses XP. About this Troy plugin...where can I get it? (yep i am new)

Posted

Under Mac, you can use ApplesScript to do that. I am not sure how though. Search in this forum. I'm sure someone has posted about it before.

Under Windows, you can use filemaker to trigger an external program to do all the renaming/file changing first and then return to filemaker. I personally use filemaker to trigger an excel file with macro enabled to grab filenames and other information and then make it return to Filemaker automatically.

VB Code to return back to the current active Filemaker and trigger a script automatically:

Sub FMController()

Dim FMApp As FMPRO70Lib.Application

Dim FMDocs As FMPRO70Lib.Documents

Dim FMActiveDoc As FMPRO70Lib.Document

Set FMApp = CreateObject("FMPRO.Application")

FMApp.Visible = True

Set FMDocs = FMApp.Documents

Set FMActiveDoc = FMDocs.Active

Debug.Print FMActiveDoc.FullName

FMActiveDoc.DoFMScript ("Import Item")

Set FMActiveDoc = Nothing

Set FMApp = Nothing

BatFileController.closing

ThisWorkbook.Save

ThisWorkbook.Close

End Sub

It's not hard to do it in windows and doesn't take a long time either.

Alternatively, you can buy Troi plugin to do file manipulation. However, Troi hasn't released this plug-in for Filemaker 7 yet. It's only supporting up to version 6 now.

Troi plug-ins: http://www.troi.com/

  • 4 months later...

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