[flexcoders] Re: Flash Builder GUI: center window on Run?

2010-06-13 Thread Gaurav
Please check the following code http://www.adobe.com/2006/mxml"; width="450" height="400" layout="absolute" creationComplete="creationCompleteHandler(event);"> use it, it will make your window center. Regards Seth http://blog.thesoftsol.com --- In flexcoders@yahoog

[flexcoders] Re: Yes/No RadioButton

2010-06-14 Thread Gaurav
Make a function which deselect both of the radio button. like var chkSelected:Boolean = false; function deselectAll() { for(var i=0; i<2; i++) { chk[i].selected==false; } } function selectToggle() { if(chkSelected) { delselectAll(); chkSelected = false; } else {

[flexcoders] Re: CustomCursor Position

2010-06-14 Thread Gaurav
Add a mouse move event listener, and track for x and y position of mouse with xMouse and yMouse, if condition not satisfy then CursorManager.removeBusyCursor(); please follow the example.. http://blog.flexexamples.com/2007/09/10/changing-the-cursor-in-a-flex-application-using-the-cursormanager

[flexcoders] Comparing two Dates

2006-12-01 Thread Gaurav Jain
Hi All, I would appreciate if some one can suggest me a quick solution for comparing two dates and finding out which date is greater. Thanks Gaurav

RE: [flexcoders] IP Address Validation

2006-12-03 Thread Gaurav Jain
Thanks for the help. The purpose got solved with the following. Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mozilla By Sent: Saturday, November 25, 2006 9:00 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] IP

[flexcoders] Creates Duplicacy in Datagrid

2006-12-18 Thread Gaurav Jain
any one help me out on this. Thanks in advance. Gaurav

[flexcoders] Creates Duplicacy in Datagrid

2006-12-18 Thread Gaurav Jain
help me out on this. Thanks in advance. Gaurav

RE: [flexcoders] Module hell... Flex 3

2008-01-28 Thread Gaurav. Jain
What happened in onModuleLoaded? I think you should add the eventlistener before setting the url or calling loadModule() Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dbronk Sent: Monday, January 28, 2008 4:36 PM To: flexcoders

[flexcoders] Re: Interesting problem with swf and swc sizes.

2008-01-28 Thread Gaurav Jain
It sounds like the playerLib.swf may not be optimized. Can you try running optimizer command on playerLib.swf? Thanks, Gaurav

[flexcoders] Re: Module hell... Flex 3

2008-01-29 Thread Gaurav Jain
. Thanks, Gaurav

RE: [flexcoders] Why does this print a blank page?

2008-01-29 Thread Gaurav. Jain
You mean it shows the default flex theme but not the components? You may want to specify the layout="vertical" or layout="horizontal" in the element. Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jesse

[flexcoders] Re: How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Gaurav Jain
You can use the flexTasks that ship with the Flex SDK to achieve this. The flexTasks.jar is /ant/lib folder. For the reference doc, see here http://labs.adobe.com/wiki/index.php/Flex_Ant_Tasks#Using_the_compc_task Thanks, Gaurav

[flexcoders] Re: How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Gaurav Jain
Lets say you compiled the swc (SwcOutput) to directory instead of a .swc You can use it as rsl in the mxmlc compilation. Here is the example: Thanks, Gaurav

[flexcoders] Re: Binding data and custom components

2008-01-30 Thread Gaurav Jain
creationComplete getting called doesn't mean that the dataProvider was also getting set. showData was getting called between creation complete and the assignment to dataProvider. I made few changes to your code, hopefully it will resolve the issue. package components { import flash.events.Eve

[flexcoders] Re: How to compile a library using Ant and mxmlc.jar

2008-01-30 Thread Gaurav Jain
?content=rsl_04.html Thanks, Gaurav

[flexcoders] Re: ProfilerAgent.swf preventing debugging

2008-01-30 Thread Gaurav Jain
working after profiling, it could be due to an entry in the mm.cfg file left behind by the profiler. So if you remove the entry the debugger should start working again. On OS X the mm.cfg should be in the home directory and the entry starts with PreloadSwf= Thanks, Gaurav --- In flexcoders

[flexcoders] Re: Help upgrading to Flex 3

2008-02-06 Thread Gaurav Jain
://labs.adobe.com/wiki/index.php/Flex_3:Backwards_Compatibility_Flag Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Body Works Studio" <[EMAIL PROTECTED]> wrote: > > Hello all, > > I have a j2EE facing web app that is using flex 2.0.1 w/ the fds.swf. > I am taki

[flexcoders] Re: && in binding error

2008-02-08 Thread Gaurav Jain
try ~Gaurav --- In flexcoders@yahoogroups.com, Adolfo Ruiz <[EMAIL PROTECTED]> wrote: > > I got ne following error while trying to set the binding with an expression that contains a double && ampersand. > > > The entity name must immediately follow th

[flexcoders] Re: mx:Image memory leak

2008-02-08 Thread Gaurav Jain
tting GCed. Profiler in FB3 can be used even if swf is compiled with Flex 2.0.1 (as long as it is compiled in debug mode). Also before the load() method, you may try the following: imgPic.source = ""; Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Damien Legros"

[flexcoders] Re: Compiler Option for Caching Flex Libs

2008-02-11 Thread Gaurav Jain
amework_${build}.swf false Modify to replace ${build} with the actual build number. HTH, Gaurav --- In flexcoders@yahoogroups.com, "wwwpl" <[EMAIL PROTECTED]> wrote: > > I am looking for the compile time option for Flex 3 Beta3 SDK to for > Flash to

[flexcoders] Re: Odd issue when using the framework swf as an RSL

2008-02-12 Thread Gaurav Jain
Hi Justin, Can you please show how you are specifying the framework.swf rsl to the compiler? Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Justin DeVuyst" <[EMAIL PROTECTED]> wrote: > > Hello All, > > I would like to load a lot of apps on a single page. To h

[flexcoders] Re: Flex/Flash memory allocation

2008-02-13 Thread Gaurav Jain
. You should use the profiler in flex 3 to investigate if there are any memory leaks. Also the profiler has a button by which you can invoke a GC run. Thanks, Gaurav

[flexcoders] Re: Odd issue when using the framework swf as an RSL

2008-02-13 Thread Gaurav Jain
I think value for -runtime-shared-libraries+= should be a url not an absolute path. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Justin DeVuyst" <[EMAIL PROTECTED]> wrote: > > Thanks for responding to my query Gaurav. > > I compile for it like so: >

[flexcoders] Re: Odd issue when using the framework swf as an RSL

2008-02-13 Thread Gaurav Jain
nks, Gaurav --- In flexcoders@yahoogroups.com, "Justin DeVuyst" <[EMAIL PROTECTED]> wrote: > > Copied from > > http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=compilers_123_24.html > > > external-li

[flexcoders] Re: Flex Profiler... what is the method [tincan]?

2008-02-14 Thread Gaurav Jain
>From player team: That's time processing RTMP messages. This includes FMS video/audio traffic, rtmp data services, and remote shared object synchronization. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "rueter007" <[EMAIL PROTECTED]> wrote: > > anyone ha

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread Gaurav Jain
Can you show the complete ant task target? I suspect that the parent folder of assets is not specified in the source path. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "kp_gem" <[EMAIL PROTECTED]> wrote: > > Hi, > > Is there any way to include external ass

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-19 Thread Gaurav Jain
ries FB is linking against and see if you have anything additional? Thanks, Gaurav --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > Here is piece of my flex ant file: > output="${DEPLOY_DIR}/ActiveUpdate.swf" >

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread Gaurav Jain
This looks like a bug. Can you please file a bug at http://bugs.adobe.com/flex Thanks, Gaurav --- In flexcoders@yahoogroups.com, "kp_gem" <[EMAIL PROTECTED]> wrote: > > Thanks Gaurav, > > Here is my directory structure for multiple projects. > > --- incl

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
In my simple test I see size changing from 241kb to 149kb. I would suggest you log a bug at http://bugs.adobe.com/flex with your test case Thanks, Gaurav --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > Nothing happened, same size. That is mean,

[flexcoders] Re: Adding a non-inline creationComplete event handler

2008-02-20 Thread Gaurav Jain
better control over the module. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Barry Evans" <[EMAIL PROTECTED]> wrote: > > Hi, > > i am having serious memory leak problems whilst using modules in flex. > The module-based application i am currently developing c

[flexcoders] Re: mxmlc java.lang.IndexOutOfBoundsException

2008-02-20 Thread Gaurav Jain
Which version of flex are you using? There were some related fixes in flex 3 beta 3. If you are seeing this with flex 3 beta 3, please log a bug at http://bugs.adobe.com/flex with the test case. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Dan" <[EMAIL PROTECTED]> wrote:

[flexcoders] Re: Using module from Flex library project

2008-02-20 Thread Gaurav Jain
/html/help.html?content=rsl_02.html Thanks, Gaurav --- In flexcoders@yahoogroups.com, "mydarkspoon" <[EMAIL PROTECTED]> wrote: > > Hello, > I've developed a small flex module which I used inside flex project. > Now I want to allow different applications to use that

[flexcoders] Re: Using module from Flex library project

2008-02-20 Thread Gaurav Jain
. Now since you moved them to a different project, you need to copy the compiled modules to the location specified by the url used to load the modules. or simply change the Output folder for the modules project by going to project properties -> flex build path HTH, Gaurav --- In flexcoders

[flexcoders] Re: Using module from Flex library project

2008-02-20 Thread Gaurav Jain
rce path of main app should resolve the compilation errors. Thanks, Gaurav

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
T? > > --- In flexcoders@yahoogroups.com, "Gaurav Jain" wrote: > > > > In my simple test I see size changing from 241kb to 149kb. I would > > suggest you log a bug at http://bugs.adobe.com/flex with your test case > > > > Thanks, > > Gaurav > &

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
use and not . was introduced in flex 3 to support framework caching. Thanks, Gaurav --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > In that case no point to report bug, everything works for me too. > Problem for me is different actually it is

[flexcoders] Re: Using module from Flex library project

2008-02-20 Thread Gaurav Jain
) from the main app project. 4. Modify MainApp project's compile setting and add -link-report=C:\lnkreport.xml 5. Modify MoulesHome compiler setting and add -load-externs=C:\lnkreport.xm finally before running copy the module swf from ModuleHome to MainApp (nect to the MainApp.swf).

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
support is only available from 9.0.60 onwards) As to why you don't see difference in size between in FB and ant tasks. I would recommend you to compare all setting once again (look in the .actionScriptProperties file), if you don't find any differences file a bug (with your test case). Than

