/*==================================================================== Sample 6.def ©1996 Yosuke "Basuke" Suzuki. Simple button based on tbPopupButton. It displays simple popup when tapping, then display another popup for result of the first popup. ====================================================================*/ partData := { // // Actual button is defined in afterscript of "Sample 6.t" // }; InstallScript := func(partFrame,removeFrame) begin // // register button // call kRegTapBarButtonFunc with (kAppSymbol, partFrame.partData.button); end; RemoveScript := func(removeFrame) begin // // unregister button // call kUnRegTapBarButtonFunc with (kAppSymbol); end;