December 11, 201114 yr Is there a script step that will look at the version of FMP currently running on the local machine. Comment helped me with a script (http://fmforums.com/...__fromsearch__1) that Appends to PDF. The problem is that one of my clients is running FMP8 on a MacBook Pro. Append to PDF didn't start until v.9. What I would like is for FMP to search the version he is running and then add a custom dialog letting him know that that script only works with v.9 or later.
December 11, 201114 yr Try: If [ GetAsNumber ( Get (ApplicationVersion) ) < 9 ] Show Custom Dialog Else # DO THE THING End If
Create an account or sign in to comment