home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-31 | 636 b | 36 lines | [TEXT/R*ch] |
- /*====================================================================
- Sample 3.def ©1996 Yosuke "Basuke" Suzuki.
-
- Simple button based on tbPopupButton.
- It displays simple popup.
- ====================================================================*/
-
- partData := {
- //
- // Actual button is defined in afterscript of "Sample 3.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;
-
-