|
Quick links:
F-IN-BOX DLL Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
F-IN-BOX DLL Edition Help >> Native Flash ActiveX Interface >> Properties AllowScriptAccess
Description
Ability to perform outbound scripting from within a SWF. Outbound scripting is achieved through use of FSCommand actions or getURL actions that specify a scripting statement. 'never' - outbound scripting always fails; 'always' - outbound scripting always succeeds.
Messages
[ C++ ] FPCM_GET_ALLOWSCRIPTACCESS FPCM_PUT_ALLOWSCRIPTACCESS Structures
[ C++ ] struct SFPCGetAllowScriptAccess
{
// [in, out]
LPTSTR lpszBuffer;
DWORD dwBufferSize;
// [out]
HRESULT hr;
};
struct SFPCPutAllowScriptAccess
{
// [in]
LPCTSTR lpszBuffer;
// [out]
HRESULT hr;
};
Example
[ C++ ]
void GetAllowScriptAccess(HWND hwndFlashPlayerControl)
{
SFPCGetAllowScriptAccess info;
info.lpszBuffer = NULL;
::SendMessage(hwndFlashPlayerControl, FPCM_GET_ALLOWSCRIPTACCESS, 0, (LPARAM)&info);
if FAILED(info.hr)
// Error
{
return;
}
info.lpszBuffer = (TCHAR*)LocalAlloc(LPTR, info.dwBufferSize * sizeof(TCHAR));
::SendMessage(hwndFlashPlayerControl, FPCM_GET_ALLOWSCRIPTACCESS, 0, (LPARAM)&info);
if FAILED(info.hr)
// Error
{
// ...
}
else
// OK
{
::MessageBox(NULL, info.lpszBuffer, _T("Result"), MB_OK);
}
LocalFree((HLOCAL)info.lpszBuffer);
}
void PutAllowScriptAccess(HWND hwndFlashPlayerControl, LPCTSTR AllowScriptAccess)
{
SFPCPutAllowScriptAccess info;
info.lpszBuffer = AllowScriptAccess;
::SendMessage(hwndFlashPlayerControl, FPCM_PUT_ALLOWSCRIPTACCESS, 0, (LPARAM)&info);
if FAILED(info.hr)
// Error
{
// ...
}
else
// OK
{
// ...
}
}
Flash versions
3: not supported
4: not supported 5: not supported 6: not supported 7: supported 8: supported 9: supported Copyright © 2004 - 2008 Softanics. All rights reserved. F-IN-BOX is a trademark of Softanics. Macromedia and Shockwave Flash are trademarks of Adobe
Quick links:
F-IN-BOX DLL Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|