July 11 2009 by
admin in
Flex |
In this article you will learn how to add custom event to flex component using action script class. In a large flex applicaiton its always needed to split the applicaiton into small small flex components. Adding custom events to the compoents can make easier for developers to communicate between different components.
Here is how you can [...]
March 24 2009 by
admin in
Flash |
When you set the abosolute position of html div element over the flash component , the html div content will be always under the flash
element. This happens because flash always takes precedence over html divs no matter what the z-index is set for html element.
Soln:
Set the wmode parameter of flash component to transparent.
<param name=”wmode” value=”transparent”>
Or
<script [...]