Jump to content

Opening a file from filemaker


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

Recommended Posts

I can open a directory using Open URL function in sriptmaker.

But how can I actually automatically open a file that is in that directory?

I have s:/files (which opens) then I have doc1 which I need to open up. But I am not sure what to put after "s:/files" (is that as deep as the URL function will go?

Can this be done?

Link to comment
Share on other sites

Enter the entire file path to open the file with the default program.

To open the file with a none default program you will need to add the program location first.

""" & "C:Program FilesMy ProgramMyProgram.exe" & "" "" & "S:My FilesMyFile.doc" & """

It is very important to have the correct quotation mark locations if there are any spaces in the file paths.

The Open URL script step will open anything the "Run" window or the CMD program will open.

Link to comment
Share on other sites

Hi thanks for the response.

What about if I dont necessarily know the file name. i.e I need to add the file name form a description in a filemaker document.

so C:/mydocuments/files::filename&".jpg"

I am not always going to know what the file name will be and it will be always based upon what record I am in.

Link to comment
Share on other sites

oh wait

that won't work...

""" & "C:Program FilesMy ProgramMyProgram.exe" & "" "" & "S:My Files" & files::filename & ".doc" & """

You need to escape out the backslash.

Or better yet:

Quote( "C:Program FilesMy ProgramMyProgram.exe" ) & " " & Quote( "S:My Files" & files::filename & ".doc" )

Edited by Guest
Link to comment
Share on other sites

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