|
|||
|
Hi. ;D
I'm really interested in buying your application, especially for the installer and some other stuffs but i have an important question about that : how is it possible to know if the player is registered or not and provide a different flashplayer interface. ??? example : show the "demo version" movie of the flashplayer when it's not registered. Is it possible to read the registry for that ? (And check the serial number of the flashplayer application with a SQL database ?) thanks for all. |
|
|||
|
It can be done by SWFKit
![]() The registration information is stored in the registry, you can get it with the "RegKey" object. We can also offer you an activex object to check if the sn and the reg code is valid. You need not a SQL database to check the sn. You can do it this way, it's more convenient... Code:
var min_sn = xxxxxxxxx; var max_sn = xxxxxxxxx; var sn = parseInt(_get_the_sn_func()); if (sn >= min_sn && sn <= max_sn) //valid else //invalid ![]() |
|
|||
|
Hi.
I bought swfkit this morning ! *;D Where i can find the ActiveX who can help me to identify the serial number and registration code of the flashplayer application which i provide ? Thanks for all. |
|
|||
|
Here is the information of the ActiveXObject
1. File name "expiry.dll" 2. ProgID "Expiry.SWFKitExpiry" 3. Methods IsRegistered(key) Description Checks if the program is registered. Parameters key String. The unique serialization key input in "Set Projector options"->"expiry"->"unlock" Returns Boolean Register(name, sn, code, key) Description Registered the program with the specified serial number and registration code Parameters name String. Speicifes the user name sn String. Specifies the serial number code String. Specifies the registration code key String. The unique serialization key input in "Set Projector options"->"expiry"->"unlock" Returns Boolean http://www.swfkit.com/download/demo/register.zip |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|