tags:

views:

23

answers:

2

Hi, I'm getting the error "could not resolve <local:flashactionscript> 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 ?

A: 

flashactionscript is the name of actionscript class.

A: 

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

shi11i