Question
Rotating video in air for android
I have a problem when trying to rotate a video when using air for android on android 4 device. it works perfect on android 2.x devices. Is this a known bug? Is there a way around it?
The code is simple:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
var vid:Video = new Video();
vid.attachNetStream(ns);
ns.play("some url to a video");
addChild(vid);
vid.rotation = 90;
The video frame it turning black when i try to rotate it...
