Error: transcoding parameter ‘symbol’ is not supported by ‘flex2.compiler.media.DataTranscoder’

Hi,

if you’ve run on the Error: transcoding parameter 'symbol' is not supported by 'flex2.compiler.media.DataTranscoder' error recently, then you’re not alone.

I’ve updated my FlashDevelop recently (and with FD updated the Flex SDK – the offender) and one of my projects suddenly stopped publishing, the error was pointing to the Embed tag.

		[Embed(source = "../../../../../gd_logo.swf", 
		mimeType = "application/octet-stream", 
		symbol="com.greladesign.library.logo.GrelaDesignLogo" )]

I was searching on the internet, but couldn’t find anything, however good soul on FD forum has gave me the answer which is:

Remove the mime-type.

		[Embed(source = "../../../../../gd_logo.swf", 
		symbol="com.greladesign.library.logo.GrelaDesignLogo" )]
This entry was posted in bugs, flash and tagged , , , , , . Bookmark the permalink.