Kip Posted June 3, 2004 Posted June 3, 2004 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
lantech Posted June 3, 2004 Posted June 3, 2004 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...
Kip Posted June 4, 2004 Author Posted June 4, 2004 We use both XP and OSX. The server uses XP. About this Troy plugin...where can I get it? (yep i am new)
H.P. Posted June 4, 2004 Posted June 4, 2004 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/
Kip Posted June 8, 2004 Author Posted June 8, 2004 Thanx man! I think I can work somnething out with this info. Great help!
Joker2k_2003 Posted November 3, 2004 Posted November 3, 2004 H.P. : Would you have anymore information about the object FMPro.application? I'm trying to access info from VBScript and need a info from a global field. Thanks
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now