Hi All,
I am working on landscape. I want to avoid auto rotation of Flash Lite content on Nokia E66.
I have a solution
var stageSizeListener:Object = new Object();
stageSizeListener.onResize=function()
{
if(Stage.width > Stage.height) {
_root._rotation = -90;
_root._x = 0;
_root._y = 200;
}
}
Stage.addListener(stageSizeListener);
All of movie clip are rotated, except for dynamic text. Text in dynamic text didnot rotate.
I don't why?
Please help me.
Thanks.




