Hi all,
I’m looking to modify my stage listener to include easing using Caurina.
If anyone could be so kind as to help set me on the right track in modifying this?
I’m having trouble since this it needs to resize proportionally.
var sListener:Object = new Object();
sListener.onResize = function () {
content_mc.container_mc._width = Math.max(Stage.width, 600);
content_mc.container_mc._yscale = content_mc.container_mc._xscale;
}
Stage.addListener(sListener);
sListener.onResize();
Thanks a bunch in adavnce!