Reputation: 33
I have a 'Shell' swf as the main swf to protect other things in the project.
Shell swf's procedure is:
The problem is step 4, I want to do binary checksum of Shell swf.
Questiones are:
Upvotes: 1
Views: 383
Reputation: 497
If you create an AIR app you can temporarily load original file ("Shell.swf") in application bundle using standard URLLoader or File and FileStream. If your app will work in browser then you can get self-file-name and URL from loaderInfo and load it using URLLoader. Anyway after your verification process complete you need unload it.
Upvotes: 0