Jump to content

Ark_

Newbies
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Ark_

  1. We have a web server, it is a webshop and I want to embed a FileMaker generated site, but when I use the iframe tag, Opera and other browsers say "The website does not permit its content to be displayed in a frame. It must be displayed in a separate window." How can I sat in an XSLT the HTTP Header "X-Frame-Options"? I think I had to use the "fmxslt:set_header" somehow?
  2. The solution, it took me a week to solve: -) The web viewer use the com.apple.internetconfig.plist preference to determinate the download folder, this is an obsolete method, Apple removed the Internet preference pane in Mac OS 10.3. (http://help.filemaker.com/app/answers/detail/a_id/6162/~/filemaker-pro-or-advanced-8.5-crashes-when-viewing-a-web-viewer-object) Now I can use this AppleScript to parse out the path: set kimenet to (do shell script "/usr/libexec/PlistBuddy -c "Print :Version 2.5.4:ic-added:DownloadFolder:ic-data" ~/Library/Preferences/com.apple.internetconfig.plist") as text set kim1 to (offset of ":U" in kimenet) + 1 set kim2 to (offset of "" in kimenet) - 2 set kim3 to text kim1 thru kim2 of kimenet
  3. Hello, I want to import a CSV file downloaded by a Web Viewer in a script. How can I determinate the file path and the file name? This will be a multi-user solution with Mac clients.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.