0
我在動作腳本/ Flex框架初學者錨Flex組件和我面臨的一個問題:屏幕在正常模式和全屏模式下
我想有一個像菜單欄總是在正常和全屏幕模式下錨定屏幕底部...
我嘗試設置我的組件的底部=「1」(所以它應該始終在舞臺底部1像素...但..否:)
這裏我的flex xlm:
<mx:Canvas>
<mx:UIComponent id="isoHostContainer" x="0" y="0" />
<mx:HBox id="_menu_hbox" bottom="1" backgroundColor="0Xff0000" borderStyle="solid" borderVisible="true" >
<mx:Button label="Zoom +" click="button1_zoom_increase_clickHandler(event)" labelPlacement="bottom" />
<mx:Button label="Solid Red" click="{box1.fill = new SolidColorFill(0xFF2222, 1);}" labelPlacement="bottom"/>
<mx:Button label="Transparent" click="{box1.fill = new SolidColorFill(0xFF2222, 0.2);}" labelPlacement="bottom" />
<mx:Button label="Fullscreen toogle" click="button_fullscreen_clickHandler(event)"/>
<mx:Button label="Zoom -" click="button2_zoom_decrease_clickHandler(event)" labelPlacement="bottom"/>
</mx:HBox>
</mx:Canvas>
如果你有答案,它將是偉大的!
謝謝!
不幸的是它不起作用!奇怪,因爲你的答案是邏輯.. – 7vingt
什麼含有畫布,出於好奇? – elrobis
isoHostContainer是用於顯示立體數據的圖... 現在我不使用帆布: '代碼 的 的 ... ' 仍然是相同的問題 –
7vingt