load_profile

Declaration

load_profile (name: STRING)

Description

Loads the profile name from the file system as the current profile. Use this to reload a session previously saved with save_profile.

See Also

load_profile_vars
load_variable
profile functions
Profile Manager

Example

script manage_users is
  if ask ('are you sure you want to open ' . user_name, True) then
    load_profile (user_name)
  end
end