Are you using relative paths to load movies?<br><br>Looking at your xml, i see you have the filenames there, so are you just trying to load by name? if so, try loading at the full path, such as:<br><br><a href="http://www.totalimagematrix.com/logoTest.flv">http://www.totalimagematrix.com/logoTest.flv</a><br>
<br><br><div class="gmail_quote">On Mon, Mar 10, 2008 at 11:31 AM, Timothy Garner &lt;<a href="mailto:aussietmbo@gmail.com">aussietmbo@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>ok, </div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; Here is the majro issue. I&#39;m working on a project that loads video through xml to Papervision3D planes via the VideoStreamMaterial. </div>
<div>&nbsp;</div>
<div>It works in the testing phase but I continuosly get the security sandbox error to do with access to Bitmap. I&#39;ve tried everything I can get my hands on about policy to fix this but I still get the same error and the strangest thing is that it&#39;s only the newest version of Flash player 9 that gives me the error, older versions run the program perfectly.</div>


<div>&nbsp;</div>
<div>Any suggestions are where to go from here. To see an example of what I&#39;m talking about here is the link and use the flash debugger to see the errors.</div>
<div>&nbsp;</div>
<div><a href="http://www.totalimagematrix.com/cubeNavigation4.html" target="_blank">www.totalimagematrix.com/cubeNavigation4.html</a></div>
<div>&nbsp;</div>
<div>Everything is pulling from the same domain and it makes no sense why I continue to get this error.</div>
<div>&nbsp;</div>
<div>Thanks,</div>
<div>&nbsp;</div>
<div>Tim G</div><div><div></div><div class="Wj3C7c">
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><br><br>&nbsp;</div>
<div class="gmail_quote">On Sat, Mar 8, 2008 at 6:29 PM, Sinisa Rudan &lt;<a href="mailto:sinisa.rudan@gmail.com" target="_blank">sinisa.rudan@gmail.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">In which way it won&#39;t work?<br><br>One additional thing related to <span style="font-weight: bold;">crossdomain and images</span>.<br>

If you want to access the content of the loaded image from AS (<code><font style="color: rgb(0, 0, 153); font-family: arial,sans-serif;" size="2">Loader.content</font>)</code>, then you should set the context of load instruction to check the policy file.<br>

<span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">import flash.system.LoaderContext;</span><br style="color: rgb(0, 0, 153); font-family: courier new,monospace;"><span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">context = new LoaderContext();</span><br style="color: rgb(0, 0, 153); font-family: courier new,monospace;">

<span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">context.checkPolicyFile = true;</span><br style="color: rgb(0, 0, 153); font-family: courier new,monospace;"><span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">loader=new Loader();</span><br style="color: rgb(0, 0, 153); font-family: courier new,monospace;">

<span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">var request:URLRequest = new URLRequest(url);</span><br style="color: rgb(0, 0, 153); font-family: courier new,monospace;"><span style="color: rgb(0, 0, 153); font-family: courier new,monospace;">loader.load(request, context);</span><br>

<br>
<p>If you attempt one of these operations without having specified <code>checkPolicyFile</code> at loading time, you may get a <code>SecurityError</code> exception because the needed policy file has not been downloaded yet.</p>


<p>When you call the <code>Loader.load()</code> method with <code>LoaderContext.checkPolicyFile</code> set to <code>true</code>, Flash Player does not begin downloading the specified object in <code>URLRequest.url</code> until it has either successfully downloaded a relevant cross-domain policy file or discovered that no such policy file exists.</p>

<br>All the best,<br>Sinisa Rudan<br>--------------------------------------------------------------------------<br>Associate editor of multimedia part of <span style="font-weight: bold;">InfoM </span>Journal,<br>Journal of Information technology and multimedia systems.<br>

<a href="http://www.infom.org.yu/" target="_blank">http://www.infoM.org.yu</a><br><br><span style="font-weight: bold;">MAGIC WAND <span style="color: rgb(255, 0, 0);">solutions </span><font size="4">* </font>Studio</span><br>

founder and owner<br><a href="http://www.magicwandsolutions.com/" target="_blank">http://www.MagicWandSolutions.com</a><br><a href="http://www.sinisarudan.com/" target="_blank">http://www.sinisarudan.com</a><br>--------------------------------------------------------------------------<br>

<br>
<div><span class="gmail_quote">2008/3/8, Timothy Garner &lt;<a href="mailto:aussietmbo@gmail.com" target="_blank">aussietmbo@gmail.com</a>&gt;:</span> 
<div>
<div></div>
<div>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div>Thanks!</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>That worked fantastic. One issue though, It seems the newest version of flash player won&#39;t play my swf&#39;s correctly. And it seems to be only with IE. Firefox runs them fine. </div>
<div>&nbsp;</div>
<div>Any suggestions?</div>
<div>&nbsp;</div>
<div>Tim</div>
<div><span>
<div><br><br>&nbsp;</div>
<div class="gmail_quote">On Thu, Mar 6, 2008 at 9:38 PM, Karega McCoy &lt;<a href="mailto:karega.mccoy@gmail.com" target="_blank">karega.mccoy@gmail.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">Tim you are going to have to create a an XML file named<br>crossdomain.xml that will establish a policy for your own<br>

