Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to flex development, i am using flashbuilder 4.7, flex4.6 for making mobile application. i want to make a footer for application navigation on mobile devices footer is always above the other contents in bottom of view, So for this i am trying to make button at bottom of view clicking on which my footer layout should slide-up/or i change text of views.

My main aim is to get button "MyButton" to be clickable while overlapping the text content present at bottom.

I am using approach like this:-

inside s:View;-

so using this as basic layout is default layout of s:view so button does appear but its not clickable, as i want it to be above the text.so that i could load next view on its click event.

if i add button before text area it is not visible, i dont want to reduce the height of textarea.

Thanks in advance.

share|improve this question
inside s:View;- <s:TextArea id="contentId" editable="false" borderVisible="false" text="{content1}" width="100%" height="100%"/> <s:Button id="MyButton" label="button2" chromeColor="green" click="{contentId.text = content2}" bottom="0"/> – dayanand Jan 23 at 10:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.