I am trying to embed a flash 9 movieclip in flex 2
I create a symbol called StarSymbol
give it this linkage id
com.halo2.components.star.StarSymbol
and here is my class in the appropriate directory structure
package com.halo2.components.star{
import flash.display.MovieClip;
public class StarSymbol extends MovieClip{
public function StarSymbol(){
super();
}
}
}
when I publish i keep getting this error
**Warning** The linkage identifier 'com.halo2.components.star.StarSymbol'
was already assigned to the symbol 'StarSymbol', and cannot be assigned to
the symbol 'StarSymbol', since linkage identifiers must be unique.
cheers
firdosh