RE: [flexcoders] FLEX2 - Adding license parameters

2007-10-18 Thread Stephane De Jonckheere
Hello again,

I still have the problem.

 

When installing FB2 and registering it, it asks for the FB serial number
and we can input the charting one. If I do that, Flex app compiled with
FB doesn't have the watermark.

 

For deployment purpose, I use an ANT script that build pre-configured
version of our web application.

I'm using Flex Ant Task (but I also tried a home made mxmlc task) with
FLEX_HOME pointing at the same framework. License.properties file is
correctly set for FDS and CHARTING. I also add licensing parameters to
the mxmlc task. But produced SWF is still having the watermark.

 

What am I doing wrong?

I read that I might need to recompile the Charting component. How do I
do that? There is no explanation.

I mean, the charts.swc file has a specific structure, do I have to build
it by hand?

 

Thanks in advance,

Stephane

 

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Stephane De Jonckheere
Sent: 13 septembre 2007 12:18
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [FLEX-ANT] Adding license parameters

 

Hello,

I try to use Flex Ant Task to create a production version with flex
charting and fds.

 

Even if I put the license parameters in the license.properties of the
framework, mxmlc is not generating a version that uses the licenses.

I add the following parameters in the MXMLC task:

license product=charting serial-number=serialnumberhere /

I also tried something like:

license

productcharting/product

serial-numberserialnumberhere/serial-number

/license

 

But it's rejected by the ant program.

 

Does anybody knows the syntax to use with the license tag?

 

Thanks in advance

 




This email and any attachments transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they are
addressed. If you are not the intended recipient, any disclosure,
copying, use, or distribution of the information included in this
message and any attachments is strictly prohibited.

If you have received this email in error please notify the system
manager at [EMAIL PROTECTED] or by reply e-mail and immediately and
permanently delete this message and any attachments. Thank you.

 




 

 



This email and any files transmitted with it contain confidential information 
and are intended solely for the use of the individual or entity to whom they 
are addressed. If you are not the intended recipient, you are hereby notified 
that any disclosure, copying, use, or distribution of the information included 
in this message and any attachments is strictly prohibited. If you have 
received this email in error please notify the system manager at [EMAIL 
PROTECTED] or by reply email and immediately and permanently delete this 
message and any attachments. Email transmission cannot be guaranteed to be 
secure or error-free and may be susceptible to data corruption, delay, 
interception, unauthorised amendment, or contain viruses. The sender therefore 
does not accept liability for any errors, omissions or other such consequences 
which may arise as a result of this email transmission. 




RE: [flexcoders] Flash player 9 standalone download

2007-09-24 Thread Stephane De Jonckheere
Hello,

Here is the link for the activex version of flash player 9:
http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/i
nstall_flash_player_active_x.msi

 

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of helix206
Sent: 24 septembre 2007 13:41
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flash player 9 standalone download

 

Can anyone please tell me where can i download the FP9 standalone 
player and active X so that i can put them on the CD for my clients? I 
cant find them anyware on adobe.

thansk alot.

 



This email and any attachments  transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they are 
addressed. If you are not the intended recipient, any disclosure, copying, use, 
or distribution of the information included in this message and any attachments 
is strictly prohibited.
If you have received this email in error please notify the system manager at 
[EMAIL PROTECTED] or by reply e-mail and immediately and permanently delete 
this message and any attachments. Thank you.





[flexcoders] [FLEX-ANT] Adding license parameters

2007-09-13 Thread Stephane De Jonckheere
Hello,

I try to use Flex Ant Task to create a production version with flex
charting and fds.

 

Even if I put the license parameters in the license.properties of the
framework, mxmlc is not generating a version that uses the licenses.

I add the following parameters in the MXMLC task:

license product=charting serial-number=serialnumberhere /

I also tried something like:

license

productcharting/product

serial-numberserialnumberhere/serial-number

/license

 

But it's rejected by the ant program.

 

Does anybody knows the syntax to use with the license tag?

 

Thanks in advance

 



This email and any attachments  transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they are 
addressed. If you are not the intended recipient, any disclosure, copying, use, 
or distribution of the information included in this message and any attachments 
is strictly prohibited.
If you have received this email in error please notify the system manager at 
[EMAIL PROTECTED] or by reply e-mail and immediately and permanently delete 
this message and any attachments. Thank you.





RE: [flexcoders] [Flex2] State and size

