Get Macromedia Flash version: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.) |
m (SF: Joelito -> Joel.) |
||
Line 34: | Line 34: | ||
</highlight-nsis> | </highlight-nsis> | ||
Page author: [[User: | Page author: [[User:Joel|Joel]] |
Revision as of 17:42, 27 April 2005
The Script
; Let's read the version of Macromedia Flash AvtiveX version OutFile "FlashVer.exe" Name "Detect Macromedia Flash Player version" Caption "Detect Macromedia Flash Player version" XPStyle "on" Function "GetFlashVER" Exch $0 GetDllVersion "$SYSDIR\Macromed\Flash\$0" $R0 $R1 IntOp $R2 $R0 / 0x00010000 IntOp $R3 $R0 & 0x0000FFFF IntOp $R4 $R1 / 0x00010000 IntOp $R5 $R1 & 0x0000FFFF StrCmp $R2 "0" +3 0 StrCpy $1 "$R2.$R3.$R4.$R5" Goto +2 StrCpy $1 "No file version" Exch $1 FunctionEnd Function ".onInit" Push "flash.ocx" Call "GetFlashVER" Pop $1 MessageBox MB_OK|MB_ICONINFORMATION "File: $0 $\r$\nVersion: $1" Quit FunctionEnd Section "-boo" ; SectionEnd
Page author: Joel