Flash Components in Flex
I'm getting the error "could not resolve <local:flashactionscript开发者_Go百科>
to a component implementation"....
This is my mxml code....
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" xmlns:local="com.*">
<local:flashactionscript x="400" y="400"/>
can anybody help me ?
flashactionscript is the name of actionscript class.
you can use the Image tag and set its source to a flash movie like so:
<mx:Image source="assets/yourFlash.swf"/>
link: http://livedocs.adobe.com/flex/3/langref/mx/controls/Image.html
精彩评论