[flexcoders] Re: Using a Library Project

2008-02-21 Thread Gaurav Jain
you should stick with "merged into code.." option. Thanks, Gaurav

[flexcoders] Re: How to turn off exception messages in release version.

2008-02-22 Thread Gaurav Jain
try { // You code here } catch (error:Error) { // swallow the error and continue. } --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > How to turn off exception messages ( e.g. ActionScript errors ) in > release version? >

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread Gaurav Jain
same. Please suggest. Thanks, Gaurav

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread Gaurav Jain
same. Please suggest. Thanks, Gaurav

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread gaurav . jain
. Please suggest. Thanks, Gaurav

[flexcoders] Creating Local Folder on user HDD thru Flex

2007-06-01 Thread Gaurav Kaushik
Hi Guys, I am working on Apollo Application where I need to create Local Folder Structure on the Client System. I am using Flex builder 2 for the same. Can anyone help in as to how to create Local Folders thru Flex? Thanks Guys. Cheers!! Best Regards Gaurav Kaushik Flash Application

[flexcoders] can we communicate between flex and npruntime plugin directly

2006-09-13 Thread Gaurav Sehgal`
Hi, I am writing a flex app which needs to talk with npruntime plugin. For these two to communicate JavaScript wrapper needs to be written. It is making the application slow. Is there a mechanism so that flex and npruntime plugin can talk directly? Regards, Gaurav -- Flexcoders Mailing List

[flexcoders] Re: Drag and Drop from HTML to Flex

2006-10-27 Thread Gaurav Sehgal`
ndom it seems). > Did anyone encountered this problem? Can it be solved without sending > the html coordinates and converting them? Thanks. > Can you provide me some more information how have you implemented this drag and drop and is it possible to drag and drop from Desktop to a flex and

