Hi there,
First: R3 looks amazing and im looking foward to it.
The main reason that ive chosen resolume was the Flash AudioVar feature. The thought of creating my own nonlinear programmed visuals, controlled with midi, just blew my mind.
At the moment im learning AS3 as much as i can because of the great new features, and the huge performence boost. Im trying to catch the AudioVars from the "root", which doesnt exist anymore but im working on a script to do this anyway. which looks like this:
package {
import flash.display.Sprite;
import flash.events.Event;
public class getVars extends Sprite {
private var ball:Sprite;
public var RAudioRight8:Number;
public function getVars() {
init();
}
private function init():void {
ball = new Sprite();
addChild(ball);
ball.graphics.beginFill(0xff0000);
ball.graphics.drawCircle(0, 0, 40);
ball.x = 20;
ball.y = stage.stageHeight / 2;
ball.addEventListener(Event.ENTER_FRAME, onEnterFrame);
}
private function onEnterFrame(event:Event):void {
RAudioRight8 = root.loaderInfo.parameters.RAudioRight8;
ball.x = RAudioRight8;
}
}
}
RAudioRight8 = root.loaderInfo.parameters.RAudioRight8;
<-this is the part of interest.
Found this line of code in a Forum were people tried to reach _root Variables through php, i dont have a clue if this works with php, but it def doesnt work with Resolume. :°(
So now im here, hoping that someone has already found a solution for AS3 in Resolume and of course to ask if Resolume 3 will be able to send the audioVars to Flash AS3 Files.
I cant go back to AS2, going back and foward is to confusing.
So if someone could atleast confirm that
the Flash features of Resolume 2 will work in Resolume 3 with AS3,then i could start programming on some stuff.
This wont make the waiting easier, lots of visuals created, no way to test them. But the release day will be a lot of fun ;D