0

I have a Filemaker v14 database that executes a compiled AutoIt script. It does things that Filemaker can't, then returns a fmp:// url (initiating a Filemaker script by parameters from the url). But I can't figure out how to send that url from an AutoIt script.

I used WINHTTP but it doesn't like the fmp:// protocol, and Run() in various configurations but can't find one that works.

The url works fine through a browser address bar but I need to script sending the request. The database and AutoIt script are on the same PC. Does anybody know how this might be achieved?

user4157124
  • 2,809
  • 13
  • 27
  • 42
onefish
  • 95
  • 1
  • 9

1 Answers1

3

The solution is simple:

ShellExecute("fmp://My/Really/Long/URL")
user4157124
  • 2,809
  • 13
  • 27
  • 42
onefish
  • 95
  • 1
  • 9