• Cocoon
    Cocoon
    ciVic
    Posts: 45 from 2013/6/2
    In fact its here:

    Code:

    while (running)
    {
    ULONG id = DoMethod((Object *)app,MUIM_Application_NewInput,&sigs);
    .
    .
    .
    case MEN_SWITCH_USER:
    fr = (struct FileRequester *)MUI_AllocAslRequest(ASL_FileRequest, frtags);
    if (fr != NULL)
    {
    if (MUI_AslRequest(fr, NULL))
    {
    }
    FreeAslRequest(fr);
    }
    else printf("User Cancelledn");
    break;
    }
    if (running && sigs) Wait(sigs);
    }


    It seems that a PopaslObject is a better choice. However, I don't see how to use it in a menu without buttons in the window. Any help?

    [ Editiert durch ciVic 14.06.2015 - 21:29 ]
  • »14.06.15 - 21:56
    Profile