hallo folks.
i’m developing a software made up of a controller and an output screen.
i need the output screen to go fullscreen in the external monitor (or beamer) and the controller to be in the primary screen of my laptop.
the application is very cpu and fps intensive, so i need a very fast way to implement this.
the “output” has to react instantaneously to the “controller” state.
by now, i’ve done some test using netconnection to pass values from controller to output, using 2 different swf, but i’ve come to some issues related to delay and “accumulation” of states in the output swf (probably because of the different fps of the 2 swf, since the output is more cpu intensive than the controller).
i think an approach could be using shared objects. i’m trying to use red5 to manage this, but i’m finding some problems “porting” the shared object example of red5 to as3 (so i don’t know if the speed of such a communication can fit my needs)
i’m not inside AIR, but i’m aware of the existence of the nativewindow class (but right now i don’t now if using nativewindows has some impact on performance, nor if is possible to make a native windows to go fullscreen…)
any hint?