asked on
ASKER
ASKER
ASKER
ASKER
ASKER
ASKER
Software is any set of instructions that directs a computer to perform specific tasks or operations. Computer software consists of programs, libraries and related non-executable data (such as documentation). Computer software is non-tangible, contrasted with computer hardware, which is the physical component of computers. Software written in a machine language is known as "machine code". However, in practice, software is usually written in high-level programming languages than machine language. High-level languages are translated into machine language using a compiler or interpreter or a combination of the two.
TRUSTED BY
What I did to get around the issue was add an event handle to the creationComplete of the specific viewstack you are trying to access.
So when the HttpService returns the results, store them in a local variable, then, in the creationComplete handler load the results into the control you are trying to populate from the local variable rather then the HttpService.
Another thing you might want to try is only call HttpService.send() from the creationComplete.
Example:
<mx:HTTPService id="service" url="mypage.jsp" />
<mx:ViewStack id="viewstack1">
<mx:Canvas id="canvas1" name="Canvas 1">
</mx:Canvas>
<mx:Canvas id="canvas2" name="Canvas 2" creationComplete="serivce.
<mx:ComboBox id="cbx1" dataProvider="{service.las
</mx:Canvas>
</mx:ViewStack>
Let me know how that works for you!
Matt