Order of the Butterfly
Posts: 416 from 2003/2/24
From: Berlin
You can use this object:
Code:
Child, ausPPC = TextObject,
MUIA_Background, "",
MUIA_InputMode, MUIV_InputMode_Toggle,
MUIA_Text_Contents, "0",
MUIA_FixWidthTxt, "0",
MUIA_ShowSelState, FALSE,
End,
And then some notifies:
Code:
DoMethod(ausPPC, MUIA_Notify, MUIA_Selected, TRUE, ausPPC, 3, MUIM_Set, MUIA_Text_Contents, "1")
DoMethod(ausPPC, MUIA_Notify, MUIA_Selected, FALSE, ausPPC, 3, MUIM_Set, MUIA_Text_Contents, "0")
For the grouped 'xxxxxxx', you can use a StringObject:
Code:
Child, strXXX = StringObject,
MUIA_Frame, MUIV_Frame_None, // no frame
MUIA_Background, "", // no background
MUIA_String_Contents, "00000000",
MUIA_FixWidthTxt, "00000000",
MUIA_ShowSelState, FALSE, // if don't want a different select state
End,