Hi,
I would like to use this skin within blog.de
The flash player is installed on our own server, the new skin as well.
Problem: I can´t see the player... Can anyone help and tell me what´s wrong with our code?
++++++++++++++++++++
<object width="600" height="338">
<param name="movie"
value="http://ourserver.de/np/player.swf?file=http://ourserver.de/test/testschleife.flv"/>
<param name="flashvars"
value="image=http://ourserver.de/test/testschleife.jpg&height=338&skin=http://www.ourserver.de/np/skins/nacht/nacht.swf
"/>
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<embed width="600" height="358"
flashvars="image=http://ourserver.de/test/testschleife.jpg&height=338&skin=http://www.ourserver.de/np/skins/nacht/nacht.swf" allowfullscreen="true" quality="high" src="http://ourserver.de/np/player.swf?file=http://www.ourserver.de/test/testschleife.flv"
type="application/x-shockwave-flash"/></object>
Adobe Flash Player security restrictions require that the movie (mediaplayer.swf or player.swf or imagerotator.swf) and all data files (playlist.xml, captions.xml, skin.swf, plugin, etc.) MUST come from the EXACT same domain unless you put a cross-domain policy file on the root of the server that is serving the data files.
Reference: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14213
Therefore, you must either:
1) serve the data file(s) (playlist.xml, captions.xml, skin.swf, plugin, etc.) from the same domain as the movie (mediaplayer.swf or player.swf or imagerotator.swf),
2) or serve the data files through a proxy at the same domain as the movie, so it appears that they both come from the same domain,
3) or place a cross-domain policy file on the server that is hosting the data file(s).
Domains must be EXACTLY the same. "www.domain.com" and "domain.com" are not exactly the same.
In your case, it looks like you are intermixing "www.ourserver.de" with "ourserver.de". Those domains are not EXACTLY the same.