#pragma rtGlobals=1 // Use modern global access method. // This file contains the package code. It goes in User Procedures. Menu "Macros" "Hello From My Package", HelloFromMyPackage() "Unload My Package", UnloadMyPackage() End Function HelloFromMyPackage() DoAlert /T="My Package Wants to Say" 0, "Hello!" End Function UnloadMyPackage() DoAlert /T="My Package Wants to Say" 0, "Bye Bye!" Execute /P /Q /Z "DELETEINCLUDE \"My Package\"" Execute /P /Q /Z "COMPILEPROCEDURES " // Note the space after COMPILEPROCEDURES End