2005-10-26 Thread Stephane De Jonckheere
Hi,
yes, you're right.
Sorry for not having tried that case.

Stephane

-Original Message-
From: Ashish Goyal [mailto:[EMAIL PROTECTED]
Sent: mardi, 25. octobre 2005 20:32
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] [Flex2] State and size



Hello Stephane,
It seems like setting resizeEffect on the panel is causing this bug.
Remove resizeEffect=Resize from the searchPanel then switching to
the base state (currentState to '') should work. I have already logged
the bug in the bugbase. Thanks for finding this issue.

-Ashish


 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Stephane De 
 Jonckheere
 Sent: Tuesday, October 25, 2005 12:12 AM
 To: 'flexcoders@yahoogroups.com'
 Subject: [flexcoders] [Flex2] State and size
 
 Hi all, 
 I'm currently trying Flex 2 and the new State feature.
 I'd like to do some kind of fullscreen button.
 
 I managed to do that in Flex 2 but I have some problems.
 First of all I need to set the width and height back in a new State.
 Switching back to the Base State (setting currentState to null) is not
 working 'cause the panel keep the width and height of the 
 fullscreen state.
 That's why I'm using the restore state. Ain't it a bug in the 
 state feature?
 Or is there something I am not doing correctly?
 
 See code below.
 
 Regards,
 Stephane
 
 ?xml version=1.0 encoding=utf-8?
 mx:Application 
 xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=*
   mx:states
   mx:State name=FullScreen
   mx:RemoveChild child={searchPanel}/
   mx:RemoveChild child={mainBox}/
   mx:AddChild target={appCanvas}
 child={searchPanel}/
   /mx:State
   mx:State name=Restore
   mx:PropertyOverride target={appCanvas}
 property=height value=100%/
   mx:PropertyOverride target={appCanvas}
 property=width value=100%/
   mx:PropertyOverride target={mainBox}
 property=height value=100%/
   mx:PropertyOverride target={mainBox}
 property=width value=100%/
   mx:PropertyOverride target={menuPanel}
 property=height value=100%/
   mx:PropertyOverride target={menuPanel}
 property=width value=25%/
   mx:PropertyOverride target={contentBox}
 property=height value=100%/
   mx:PropertyOverride target={contentBox}
 property=width value=75%/
   mx:PropertyOverride target={searchPanel}
 property=height value=100%/
   mx:PropertyOverride target={searchPanel}
 property=width value=100%/
   mx:PropertyOverride target={resultPanel}
 property=height value=100%/
   mx:PropertyOverride target={resultPanel}
 property=width value=100%/
   /mx:State
   /mx:states
   mx:Script
   static var fullscreen:Boolean=false;
   /mx:Script
   mx:Canvas id=appCanvas width=100% height=100%
   mx:HDividedBox id=mainBox width=100% height=100%
   mx:Panel id=menuPanel height=100% 
 width=25%
   mx:Canvas height=100% width=100%/
   /mx:Panel
   mx:VBox id=contentBox height=100% 
 width=75%
 hScrollPolicy=off vScrollPolicy=off
   mx:Panel id=searchPanel height=100%
 width=100% resizeEffect=Resize
   mx:Canvas height=100%
 width=100% id=canvas1
   mx:Button 
 x=275 y=116
 label=Switch
 click=currentState=(fullscreen?'Restore':'FullScreen');fullsc
 reen=!fullscre
 en; id=button1/
   mx:Button 
 x=275 y=156
 label=getState click=if (currentState!=null) {
 mx.controls.Alert.show(currentState.toString()); } else {
 mx.controls.Alert.show('Base State'); } id=button2/
   /mx:Canvas
   /mx:Panel
   mx:Panel id=resultPanel height=100%
 width=100%
   mx:Canvas height=100%
 width=100%/
   /mx:Panel
   /mx:VBox
   /mx:HDividedBox
   
   /mx:Canvas
 /mx:Application
 
 
 
 **
 *
 
 This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please notify
 the system manager to [EMAIL PROTECTED]
 
 **
 *
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- 
 Get Bzzzy! (real tools to help you find a job). Welcome to 
 the Sweet Life.
 http

[flexcoders] [Flex2] State and size

2005-10-25 Thread Stephane De Jonckheere
Hi all, 
I'm currently trying Flex 2 and the new State feature.
I'd like to do some kind of fullscreen button.

