Slash widget configuration does not honor absolute positions top, right, bottom and left which other UI widget configurations do support. It seems the x,y properties are hard coded in the HTMLPopupManager.as file. The documentation which discusses using top, right, bottom, and left in UI widgets is found at http://help.arcgis.com/en/webapps/flexviewer/help/widgets.htm.
最後に公開された状態: August 25, 2014No Product Found
不具合 ID 番号
NIM061037
送信されました
September 10, 2010
最終更新日
June 5, 2024
適用対象
No Product Found
見つかったバージョン
2.0
プログラム言語
Flex
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
No Public Explanation
対処法
Edit the HTMLPopulManager.as file as below. private static function showSplash(window:IFlexDisplayObject, parent:DisplayObjectContainer):void { var x:Number; var y:Number; //x = (parent.width - window.width) / 2; //y = (parent.height - window.height) / 2; x = 10; y = 10; window.move(Math.ceil(x), Math.ceil(y)); //tweenPosition(window, window.height); }