FlashPlayerControl Help >> Access to Native Flash ActiveX Interface >> Methods
Description
Message
Structure
struct SFPCTSetPropertyNum
{
struct
{
LPCTSTR lpszBuffer;
} target;
int property;
double value;
HRESULT hr;
};
|
Example
void InvokeTSetPropertyNum(HWND hwndFlashPlayerControl, LPCTSTR target, int property, double value)
{
SFPCTSetPropertyNum info;
info.target.lpszBuffer = target;
info.property = property;
info.value = value;
::SendMessage(hwndFlashPlayerControl, FPCM_TSETPROPERTYNUM, 0, (LPARAM)&info);
if FAILED(info.hr)
{
}
else
{
}
}
|
Flash versions
5: supported
6: supported
7: supported
Copyright © 2004 Softanics. All rights reserved.
Delphi is a trademark of Borland Software Corporation.
Macromedia and Shockwave Flash are trademarks of Macromedia, Inc.
|