Retrieve the background color encoded in the header of an SWF file.
Availability:
First available in version 3.0 build 2039.
Input Parameters:
path - [Optional] - Path to the SWF file to be read. This parameter supports monikers.
Output Parameters:
result - The background color in #rrggbb format.
Asynchronous Mode:
When this method is called asynchronously, a return object containing the output parameters is passed to the specified callback function.
ssCore.Flash.getBackColor( paramsObject [, callbackParamsObject] [, errorParamsObject] );
Synchronous Mode:
When this method is called synchronously, a return object containing the output parameters is returned to the caller immediately.
var returnObject = ssCore.Flash.getBackColor( paramsObject );
Notes:
None.
Examples:
var return_obj = ssCore.Flash.getBackColor({path:"startdir://file.swf"});
ssDebug.trace(return_obj.result);