Hi,

   I had problems with dropping the component on stage.

   Try instanciating it in code:

   import com.blitzagency.xray.util.XrayLoader;

   class Application extends MovieClip {

   function onLoad() {
XrayLoader.addEventListener(XrayLoader.LOADCOMPLETE, this, "xrayLoadComplete"); XrayLoader.addEventListener(XrayLoader.LOADERROR, this, "xrayLoadError");
       XrayLoader.loadConnector("xrayConnector_1.6.2.swf");
      //...
   }

   private function xrayLoadComplete():Void
   {
       _global.tt("xrayLoadComplete called");

       //start your application logic here...
       loaded();
   }

   private function xrayLoadError():Void
   {
       trace("an error occurred loading the Xray connector");
   }

   } //end class

Ogla Sungutay wrote:
Hey guys,

I'm trying to test XRay with the Flash IDE connector, but I'm getting either
no swf to communicate error or Established connection is in use... error.

* I'm using Flash 8 IDE + XRay Flex2 Interface + xray_conn_1.6.2.mxp <http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/xray_conn_1.6.2.mxp?format=raw>
 * Both swfs are under some directory of C:
* In the simple test.swf I can add the component + the counter and that little thing is visible :)

This is the first time I'm using the IDE for maybe 5 years, wheww.., maybe I'm doing something silly.




------------------------------------------------------------------------

_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org
_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to