RE: [flexcoders] Flex Builder Profile Problems

2008-06-12 Thread Gaurav. Jain
Can you try editing the mm.cfg under "C:/Documents and Settings/LiechtyPO" and see if removing the PreloadSwf entry resolves this? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wwwpl Sent: Thursday, June 12, 2008 1

RE: [flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Gaurav. Jain
Do you have any filters applied? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Friday, July 18, 2008 2:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Performance profile strangeness Legitimate

RE: [flexcoders] Re: Performance profile strangeness

2008-07-18 Thread Gaurav. Jain
Sounds like a bug :) Please log a bug with the test case at http://bugs.adobe.com/flex Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Sent: Friday, July 18, 2008 4:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

RE: [flexcoders] Module unloads but FlexModuleFactory instance does not unload

2008-03-02 Thread Gaurav. Jain
Objects when the Cumulative Instance count is only 1? _TestModule_mx_core_FlexModuleFactory (2) doesn't mean that there are two instances. (2) means that there are two back references for _TestModule_mx_core_FlexModuleFactory which means it is being referenced by two other objects in the

RE: [flexcoders] Re: Module unloads but FlexModuleFactory instance does not unload

2008-03-02 Thread Gaurav. Jain
I was able to reproduce the issue using your test case. I am not sure if it is by design. Please submit a bug. Also the issue gets resolved if you call Info.load() - without specifying the application domain. Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto

