January 18, 200521 yr I put a message under the Scriptmaker forum asking about testing in a script for the client protocol, in order to make a solution that would run under either Filemaker directly, or through IWP. Perhaps it should have been put here? Specifically, I would rather not create both a Web version and an FM version of my database, but would rather test for whether the client is using IWP or not, and if so, to activate a different set of steps. Is this possible, or advisable? What approach do others take with this sort of situation?
January 18, 200520 yr Place all the things you want only for the web inside an if block like the one below: If [ PatternCount(Get (ApplicationVersion) ;"Web") ] For more detail, look at the help for the Get (ApplicationVersion) function. Let me know if you need more help. Dana
January 20, 200520 yr Author Thanks for the reply. Presumably, testing the reverse--i.e., If [ Not ( PatternCount (Get (ApplicationVersion) ;"Web")) ] --and putting the non-compatible steps inside the If-block will work as well, yes? Just checking...
Create an account or sign in to comment