I managed to do that in Flex 2 but I have some problems.
First of all I need to set the width and height back in a new State.
Switching back to the Base State (setting currentState to null) is not
working 'cause the panel keep the width and height of the fullscreen state.
That's why I'm using the restore state. Ain't it a bug in the state feature?
Or is there something I am not doing correctly?

See code below.

Regards,
Stephane

?xml version=1.0 encoding=utf-8?
mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=*
mx:states
mx:State name=FullScreen
mx:RemoveChild child={searchPanel}/
mx:RemoveChild child={mainBox}/
mx:AddChild target={appCanvas}
child={searchPanel}/
/mx:State
mx:State name=Restore
mx:PropertyOverride target={appCanvas}
property=height value=100%/
mx:PropertyOverride target={appCanvas}
property=width value=100%/
mx:PropertyOverride target={mainBox}
property=height value=100%/
mx:PropertyOverride target={mainBox}
property=width value=100%/
mx:PropertyOverride target={menuPanel}
property=height value=100%/
mx:PropertyOverride target={menuPanel}
property=width value=25%/
mx:PropertyOverride target={contentBox}
property=height value=100%/
mx:PropertyOverride target={contentBox}
property=width value=75%/
mx:PropertyOverride target={searchPanel}
property=height value=100%/
mx:PropertyOverride target={searchPanel}
property=width value=100%/
mx:PropertyOverride target={resultPanel}
property=height value=100%/
mx:PropertyOverride target={resultPanel}
property=width value=100%/
/mx:State
/mx:states
mx:Script
static var fullscreen:Boolean=false;
/mx:Script
mx:Canvas id=appCanvas width=100% height=100%
mx:HDividedBox id=mainBox width=100% height=100%
mx:Panel id=menuPanel height=100% width=25%
mx:Canvas height=100% width=100%/
/mx:Panel
mx:VBox id=contentBox height=100% width=75%
hScrollPolicy=off vScrollPolicy=off
mx:Panel id=searchPanel height=100%
width=100% resizeEffect=Resize
mx:Canvas height=100%
width=100% id=canvas1
mx:Button x=275 y=116
label=Switch
click=currentState=(fullscreen?'Restore':'FullScreen');fullscreen=!fullscre
en; id=button1/
mx:Button x=275 y=156
label=getState click=if (currentState!=null) {
mx.controls.Alert.show(currentState.toString()); } else {
mx.controls.Alert.show('Base State'); } id=button2/
/mx:Canvas
/mx:Panel
mx:Panel id=resultPanel height=100%
width=100%
mx:Canvas height=100%
width=100%/
/mx:Panel
/mx:VBox
/mx:HDividedBox

/mx:Canvas
/mx:Application



***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***





 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Maximizing to fullscreen a component

2005-10-18 Thread Stephane De Jonckheere
Hi,
I'm currently trying to enhance the Christophe's pods.
I'd like to add some Fullscreen feature:
When clicking on the Fullscreen button, the panel is taking the whole
browser screen overlapping everything.

I managed to do that by using createChild() and instanciating a new Panel
which I refill with the previously entered data (when the panel was in
normal mode).
But as our application will be huge and will contains tons of Panel. I'd
like to reuse the existing panel instance and replace its parent by the main
layout (there can be a indefinite number of layers between the panel and the
main layout aka any fullscreenable panel should be capable to overlap
everything without carring about its depth in the application).

Aren't there some method or component that support some addExistingChild
method?

Stephane De Jonckheere,
EIM SA,
Switzerland


***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






[flexcoders] [Clone] Cloning UI object

2005-10-14 Thread Stephane De Jonckheere
Hi,
I'd like to clone an instance of a custom UI component (a panel with a lot
of components in it).
I tried the copy furnished by ObjectUtil, I corrected it as described by
Darron Schall. But it wasn't giving the expected result.
The fact is that even if the object is copied in a new instance, there are
missing things (while debugging):
- functions associated to events
- stuff contained by the panel is copied but they aren't displayed

I also tried homemade clone function but they all give the same result.

I know that I can create a new object which will create its content when
being contruct. That's certainly what I will do ;) .
But I'd like to know if it's possible to REALLY copy/clone an UI object and
if if can be reinserted with a createchild function.

Regards,
Stephane



***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] [Clone] Cloning UI object

2005-10-14 Thread Stephane De Jonckheere
It seems to come from Movieclips that aren't clonable.

