Tutorial: application.getParentUuid

application.getParentUuid

Retrieves UUID of the application that launches this application. Invokes the error callback if the application was created from a manifest.

Example

var application = fin.desktop.Application.getCurrent();

application.getParentUuid(function (parentUuid) {
    console.log("UUID of parent application:");
    console.log(parentUuid);
});