[flexcoders] Re: Debugging hangs my mac this morning any ideas?

2008-03-05 Thread Gaurav Jain
Did you run profiler by any chance before the debugger? Can you check that there is no entry starting with "PreloadSwf=" in the mm.cfg ? on OS X the mm.cfg should be under the /Users/ folder Thanks, Gaurav --- In flexcoders@yahoogroups.com, "Josh McDonald" <[EMAIL PR

RE: [flexcoders] Memory allocations problems when intensively using charts and modules

2008-03-06 Thread Gaurav. Jain
ate to a smaller test case, can you submit a bug at http://bugs.adobe.com/flex and post the bug number, please? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lytvynyuk Sent: Thursday, March 06, 2008 9:05 PM To: flex

RE: [flexcoders] Re: mxmlc java.lang.IndexOutOfBoundsException

2008-03-11 Thread Gaurav. Jain
So now you are getting compilation error or runtime error? If you are getting runtime error, can you make sure that modules and main application are compiled using the same version? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Run time Error! What is solution?

2008-03-11 Thread Gaurav. Jain
clicking. Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qau_yasir Sent: Tuesday, March 11, 2008 6:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Run time Error! What is solution? Hi! I have created a project for

RE: [flexcoders] Re: mxmlc java.lang.IndexOutOfBoundsException

2008-03-12 Thread Gaurav. Jain
Can you please log a bug at http://bugs.adobe.com/flex with the test case? Also please include the stack trace and steps to reproduce. Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Sent: Wednesday, March 12, 2008 10:56 PM

RE: [flexcoders] memory leak questions

2008-03-13 Thread Gaurav. Jain
layer. Thanks, Gaurav

RE: [flexcoders] System.total Vs Flex3 Memory Profiler

2008-03-27 Thread Gaurav. Jain
Yes that's right. Profiler memory usage number is specific to the app being profiled. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alex Sent: Thursday, March 27, 2008 9:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] System.total V

RE: [flexcoders] Memory Profiler - Memory Snapshot does automatically runs garbage collector?

2008-03-27 Thread Gaurav. Jain
Yes the memory snapshot runs the GC capturing the data. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alex Sent: Thursday, March 27, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Memory Profiler - Memory Snapshot does automa

RE: [flexcoders] Memory Profiler - Memory Snapshot does automatically runs garbage collector?

2008-03-27 Thread Gaurav. Jain
I meant *before* capture the data. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gaurav. Jain Sent: Thursday, March 27, 2008 2:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Memory Profiler - Memory Snapshot does automatically

RE: [flexcoders] Memory Profiler - Memory Snapshot does automatically runs garbage collector?

2008-03-28 Thread Gaurav. Jain
GC is run (manually or before a snapshot). A bit misleading functionality I would say! --- "Gaurav. Jain" <[EMAIL PROTECTED]> wrote: > I meant *before* capture the data. > > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECT

RE: [flexcoders] compile CSS to SWF using Ant

2008-03-31 Thread Gaurav. Jain
What error are you getting? Theoretically the mxmlc call should be similar to the one used for mxml compilation. Like: -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of toofah_gm Sent: Monday, March 31, 2008 11:19 AM To: flexcoders@yahoogroups.

[flexcoders] File upload in Flex

2008-04-02 Thread Gaurav Jain
, Gaurav Jain

[flexcoders] File upload to amazon S3 from Flex

2008-04-02 Thread Gaurav Jain
, Gaurav Jain

[flexcoders] File upload to amazon S3 from Flex

2008-04-02 Thread Gaurav Jain
, Gaurav

RE: [flexcoders] A script has executed for longer than the default timeout period of 15 seconds

2008-04-16 Thread Gaurav. Jain
, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, April 16, 2008 5:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] A script has executed for longer than the default timeout period of 15 seconds I am

