// )Copyright 1995, John Schettino InstallScript := func(partFrame, removeFrame) begin // use a delayed action so Newt can come up... addDelayedAction(func() begin // Update the Notes app to use All getroot().paperroll._Parent.labelsFilter := '_all; getroot().paperroll._Parent.filterBar:UpdateFilter('_all, '_all); getroot().paperroll:filterChanged(); // Update the Names app to use all getroot().cardfile:open(); getroot().cardfile.labelsFilter := '_all; getroot().cardfile.filterBar:UpdateFilter('_all, '_all); getroot().cardfile:filterChanged(); getroot().cardfile:close(); end, [], 500); end; removeScript := func(partFrame) begin end;