I'm using Flash Builder 3 to create an application. I need to set an background image for the application.I was trying to embedded background image for my Flex application, and this syntax works properly:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="init()" width="468" height="400"
fontFamily="Verdana" fontSize="10" fontWeight="bold"
themeColor="#FFFFFF" cornerRadius="10" backgroundColor="#FFFFFF" backgroundImage="@Embed(source='../Assets/BG-468x350.gif')" borderColor="#111112" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#CDEAD0, #CDEAD0]">
Above embedded image work properly, but In mozila(or any other browser) fir-bug, I had noticed that background flash image's http request was getting a 404 Not Found error, while trying to retrieve an image at
http://arvind.abcd.com/loan/loan-advice-india/@Embed(source=%27../Assets/BG-468x350.gif%27)
I couldn’t figure out why this was happening, So please suggest me possible solution for that. Thanks in advance for giving your valuable time here.