Why does width=stage.fullScreenWidth; function inproperly ?
Peace be upon you ![]()
I have a timebar in my flash android app (testing sample), that I want to extend horizantally to the full screen width (in all phones and tablets).
I tried many many things, visited all programming websites .. and I made use of this useful article Supporting the multiple screen sizes of multiple devices in Adobe AIR | Adobe Developer Connection
and tested them on many devices but still, something is still wrong! ![]()
when I use
1- Object(root).bar.width =stage.fullScreenWidth ; // the timebar fits the width but animates LATE
2- Object(root).bar.width =stage.stageWidth; // the timebar fits the width but animates LATE
3- Object(root).bar.width =stage.width; // the timebar doesn't fit the width but animates rightaway!
4- Object(root).bar.width =Capabilities.screenResolutionX; // the timebar fits the width but animates LATE
here the sample:testing sample.fla - Google Drive
can someone tell me why is the latency in the timebar animation !??
I want my timebar to be in it's original speed (fast) and have it to fit the screen width in any size ..
Thanks in advance ..

