Important: The information in this document is obsolete and should not be used for new development.
MySetPrompt
Color picker-defined subroutine that handles akSetPrompt
request.If you create a color picker, it must respond to the
kSetPrompt
request code. The Color Picker Manager sends this code to set the prompt string used by your color picker. A color picker responds to thekSetPrompt
request 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
YourMySetPrompt
function should set the prompt for your color picker to the one specified in theprompt
parameter.Your function should return
noErr
if 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.