Important: The information in this document is obsolete and should not be used for new development.
MySetPrompt
Color picker-defined subroutine that handles akSetPromptrequest.If you create a color picker, it must respond to the
kSetPromptrequest code. The Color Picker Manager sends this code to set the prompt string used by your color picker. A color picker responds to thekSetPromptrequest code by calling a color picker-defined subroutine (for example,MySetPrompt) to handle the request.
pascal ComponentResult MySetPrompt ( PickerStorageHndl storage, Str255 prompt);
storage- A handle to your color picker's global data.
prompt- The new prompt string for your color picker.
DISCUSSION
YourMySetPromptfunction should set the prompt for your color picker to the one specified in thepromptparameter.Your function should return
noErrif successful, or an appropriate result code otherwise.SEE ALSO
Listing 2-28 (page 2-44) in Advanced Color Imaging on the Mac OS illustrates how to implement this function.