Page 1 of 1

FM 11 behave differently when click into an event

PostPosted: Tue Apr 06, 2010 10:14 pm
by verybless
In FM10, when we clicked into an event ( example the Month View), the event window pops up and the Month View stays as it is in the background. This is what we wanted

Recently we upgraded FM to version 11. Now when we clicked into an event (be it in Month or Week or Day view), the event window pops up as before but the original layout switch to what looks like a week view with no events showing. When we close the pop up window, we are looking at a blank screen. This is not what we wanted

Suspect something to do with FM 11. How do I 'get back' FM10 behavior ?

Thank you

PostPosted: Wed Apr 07, 2010 1:13 am
by Rodney Dawson
The same thing had happened to me.
The version 5.53 fix took care of it.

The version number for your copy of SeedCode Calendar can be found at the top left of the home screen or in the field CalendarInterface::VersionCalc.
The latest build of the new FM10 calendar is 5.53 (March 16, 2010). This build addresses two bugs. The first caused the calendar to refresh in the background when a new window was called in FileMaker 11. To fix this in your copy, edit the script "Load Calendar Layout" and find the comment "So we don't run this on spawning new windows...."
Change the If() statement the follows from this:
Get ( WindowLeft ) ≤ - 2000
To this:
Get ( WindowLeft ) ≤ - 2000 or Get ( WindowName ) ≠ $$sc_SolutionWindowName
The second bug involved the calendar not behaving correctly on the Grid view when set to the scale "day". You can find instructions for making the requisite changes in your file here: change list & instructions.

PostPosted: Wed Apr 07, 2010 5:52 am
by John Sindelar
Thanks for posting that Rodney! Here is a link to the original change list:

http://www.seedcode.com/pmwiki/pmwiki.p ... ionHistory

FM 11 behave differently when click into an event

PostPosted: Wed Apr 07, 2010 9:49 pm
by verybless
Thank you very much. I got it fixed