Hi,

I have to integrate adobe flex in my qooxdoo application. I have added the
flex application successfully by HtmlEmbed object.

Now I need to call the function in flex from my qooxdoo method.

I tried for following code,

        function getFlexApp(appName)
        {
          if (navigator.appName.indexOf ("Microsoft") !=-1)
          {
            return window[appName];
          }
          else
          {
            return document[appName];
          }
        }

getFlexApp('Connection').flexFunction();

Here ‘Connection’ is id of my flex application.
I added flex as follows…

var test = '    '
+'                      '
+'                      '
+'                      '
+'                      '
+'                      '
+'                      '
+'      '; 

  
  var htmlEmbed = new qx.ui.embed.HtmlEmbed(test);
  this.add(htmlEmbed);

Now, my code is working fine for firefox but for IE is not working.
Can any one help me in this issue…
 
Thanks in advance…
Vishal.
-- 
View this message in context: 
http://www.nabble.com/Integrating-Adobe-Flex-in-qooxdoo-tf4285711.html#a12199686
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to