!+ ! Script to retrieve the current Phantom for Windows Product Registration Key. ! ! Save this script to a text file and then use the "open file" icon to load ! it into Phantom. The execute it with the "fast play" button. ! !- Init: SetPhantom Normal FastPlay SetStringEscapeCharacter ~ CapsLockOff NumLockOff ScrollLockOff Return ! The Start:: label identifies the default entry point for ! the script. Start:: k = "HKEY_LOCAL_MACHINE\Software\P1 Systems Incorporated\Phantom for Windows\Registration" WriteClipboard GetRegistryValue k "Registration Key" MessageBox StayInFront Exclamation Title="Product Registration Key" Text="Your current PRK is " & (GetClipboard) & ".~n~n" & "It has been copied to the Windows clipboard. You can paste~n" & "it into the web page after clicking on the Ok button below~n" & "by clicking in the PRK text field in the web page and then~n" & "pressing Ctrl-V ." ! Terminate script execution. ExitScript