I get this error
PlayButton.as: Error: Can not resolve a multiname reference unambiguously.
PlayButton_PlayHoverImg (from PlayButton_PlayHoverImg.as) and
buttons:PlayButton_PlayHoverImg (from buttons\PlayButton_PlayHoverImg.as) are available.
I have a project folder with buttons folder in it. I store all my button related classes in my buttons folder. However I get an ambiguity error.
I am emebding an image in the PlayButton.as class
[Embed(source = "../../resources/images/play3.png", mimeType = "image/png")]
private var PlayHoverImg:Class;
private var playHoverImpl:Bitmap = new PlayHoverImg();
So it tells me there is some problem with the image I embed. What could be the problem?