Is there a way to clone these objects?

-Original Message-
From: Stephane De Jonckheere 
Sent: vendredi, 14. octobre 2005 11:29
To: flexcoders@yahoogroups.com
Subject: [flexcoders] [Clone] Cloning UI object


Hi,
I'd like to clone an instance of a custom UI component (a panel with a lot
of components in it).
I tried the copy furnished by ObjectUtil, I corrected it as described by
Darron Schall. But it wasn't giving the expected result.
The fact is that even if the object is copied in a new instance, there are
missing things (while debugging):
- functions associated to events
- stuff contained by the panel is copied but they aren't displayed

I also tried homemade clone function but they all give the same result.

I know that I can create a new object which will create its content when
being contruct. That's certainly what I will do ;) .
But I'd like to know if it's possible to REALLY copy/clone an UI object and
if if can be reinserted with a createchild function.

Regards,
Stephane




***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]


***




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 






 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






RE: [flexcoders] Some Queries!

2005-10-11 Thread Stephane De Jonckheere
1. The official Harley Davidson site is fully realized in Flex.
2. All te connection stuff and data binding must be done in Java or .Net.
Flex is only for presentation.
3. As far as I know, you should avoid linking from page to page ( Flex
Evangelists say that). You'll have to rethink your navigation and use
ViewStack instead of going from link to link.
4. Yes, there are samples in the Macromedia help:
http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/js/html/w
whelp.htm . There is something called shared object to share object within
the Application (many mxml files).

Regards,
Stephane

-Original Message-
From: vivek b [mailto:[EMAIL PROTECTED]
Sent: mardi, 11. octobre 2005 13:32
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Some Queries!


Hi
I am 'vivek buwa'!
currentlyu working on Flex!
I am having some doubts and by seeing the amazing work
this group is doing for solving Flex queries, I hope
that my queries will also be solved!

1. Is there a website which is entirely developed with
flex?
2. I am thinking to create an entire portal with Flex
for my compan which will be having login, database
connectivity etc stuff (which is common for all the
portals). Is it possible to do it with Flex?
3. How page transitions (from one mxml file to other
mxml file is accomplished?). i done with mx:Link but
then whats the difference with traditional HTML links
here?
4. can data be passed from one mxml file to the other
mxml file like HTTP post from HTML forms!

I am eagerly waiting for these queries to get solved!
I will be very much thankful if the queries r getting
solved. Requesting u to take some time for these
queries.
I am also hopeful that I will learn in Flex more with
u guys and girls and someday will be able to solve
queries of others.

Thanks!




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






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

2005-10-10 Thread Stephane De Jonckheere
I found what was the problem, it comes from my HTML script tag: it's not
type but langage.
Sorry for bothering everybody.

-Original Message-
From: Manish Jethani [mailto:[EMAIL PROTECTED]
Sent: vendredi, 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
 script type=javascript
 function launchSpellChecker(someText) {
 alert(someText);
 }
 /script
 /head
 body
[snip]

 2- Write a AS function using getURL:
 function doSpellCheck( textToCheck ) {
 getURL(javascript:launchSpellChecker(' + textToCheck +
 ');void(0););
 }

 3- Link the function to a button

 The AS function is called but IE tells me Object not found.
 I tried with Firefox (w/ JavaScript debugger) and it tells me:
 launchSpellChecker function not found.

I don't see anything obviously wrong.  What version of IE are you using?



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





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

2005-10-10 Thread Stephane De Jonckheere
I'm using IE 6.0SP1 and FireFox 1.06.
I don't understand why it's not working, all the samples I see on the
Internet are like my program.

-Original Message-
From: Manish Jethani [mailto:[EMAIL PROTECTED]
Sent: vendredi, 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
 script type=javascript
 function launchSpellChecker(someText) {
 alert(someText);
 }
 /script
 /head
 body
[snip]

 2- Write a AS function using getURL:
 function doSpellCheck( textToCheck ) {
 getURL(javascript:launchSpellChecker(' + textToCheck +
 ');void(0););
 }

 3- Link the function to a button

 The AS function is called but IE tells me Object not found.
 I tried with Firefox (w/ JavaScript debugger) and it tells me:
 launchSpellChecker function not found.

I don't see anything obviously wrong.  What version of IE are you using?



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 





***

This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager to [EMAIL PROTECTED]

***



 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/