Hi, I'm building a flex charting application that receives variables from a Java applet through JavaScript. I have successfully connected the chart with the JS using FABridge and have most of the plotting working successfully.
My question is about variable types when crossing the multiple languages. The Java applet calls functions in JS, which pass through 2 ints and 1 boolean. When I do a typeof() in JS it says they are all objects. Using parseFloat() I can convert the 2 integers to numbers fine, which I can pass through to flex but I have to ignore the boolean in flex. I can't seem to convert the boolean into a useable variable type in flex. Has anybody had experience with flex applets receiving data from java applets or converting boolean objects? Thanks, J.Fraser

