EditText woes

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 20/02/2004 at 01:16, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   8.200 
Platform:      
Language(s) :   C.O.F.F.E.E  ;   XPRESSO  ;

---------
Can someone tell me why the following snippet fails?
// code snippet
var editTextID = 1000;

sEntryDialog::CreateLayout()
{
     
     AddEditText(1000,BFH_FIT,0,0);     
     AddDlgGroup(DR_DLGGROUP_OK|DR_DLGGROUP_CANCEL);
     return TRUE;
}

sEntryDialog::Command(id,msg)
{
     if (id==DR_DLGGROUP_OK)
          {
          if (GetInt(1000) == 12345)
          {                         TextDialog("Right number!", DLG_ICONEXCLAMATION);               }
          else{
               TextDialog("Wrong number!",DLG_ICONSTOP);                         
          }
     }
}
// end snippet

Can someone tell me why oh why GetInt or getFloat does not work with EditText?

Thanks

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 20/02/2004 at 04:23, xxxxxxxx wrote:

Ooops! My bad, I should have used "AddEditNumber" instead.