Problem solved - it was a path problem - my images folder was under
the flex_bin folder. Of course, since we are embedding an image at
compile time, the full path has to be specified, or else the images
folder needs to be a subfolder underneath the src folder.
This path works:
headerSeparatorSkin="@Embed('../flex_bin/assets/transparent.png')"
--- In [email protected], "djohnson29" <[EMAIL PROTECTED]>
wrote:
>
>
> I am trying to hide the column divider in a datagrid header.
>
> To do this, you can set an image as a skin using the
> headerSeparatorSkin property.
>
>
> <mx:DataGrid headerSeparatorSkin="@Embed('assets/transparent.png')"
>
>
> I am getting a compile time error that says:
>
> "unable to resolve 'assets/transparent.png' for transcoding"
>
> The filename and path are all correct so I'm not sure why the
compiler
> is complaining....
>