GameTapper Posted September 10, 2007 Posted September 10, 2007 I am trying to open a file that was created in FMPro 8. After entering my username and password I get an pop-up window with the title "FileMaker 8 Required..." and the message "This template includes features that only work correctly with FileMaker Pro 8." The only option is a "close" button. When clicked the computer completely exits FileMaker Pro. I have access to FMPro 8 that I can use to edit the file but how do I know which elements are not compatible with FMPro 9? Thanks! Gideon
AudioFreak Posted September 10, 2007 Posted September 10, 2007 Right click on the file Properties>Opens With>Choose Filemaker 9 I believe that should do the trick. Michael
GameTapper Posted September 10, 2007 Author Posted September 10, 2007 FileMaker Pro 9 Advanced is the only version of FMP I have on my computer. FMPro 9 attempts to open the file and that's when I get the error message.
Ender Posted September 10, 2007 Posted September 10, 2007 It sounds like your opening script is checking the application version and looking for version 8. If you have full access to the file, try changing the If[] condition in the opening script. Look for something like: If [ get(applicationversion) = 8 ] Show Custom Dialog [ "This template includes features that only work correctly with FileMaker Pro 8." ] Exit Application End If and maybe change it to: If [ get(applicationversion) < 8 ] Show Custom Dialog [ "This template includes features that only work correctly with FileMaker Pro 8 or later." ] Exit Application End If You may need to open the file with version 8 so you can get into ScriptMaker (if you can't cancel the startup script using command-period).
GameTapper Posted September 10, 2007 Author Posted September 10, 2007 Thanks Ender. Here is the open script: ---- Go to Layout ["Welcome"] Show/Hide Status Area [Lock; Hide] Show/Hide Text Ruler [Hide] Set Zoom Level [100%] Select Window [Current Window] Adjust Window [Resize to Fit] Open File ["Music Video Library"] (I verified that the file path is correct) If [Get ( ActiveModifierKeys ) = 4] Else Close File [Current File] End If ------ I tried disabling the If...End If steps but still got the error message.
Ender Posted September 10, 2007 Posted September 10, 2007 Maybe it's in the startup script for the Music Video Library file.
Reed Posted September 11, 2007 Posted September 11, 2007 Since you have Advanced, just enable the debugger before you open the file and you'll be able to see which script contains the problematic area.
AudioFreak Posted September 11, 2007 Posted September 11, 2007 Last 2 posts are dead on. Reed, Funny how sometimes we don't think to use the tools at our disposal. Michael
GameTapper Posted September 11, 2007 Author Posted September 11, 2007 Maybe it's in the startup script for the Music Video Library file. You were right. I found the offending steps in the Open script for the Music Video Library file. I disabled the steps and everything is working like a champ! Thanks to everyone for the tips. Reed, I didn't need to use debugger because I used my home computer with 8.5. Next time I will definitely try that first before posting. Cheers, Gideon
hbrendel Posted September 11, 2007 Posted September 11, 2007 Instead of disabling the versioncheck you should alter the script steps in a way that they're going to verify the version to be GREATER than 8. Probably there are features that don't work under 7 or less.
Steven H. Blackwell Posted September 16, 2007 Posted September 16, 2007 And you should also try to find out why the version check is there in the first place. Steven
Recommended Posts
This topic is 6535 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 accountSign in
Already have an account? Sign in here.
Sign In Now