RE: [flexcoders] Can I Simulate "Export Release Build" using Ant?

2008-04-17 Thread Gaurav. Jain
ml" 2. When compiling the modules load the link-report using the load-externs attribute. ~Gaurav From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Simeone Sent: Thursday, April 17, 2008 10:50 AM To: flexcoders@yahoogroups.c

RE: [flexcoders] Can I Simulate "Export Release Build" using Ant?

2008-04-17 Thread Gaurav. Jain
"Export Release Build" using Ant? And how about View Source? Any way to generate it on ant? VELO On Thu, Apr 17, 2008 at 12:06 PM, Gaurav. Jain <[EMAIL PROTECTED]> wrote: Export release build compiles the swf in non debug mode. You can do the same in ant task if debug=

RE: [flexcoders] Could not resolve to a component implementation.

2008-04-18 Thread Gaurav. Jain
ADG is part of datavisualization.swc - it's not shipped with SDK, you need to copy it from flex builder. You would need to enter the flex builder serial number in the flex-config file - in order to remove the watermark. Also you will have to copy datavisualization_rb.swc ~Gaurav -Ori

RE: [flexcoders] Re: Could not resolve to a component implementation.

2008-04-18 Thread Gaurav. Jain
oders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sk_acura Sent: Friday, April 18, 2008 10:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Could not resolve to a component implementation. Hi Gaurav, Thanks for your response.. I have copied both thw .swc files and w

RE: [flexcoders] Flex Profiler Not Connecting

2008-05-01 Thread Gaurav. Jain
Can you make sure you are using the debugger version of the player in IE? Also do you see anything in the console of the Flex Profiling perspective? Thanks, Gaurav -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of myspivey2 Sent: Thursday, May 01

[flexcoders] Flex : Execution of Alert.show() starts for the last one

2008-12-05 Thread Gaurav J
idea why its happening ? Here the code http://www.adobe.com/2006/mxml"; layout="vertical" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#8E8E8E, #DEDEDE]"> Regards Gaurav

[flexcoders] Re: Flex and asSQL - Crossdomain issue?

2009-01-29 Thread Gaurav J
dtds/cross-domain-policy.dtd";> > > > > > I tried placing it in the "webapps" and "webapps/ROOT" folder of tomcat but > data was not populated. > > Thanks in advance for the help. > Gaurav > > -- > View this message in context: http://www.nabble.com/Flex-and-asSQL---Crossdomain-issue--tp21691913p216\ 91913.html > Sent from the FlexCoders mailing list archive at Nabble.com. >

[flexcoders] help on HTTP service

2005-05-17 Thread gaurav verma
not able to send data from the mxml to the jsp page i want create a page which takes the values like "LOGIN ID" and "PASSWORD" to the another JSP page( this pages validates the loginid from my database) im using the following code : http://www.macromedia.com/2003/mxml";> http://pjainserver: