New extension for HyperXTalk Package Manager

This extension will allow your applications to use the fingerprint scanner on a MacBook to authenticate the end user. No biometric information is passed to your application, just a simple true of false .

on MouseUp
  if (macBiometricAuthIsAvailable()) then
    if (macAuthenticateWithBiometrics(“launch 99 red balloons.”)) then
      answer “99 red balloons launched”
    else
      answer “Launch aborted”
    end if
  end if
end MouseUp
1 Like