piltsen opened a new issue #1136:
URL: https://github.com/apache/royale-asjs/issues/1136
frameworks/projects/MXRoyale/src/main/royale/mx/effects/Resize.as
The file mx.effects.Resize on the constructor is passing the class IUIBase
instead of the variable.
```
public function Resize(target:IUIBase = null)
{
super(IUIBase);
}
```
I was attempting on using mx.effects.resize without success most likely
because of this issue.
I did however started using org.apache.royale.effects.Resize and it started
working.
I imagine that the solution to this issue is.
```
public function Resize(target:IUIBase = null)
{
super(target);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]