localdirectory. &nbsp;First ensure that you have the paths correctly<br>entered in your source code and then create the XML with the following<br>tags and content...<br><br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;!DOCTYPE cross-domain-policy SYSTEM<br>

&quot;<a href="http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd" target="_blank">http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd</a>&quot;&gt;<br>&lt;cross-domain-policy&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp;&lt;allow-access-from domain=&quot;*&quot; secure=&quot;true&quot;/&gt;<br>

&lt;/cross-domain-policy&gt;<br><br>Note the most important tag in the markup, &lt;allow-access-from<br>domain=&quot;*&quot; secure=&quot;true&quot;/&gt;, this ensures that you are able to access<br>the content in the directory where the data is stored from any server<br>

hosting your SWF. &nbsp;Be aware that allow-access-from domain=&quot;*&quot; is a<br>wildcard so anyone else can access assets stored on the direct where<br>this file has been placed. &nbsp;To restrict access to specific domains<br>

please enter the domain name where you plan to place your SWF where<br>the * is located.<br><br>The secure property of the tag notes that if the assets are located on<br>an server with https protocol that only a server with https protocol<br>

may access those assets.<br>
<div>
<div></div>
<div><br><br>On 3/6/08, Timothy Garner &lt;<a href="mailto:aussietmbo@gmail.com" target="_blank">aussietmbo@gmail.com</a>&gt; wrote:<br>&gt; Ok this is really strange and I hope someone out there has the answer.<br>&gt;<br>

&gt; I&#39;m using 3D planes and xml to play videos in Flash w/ GreatWhite.<br>&gt;<br>&gt; While testing in flash I get this error:<br>&gt;<br>&gt; &quot;SecurityError: Error #2123: Security sandbox violation: BitmapData.draw:<br>

&gt; file:///C|/Work/FlashLoaded/Project1/cubeNavigation4.swf<br>&gt; cannot access unknown URL. No policy files granted access.&quot;<br>&gt;<br>&gt; However if I publish the swf. and run it from the desktop or hardrive it<br>

&gt; runs perfectly. The VideoStreamMaterials changes and updates correctly.<br>&gt;<br>&gt; but then when I upload to my domain - it&#39;s stops functioning properly!<br>&gt;<br>&gt; Why does it work from my own harddrive and not from the web or in flash?<br>

&gt;<br>&gt; I know this is a Security issue, just unsure how to solve it.<br>&gt;<br>&gt; Thanks in advance.<br>&gt;<br>&gt; Tim G<br></div></div>&gt; _______________________________________________<br>&gt; osflash mailing list<br>

&gt; <a href="mailto:osflash@osflash.org" target="_blank">osflash@osflash.org</a><br>&gt; <a href="http://osflash.org/mailman/listinfo/osflash_osflash.org" target="_blank">http://osflash.org/mailman/listinfo/osflash_osflash.org</a><br>

&gt;<br>&gt;<br><br>_______________________________________________<br>osflash mailing list<br><a href="mailto:osflash@osflash.org" target="_blank">osflash@osflash.org</a><br><a href="http://osflash.org/mailman/listinfo/osflash_osflash.org" target="_blank">http://osflash.org/mailman/listinfo/osflash_osflash.org</a><br>

</blockquote></div><br></span></div><br>_______________________________________________<br>osflash mailing list<br><a href="mailto:osflash@osflash.org" target="_blank">osflash@osflash.org</a><br><a href="http://osflash.org/mailman/listinfo/osflash_osflash.org" target="_blank">http://osflash.org/mailman/listinfo/osflash_osflash.org</a><br>

<br></blockquote></div></div></div><br>_______________________________________________<br>osflash mailing list<br><a href="mailto:osflash@osflash.org" target="_blank">osflash@osflash.org</a><br><a href="http://osflash.org/mailman/listinfo/osflash_osflash.org" target="_blank">http://osflash.org/mailman/listinfo/osflash_osflash.org</a><br>

<br></blockquote></div><br>
</div></div><br>_______________________________________________<br>
osflash mailing list<br>
<a href="mailto:osflash@osflash.org">osflash@osflash.org</a><br>
<a href="http://osflash.org/mailman/listinfo/osflash_osflash.org" target="_blank">http://osflash.org/mailman/listinfo/osflash_osflash.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>: : ) Scott<br><br>Helping your grandma on the interweb<br>at: <a href="http://blog.criticalpile.com">http://blog.criticalpile.com</a>