Copyright © 2011 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hi all
I'm calling some functions within my custom kse from javascript contained on my site.
This works fine when using my locally stored flex project, using the ExternalInterface method.
However when i load the swf via the server call which uses the FlexWrapper swf to in turn load the simpleeditor swf, the communication is breaking down. I presume this is because javascript doesn't have a direct link to the simpleeditor.swf in the DOM.
The embed code is:
javascript
function changeState(value) {
thisMovie("simpleeditor").appState(value);
}
actionscript
protected function changeAppState(appState:String):void{
var state:int = new int(appState);
_model.applicationState = state;
}