I have an "reverrorreport" when i quit by the quit menu or by command-Q
on a standalone rev 4.0.
No error if i quit by a btn "quit"
Code: Select all
on appleEvent theClass,theID,theSender --•• quit par menu
put theclass & theID into bufAE
if bufAE is "aevtquit" then
debQuitter
end if
end appleEvent
on debQuitter --•• from btn "Quit"
open cd "Sommaire"
send "FaitSortie" to cd "Sommaire"
savePref
quit
end debQuitter
Jean-Marc