Feature #6
RECT Size Checks
| Status: | Resolved | Start: | 01/08/2010 | |
| Priority: | Low | Due date: | 02/28/2010 | |
| Assigned to: | Robert | % Done: | 100% |
|
| Category: | - | |||
| Target version: | 1.0 | Estimated time: | 14.00 hours | |
Description
It should be possible to define size limits (upper and lower) for the overall RECT scale
of the SWF. This is because a Flash movie of 1x1 pixels is a little bit more likely to
be potentially suspicious than one that advertises 320x200 pixels.
History
Updated by Robert 866 days ago
- Due date set to 01/14/2010
- Assigned to set to Robert
- Start changed from 12/22/2009 to 12/28/2009
- Estimated time set to 16.00
Updated by Robert 866 days ago
- Due date changed from 01/14/2010 to 01/11/2010
- Start changed from 12/28/2009 to 01/08/2010
- Estimated time changed from 16.00 to 14.00
Updated by Robert 443 days ago
- Status changed from Assigned to Resolved
- Target version set to 1.0
- % Done changed from 0 to 100
- Added MaximumStageSizeX, MaximumStageSizeY, MinimumStageSizeX, MinimumStageSizeY properties to configuration.
- Fixed in FramHeaderInfo.Parse() :
int x = Math.Abs(this._FrameSize.Xmax - this._FrameSize.Xmin);
int y = Math.Abs(this._FrameSize.Ymax - this._FrameSize.Ymin);
if (x > SWFFile.Configuration.MaximumStageSizeX)
{
Log.Warn(this, "The x value uf the stage exceeds the allowed maximum.");
}
if (x < SWFFile.Configuration.MinimumStageSizeX)
{
Log.Warn(this, "The x value of the stage under-runs the allowed minimum.");
}
if (y > SWFFile.Configuration.MaximumStageSizeY)
{
Log.Warn(this, "The y value uf the stage exceeds the allowed maximum.");
}
if (y < SWFFile.Configuration.MinimumStageSizeY)
{
Log.Warn(this, "The y value of the stage under-runs the allowed minimum.");
}