uwp_show_help OBSOLETE

This function launches the Xbox One help app which will in-turn display your game's help file (which is an HTML format file that you have previously uploaded to the XBox Developer Portal). Note that a user ID is specified when calling this function so that the user's locale information can be used when displaying it. You can retrieve the user ID with the functions xboxlive_get_user(), xboxlive_get_activating_user(), or uwp_license_trial_user().

 

Syntax:

uwp_show_help(user_id);

ArgumentTypeDescription
user_idXbox User IDThe User ID pointer to open the helpfile for.

 

Returns:

Boolean

 

Example:

if (gamepad_button_check_pressed(0, gp_start))
{
    if (uwp_license_trial_version())
    {
        var _uid = uwp_license_trial_user;
        uwp_show_help(_uid);
    }
}

The above code checks to see if a button is pressed and then checks the app to see if it is running with a trial licence. If it is, then it gets the User ID for licence and opens the help file for that user.