flash ExternalInterface.call?
Posted: Wed Feb 09, 2011 09:01
To Edwin:
I discussed this with Joris and he refered me to you, I PM-ed you some days ago but haven't received any response so far. I already found the method in ActionScript of overriding a value received by a some Resolume interface slider, but need a way to update the Resolume interface slider itself. So my question, can I somehow use ExternalInterface.call and what would the appropriate syntax be?
Given example;
I guessed using somewhere in the script something like
would do the trick but it doesn't. How can I make the slider go to value .66?
Regards
Patrick
I discussed this with Joris and he refered me to you, I PM-ed you some days ago but haven't received any response so far. I already found the method in ActionScript of overriding a value received by a some Resolume interface slider, but need a way to update the Resolume interface slider itself. So my question, can I somehow use ExternalInterface.call and what would the appropriate syntax be?
Given example;
Code: Select all
var RS_fontframe:FloatParameter = resolume.addFloatParameter("Font Frame", 0);
Code: Select all
ExternalInterface.call("RS_fontframe",0.66)
Regards
Patrick