hey ,... i work on a specific project,...
at this time,... i communicate between an Air application in flex and Weborb for .net to communicate with an application coded in c#. this application coded in c# is a media center/domotic console i work on a skin in Air format for this application i use the air application because i can with that make an tranparent background for swf compiled in an air application so with the flash compiled in the air application can be use swf (with transparent background) in the console frontend the communication with flex/air skin application and weborb to a .dll coded in c# is OK with that code in flex """<?xml version="1.0" encoding="utf-8"?> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Script> <![CDATA[ import mx.rpc.events.ResultEvent; import mx.controls.Alert; import mx.rpc.events.FaultEvent; private function gotHelloResult( result:ResultEvent ):void { Alert.show("Server responded " + result.result ); } ]]> </mx:Script> <mx:RemoteObject id="notepadServiceProxy" destination="GenericAIRDestination" source="edAPI.FlashAPI"> <mx:method name="SayHello" result="gotHelloResult(event)"/> </mx:RemoteObject> <mx:Button label="Flash Message" click=" notepadServiceProxy.SayHello()"/> </mx:WindowedApplication> """ and with the .dll in c# ""using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace edAPI { public class FlashAPI { public String SayHello() { return "hello world"; } } } "" my air skin application is made with papervision 3d is a vision in a 360 panoramic view (like a real ""planetarium"") so if i want to make my dream real i must be able to display in my 3d scene the recieved informations from the console for example a 3d wall presentation for the movie or the music albums... i need to be able to put the information from the console into the ""<mx:Script><![CDATA[..HERE..]]></mx:Script>"" to diplay the received infromation from the console and not in an ""flex component "" but really in the "script" zone.... to integrate the response of the console in my 3d scene But i can't do that... :((( is it possible?? REM i dont know if that make sense to you or if you understand what i say, sorry for my expression thansk for your comprehension

