webview - QNXStageWebView on top of all containers -


i developing application blackberry playbook using flex hero , html contents displayed using qnxstagewebview.but problem when add webview stage coming on top of other display objects.i not able control it.i need solve can continue work. can me solve issue???

        import mx.core.flexglobals;         import mx.events.flexevent;          import qnx.media.qnxstagewebview;          public var webview:qnxstagewebview  =   new qnxstagewebview();          protected function view1_creationcompletehandler(event:flexevent):void         {             var rect:rectangle  =   new rectangle(0,0,200,400);             webview.stage           =   stage;             webview.viewport        =   rect;             webview.zorder          =   1;          }      ]]> </fx:script> <fx:declarations>     <!-- place non-visual elements (e.g., services, value objects) here --> </fx:declarations> <s:button id="buttn" x="0" y="0"/> 

when run code not able see button. need display on top of webview.

have tried removing zorder? it's z-order-property of html arrange children in layers.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -