Re: [flexcoders] Flex & JavaScript

2006-11-28 Thread Claude Hussenet
Are you using the flash javascript toolkit located at http://weblogs.macromedia.com/flashjavascript/ Claude kribot <[EMAIL PROTECTED]> wrote: Hi, I'm trying to mix Flex & JavaScript, I'm using Flex Builder and I would ask if someone already try to do that, I'

RE: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-10 Thread Tracy Spratt
you think you are. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephane De Jonckheere Sent: Monday, October 10, 2005 3:03 AM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] [Flex/Javascript] Javascript function n

RE: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-10 Thread Stephane De Jonckheere
com Subject: Re: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex On 10/7/05, djok_fb <[EMAIL PROTECTED]> wrote: > 1-Embed the mxml file in a HTML page: > > > > function launchSpellChecker(someText) { > alert(some

RE: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-10 Thread Stephane De Jonckheere
7. octobre 2005 20:39 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex On 10/7/05, djok_fb <[EMAIL PROTECTED]> wrote: > 1-Embed the mxml file in a HTML page: > <html> > <head> > <sc

Re: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-10 Thread Ramu p
Hi Manish,   I guess the below works out for U!!! Try it out!!     Code for Mxml:   http://www.macromedia.com/2003/mxml">        Code for embedding mxml in HTML and call JS   "http://www.w3.org/TR/html4/loose.dtd"> Flex n HTML
 function jsFun(txt){
  alert(txt)
 }
    http://dow

Re: [flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-07 Thread Manish Jethani
On 10/7/05, djok_fb <[EMAIL PROTECTED]> wrote: > 1-Embed the mxml file in a HTML page: > > > > function launchSpellChecker(someText) { > alert(someText); > } > > > [snip] > 2- Write a AS function using getURL: > function doSpellCheck( textToCheck ) {

[flexcoders] [Flex/Javascript] Javascript function not found when called from Flex

2005-10-07 Thread djok_fb
Hi, I'm currently trying to launch a Javascript function from Flex. I searched over google and found that the way to do that was: 1-Embed the mxml file in a HTML page: function launchSpellChecker(someText) { alert(someText); } document.getElementB