Yeah, it is Kaptein Kronos on his neverending voyage again

PopUps are what we gonna learn in this chapter ....
1st we set our goal:
We want an colorfield-object that pops up an coloradjust-object.
Now I know that there is Poppen, but that gives you an
Pendajust-object something that is simply overkill for
this purpose (and a pain to use).
Here are some snippets:
a = MUI_NewObject(MUIC_Coloradjust,TAG_DONE);
c = MUI_NewObject(MUIC_Colorfield,MUIA_InputMode,MUIV_InputMode_Immediate,TAG_DONE);
b = MUI_NewObject(MUIC_Popobject,
MUIA_Popstring_Button, PopButton(MUII_PopUp),
MUIA_Popobject_Object, a,
TAG_DONE);
.
.
.
Child, HGroup,
Child, HSpace(0),
Child, c,
Child, b,
.
.
.
DoMethod(c,MUIM_Notify,MUIA_Pressed,TRUE, b,1,MUIM_Popstring_Open);
This does work o.k. sofar, but I want to get rid of that popup-button
(the small one with the arrow down), but sofar everything I
tried to make it invisible ended in either a crash, or the whole
popup being lost.