Get Macromedia Flash version: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (SF: Joelito -> Joel.) |
m (Updated author links.) |
||
Line 1: | Line 1: | ||
{|align=right | |||
|<small>Author: [[{{ns:2}}:Joel|Joel]] ([[{{ns:3}}:Joel|talk]], [[{{ns:-1}}:Contributions/Joel|contrib]])</small> | |||
|} | |||
<br style="clear:both;"> | |||
== The Script == | == The Script == | ||
<highlight-nsis> | <highlight-nsis> | ||
Line 33: | Line 37: | ||
SectionEnd | SectionEnd | ||
</highlight-nsis> | </highlight-nsis> | ||
Revision as of 02:58, 30 April 2005
Author: Joel (talk, contrib) |
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