[flex_india:34963] Listing flex_india group to Apache Global User Group

2012-04-05 Thread Jitendra Jain
Hi Group, I just spoken to Apache Flex committer Martin. He told me to list flex_india group to this url https://cwiki.apache.org/confluence/display/FLEX/User+Groups. I was wondering whether we have any official site to this. If yes please send the URL to ke...@spoon.as -- Thanks and Regards,

[flex_india:34962] Apache Flex User Group

2012-04-05 Thread Jitendra Jain
Hi Group, I just spoken to Apache Flex committer Martin. He told me to list flex_india group to this url https://cwiki.apache.org/confluence/display/FLEX/User+Groups. I was wondering whether we have any official site to this. If yes please send the URL to ke...@spoon.as -- Thanks and Regards,

[flex_india:34961] Started Java Blog

2012-04-04 Thread Jitendra Jain
Hi Guys, I have seen many people want to switch to some other technologies. So i have decided to start one blog related to java programming. Java is stable languages having a very wide community. I will regularly post there. Comments are always welcome. Learning is a continuous process and its not

Re: [flex_india:34956] Attention Flex developers..... Turn towards HTML5, ExtJS, Sencha, JQuery etc..

2012-03-30 Thread Jitendra Jain
There are still big companies preferring Flex over HTML5 for bigger applications. HTML5 is good for smaller applications. I don't know why to panic, when HTML5 specification will be out in four to five years from here. I talked to one of the Apache Flex Committer and he told me that once the Compil

Re: [flex_india:34859] Attention Flex developers..... Turn towards HTML5, ExtJS, Sencha, JQuery etc..

2012-02-15 Thread Jitendra Jain
the apache. Adobe has thought more than us before making the comments and handing his most of revenue generating framework to apache. Thanks, Jitendra Jain On Wed, Feb 15, 2012 at 6:02 PM, Mohit Kumar wrote: > Hey Naresh, > > I have 6+ year exp in Flash/Flex Technology and currently

Re: [flex_india:34126] Two Flex Application into one

2011-06-30 Thread Jitendra Jain
Use ModuleLoader to load the swf.. So in this way you can load different swfs which are hosted on different machines... Let me know if you have any issues... On Thu, Jun 30, 2011 at 5:27 AM, Saurav Nyaupane wrote: > I have to accumulate two Flex application, that were running in a > different w

Re: [flex_india:34096] Re: Heavy Delay while sending array collection to .Net

2011-06-27 Thread Jitendra Jain
I dont think you can easily convert the whole byte array to array object.. When the data is flown through the network it is always in bytes and the layer is doing the serialization and deserialization of the objects.. So only concentrate how can you save bytes while declaring the variables. On Mon

Re: [flex_india:34089] Re: How to display Button in mxml if it created in as file

2011-06-25 Thread Jitendra Jain
you have to call flexui.validateNow() after adding the childs. Moreover the Movieclip is adding the button and again you are adding button.. Don't put that adding of button in the constructor.. Either put that into the creation comnplete of the UIcomponent.. On Sun, Jun 26, 2011 at 12:33 AM, vicky

Re: [flex_india:34086] Re: How to display Button in mxml if it created in as file

2011-06-24 Thread Jitendra Jain
Hi, call validateNow() on UIComponent(i.e parent).. On Thu, Jun 23, 2011 at 1:19 AM, ManInAction wrote: > Hi Vicky, > > Thanks it worked! > > But another problem is tht when i created 1 movieclip and inside that > movieclip i addchild upload button and i attached movieclip into > uicomponent agai

Re: [flex_india:34085] Heavy Delay while sending array collection to .Net

2011-06-24 Thread Jitendra Jain
ou have to decide the type of your class members and you can save some bytes.. Regards, Jitendra Jain On Fri, Jun 24, 2011 at 10:52 AM, HISSAM wrote: > Why dont you convert to byte array and then send across the network and at > the server side convert it to the required type > >

Re: [flex_india:34082] HttpService - Blazeds output

2011-06-24 Thread Jitendra Jain
bject .. If u use RemoteAlias on the top of ValueObject then they are casted into corresponding Java Object.. Basic data types are supported.. Let me know if any body still have any queries.. Regards, Jitendra Jain On Fri, Jun 24, 2011 at 2:57 PM, Gerald Anto Fernando < flex.gerald.a.

Re: [flex_india:33887] Re: Issue with setFocus

2011-05-30 Thread Jitendra Jain
Even if dont work.. Please paste some code.. On Tue, May 31, 2011 at 10:34 AM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > Use callLater(textInput.setFocus); > > > On Fri, May 27, 2011 at 2:23 PM, Harsh wrote: > >> It is because the control by br

Re: [flex_india:33886] Re: Issue with setFocus

2011-05-30 Thread Jitendra Jain
Use callLater(textInput.setFocus); On Fri, May 27, 2011 at 2:23 PM, Harsh wrote: > It is because the control by browser is not transferred to Application > it is transferred when you clicks on the screen. So in order to avoid > and get control on application without clicking, there is one > java

Re: [flex_india:33429] use of capture phase and bubble phase?

2011-04-07 Thread Jitendra Jain
Capture Phase - traverse from the top level component to the inner child > component till it reaches the actual dispatcher of the event. It is > generally used to set some initial parameters or some specific behaviour by > the top level component before the event object is given to the inner level

Re: [flex_india:33428] use of capture phase and bubble phase?

2011-04-07 Thread Jitendra Jain
Capture Phase - traverse from the top level component to the inner child component till it reaches the actual dispatcher of the event. It is generally used to set some initial parameters or some specific behaviour by the top level component before the event object is given to the inner level objec

Re: [flex_india:33418] Re: Will Flex/Flash die?

2011-04-06 Thread Jitendra Jain
Instead of debating on all of these technologies.. It is better to keep updated yourself in and around of each of these technologies.. On Thu, Apr 7, 2011 at 3:40 AM, Rajat Mal wrote: > Flash/ flex builder never die, HTML5/CSS3 is just in embryonic stage, lots > of features not available in te

Re: [flex_india:33326] Re: Question on itemrenderer on a stock application

2011-03-23 Thread Jitendra Jain
ot;backgroundColor","#00FF00") } oldObjectDictionary[value.seriesId] =value; On Wed, Mar 23, 2011 at 11:43 AM, Shalu wrote: > Hey Jitendra, > > When item-renderers are rendered again, does this old object > retained ? > > On Mar 23, 10:02 am, Jitendra Jain > wrote: >

Re: [flex_india:33319] Re: Question on itemrenderer on a stock application

2011-03-22 Thread Jitendra Jain
Well Naveen, you have to override the set data method like. This oldObject will hold the last set data Object.. private var oldObject : Object; public function set data(value : Object){ super.data =value; if(oldObject){ if(oldObject.highPrice > value.highPrice){ someComponent.setStyle("backgroundC

Re: [flex_india:32860] Re: SWF Loader

2011-02-06 Thread Jitendra Jain
Lets say you have swf1 and swf2... If swf1 plays some content and swf2 will process certain events on the completion of swf1 play events.. In such case swf1 should have defined some events that would inform swf2 about the completion of playing some content. You can then add event listener in swf2 a

Re: [flex_india:32556] data view in DataGrid

2011-01-09 Thread Jitendra Jain
Use sort function by Date Category... On Sat, Jan 8, 2011 at 11:39 PM, Khalid Chaudhary < chaudhary.kha...@gmail.com> wrote: > you sort function > > > On Sat, Jan 8, 2011 at 10:28 PM, Akshar Kaul wrote: > >> When you pass data from back end to the front end then make sure that the >> last items a

Re: [flex_india:32555] Re: Parallel call for remote object

2011-01-09 Thread Jitendra Jain
What do you mean by "all four requests in one http request"? On Fri, Jan 7, 2011 at 11:35 PM, Sachin Patil wrote: > F5 > > On Jan 6, 10:06 pm, Sachin Patil wrote: > > Good Morning Friends, > > > > I am doing a performance fine tuning for Remote object calls in > > BlazeDS based Flex-J2EE commu

Re: [flex_india:32269] BlazeDS provides push functionality through HTTP ??

2010-12-08 Thread Jitendra Jain
I fully agree with Vaibhav and Raj.. JMS allows you to receieve and send the messages. In flex there are consumers and producers where you map the destination id of the Java messaging service.. On Wed, Dec 8, 2010 at 11:49 PM, Vaibhav Seth wrote: > Adding to Raj's point. You need to have a JMS, G

Re: [flex_india:32174] How to configure for another remote object - java class(Blaze ds)

2010-11-29 Thread Jitendra Jain
t but when i call from flex it is > not opened. > am using firfeox to run output > > what is a problem in that? > > > On Mon, Nov 29, 2010 at 11:56 AM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> See some java script code, how to open a notep

Re: [flex_india:32169] How to configure for another remote object - java class(Blaze ds)

2010-11-28 Thread Jitendra Jain
See some java script code, how to open a notepad.. On Mon, Nov 29, 2010 at 11:52 AM, Gerald Anto Fernando < flex.gerald.a...@gmail.com> wrote: > how to see it(notepad) > > > On Mon, Nov 29, 2010 at 11:17 AM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote:

Re: [flex_india:32167] Issue with dataGrid

2010-11-28 Thread Jitendra Jain
Hi, Item Renderes are recycled and reused. So make sure you override the set data method properly. Like this public function set data(value : Object):void{ super.data =value; } On Thu, Nov 25, 2010 at 12:24 PM, nithya flex wrote: > Hi, > > Let say you textinput controls as render then you

Re: [flex_india:32166] How to configure for another remote object - java class(Blaze ds)

2010-11-28 Thread Jitendra Jain
java it is working fine. but when i call from flex the notepad > is not opened. > but if i want to return something from java method, that will return value > . but notepad is not opened what i the problem in that could please help me > > Thanks&Regards, > Gerald A >

Re: [flex_india:32161] Border container

2010-11-27 Thread Jitendra Jain
Hi, One child cannot be parented to two containers. First remove that reference from the container one and add to the container two. Make sure remove the event listeners also. Like var child_obj : Object =container1.removeItemAt(5); container2.addChild(child_obj); On Sat, Nov 27, 2010 at 6

Re: [flex_india:32160] text format

2010-11-27 Thread Jitendra Jain
Move the functionality in the change event of the combo box.You are assigning the text1.text=sometext. Before this line try to format that string using TextFormatLayout.. private function combo_change(event:Event):void { var s:String=text1.text+event.currentTarget.selectedItem.data;

Re: [flex_india:32156] issues:Capture and write an audio input from Adobe Air at local system

2010-11-27 Thread Jitendra Jain
Iam seeing you have added the listener . But have you called this statement microphone.play()? On Thu, Nov 25, 2010 at 12:02 PM, Ra-j-an wrote: > Hi Friends, > > I am trying to record a voice using Adobe Air. > > But a particular EVENT shown below it's not working. > > microphone.addEventListen

Re: [flex_india:32155] HTML Redirection in flex 4

2010-11-27 Thread Jitendra Jain
It is better you paste some code what and how you are trying to doing this.. Thanks and Regards, Jitendra Jain On Thu, Nov 25, 2010 at 4:40 PM, kalai selvi wrote: > no actually u understood wrong , some HTML content,ok in this it has > some h ref link,when u click this it will go to some

Re: [flex_india:32154] swf file into jpg

2010-11-27 Thread Jitendra Jain
give a try. Thanks and Regards, Jitendra Jain On Fri, Nov 26, 2010 at 4:55 PM, athi murugan wrote: > hi > can u give that program. > Because i can't understand. > i am entry level developer in flex 4 > regards > athi > > On 26 November 2010 16:37, Jitendra Jain wrote

Re: [flex_india:32153] Adding keyboard controls for editable and non editable cells of datagrid

2010-11-27 Thread Jitendra Jain
(ITEM_EDIT_BEGINNING) with row index +1 , if you want to move to the next row. Similarly column index +1 for the next column and so on. Hope this might helps. Regards, Jitendra Jain On Thu, Nov 25, 2010 at 7:15 PM, BBC wrote: > Hi, > > i am using AdvanceDatagrid. After editing any cell, w

Re: [flex_india:32152] How to configure for another remote object - java class(Blaze ds)

2010-11-27 Thread Jitendra Jain
Hi, Could you please paste the whole stack trace. Also make sure for every Java Object there should be corresponding Flex Object. It should be mapped with destination id. Thanks and Regards, Jitendra Jain On Sat, Nov 27, 2010 at 12:17 PM, Gerald Anto wrote: > > my flex java(Blaze

Re: [flex_india:32143] [MessagingError message='Destination 'CreatingRpc' either does not exist

2010-11-26 Thread Jitendra Jain
elp me to improve flex skill and flex with java skill > > Thanks&Regards, > Gerald A > > On Fri, Nov 26, 2010 at 4:21 PM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> Here BlazeDs/LCDS already defines the Java adapters in >> remoting-config.xm

Re: [flex_india:32141] swf file into jpg

2010-11-26 Thread Jitendra Jain
Take the bitmap data and use PNG/JPEG encoders in flex and then assign this bytearray to image control. If you want to open in different window then you have to send this bytearray after applying Base64Encoder and on receiving the data again decode with base64Decoder and use that bytearray On Fri,

Re: [flex_india:32140] [MessagingError message='Destination 'CreatingRpc' either does not exist

2010-11-26 Thread Jitendra Jain
iceHandler { > > public static void main(String args[]) > { > System.out.println("Example of RemoteServiceHandler"); > } > public RemoteServiceHandler() > { > } > public String getResults(String name) > { > St

Re: [flex_india:32136] Re: Access global variables i Flex

2010-11-26 Thread Jitendra Jain
and also remove the event listeners if accossiated to make it eligible for garbage collection. Framework :The idea behind using a framework is only that the code is in proper structure. Without framework you can work... Let me know if you want to know more or have any queries. Regards, Jitendra

Re: [flex_india:32135] [MessagingError message='Destination 'CreatingRpc' either does not exist

2010-11-26 Thread Jitendra Jain
Have you defined the adapters? If yes please share with others so that they can also know.. Regards, Jitendra Jain On Fri, Nov 26, 2010 at 1:32 PM, Gerald Anto Fernando < flex.gerald.a...@gmail.com> wrote: > > thank you friends, now flex-java is working fine. > thanks for all &g

Re: [flex_india:32128] Re: Server/Data Push Form Java to Flex.

2010-11-25 Thread Jitendra Jain
In JAVA, Data push can be done using Java Messaging Service and In Flex the same can be implemented by using Consumer and Producer classes. The thing is that you have to define the Destinations in flex using adapters.. For more details look the blazeDS documentation.. Regards, Jitendra jain On

Re: [flex_india:32035] Re: Flex 3D rotation ; Help

2010-11-18 Thread Jitendra Jain
Hi Gaurav, Thanks for sharing the link. I think in your case it will work, But in my case it will not bcoz what i have is the images to rotate. The images should be same on both sides and also when i flip the component (not with this component) my images are pixel out. On Thu, Nov 18, 2010

Re: [flex_india:32000] Re: Customize Area Chart

2010-11-16 Thread Jitendra Jain
Can yu please send the code or how you did this ? Please tell others also On Tue, Nov 16, 2010 at 6:12 PM, Bambam Choudhary wrote: > So I solved the problem, by writing creating the object of xField and > Yfield . > > Thanks > > > > On Tue, Nov 16, 2010 at 5:22 PM, Bambam Choudhary wrote: > >> He

Re: [flex_india:31980] Flex 3D rotation ; Help

2010-11-12 Thread Jitendra Jain
ny 2D object. Adobe Flex also specified that matrix3D will always be null if the object is 2D. Hope this helps you. Regards, Jitendra Jain On Sat, Nov 13, 2010 at 12:06 AM, Gaurav wrote: > Hi, > I am seaching for the Flex code in which I can rotate my container 3D > horizontally and coul

Re: [flex_india:29730] Changin mx_internal function

2010-04-29 Thread Jitendra Jain
well, Vasanth, mx_internal provides you extended facility to change the behaviour. Lets say in a class you cannot access private or protected methods of other class but with mx_internal yu can For example : abc is the id of a textInput abc::mx_internal.propertyNameThatISDefinedASMxInternal you c

Re: [flex_india:29771] Flex + Spring error

2010-04-14 Thread Jitendra Jain
check the WebContent Context On Mon, Apr 12, 2010 at 5:00 PM, yogesh patel wrote: > Hi , > I m using lcds for Flex and Spring integration i am getting error > message like this-- > > [ChannelFaultEvent faultCode="Channel.Connect.Failed" faultString="error" > faultDetail="NetConnection.Ca

Re: [flex_india:28838] How to deploy a swf in a tomcat

2010-02-26 Thread Jitendra Jain
Use embed tag in html to embed an object . Here the object will be swf. On Fri, Feb 26, 2010 at 12:50 AM, veeru rahul wrote: > Easiest way to deploy a swf in a tomcat??? > > > Thanks, > Veeru > > -- > You received this message because you are subscribed to the Google Groups > "Flex India Communi

Re: [flex_india:28328] Re: Datagrid with image itemrenderer problem

2010-02-08 Thread Jitendra Jain
Please see the red colored text. public class Position extends HBox implements IFactory { private var imageReference:Image = null; public var radio:RadioButton = new RadioButton(); private var img:Image = new Image(); private var lbl:Label = new Label();

Re: [flex_india:28327] Flex performance Issue

2010-02-08 Thread Jitendra Jain
Yes there is memory leakage. Try to create weak references and read abt it. On Mon, Feb 8, 2010 at 11:56 PM, Utkarsh kaushal wrote: > There might be memory leak chekc for that. > > Thanks, > Kay Kay > > On Mon, Feb 8, 2010 at 8:39 AM, Vishal lad wrote: > >> Hi, >> I have some performance issue

Re: [flex_india:28144] Re: Cleared Flex 3 Certification

2010-01-31 Thread Jitendra Jain
Thanks Venkat and Saurabh. For more information also visit ♫ http://amitonflex.blogspot.com On Mon, Feb 1, 2010 at 12:31 PM, Saurabh Narula < reachsaurabhnar...@gmail.com> wrote: > Guys, > > I have captured my experience in a form of blog post at my blog, hope some > of you would find this helpf

Re: [flex_india:28136] Re: Cleared Flex 3 Certification

2010-01-31 Thread Jitendra Jain
a good book to start with. Essential ActionScript is > another good book. > > Oh... by the way.. Congratulations Mayur :-) > > Regards, > Venkat > > > > On Feb 1, 10:11 am, Jitendra Jain > wrote: > > Surabh, is it $50 or $150? > > &

Re: [flex_india:28134] Cleared Flex 3 Certification

2010-01-31 Thread Jitendra Jain
Surabh, is it $50 or $150? On Sun, Jan 31, 2010 at 2:58 PM, Raghunathan Mohan wrote: > Hi Mayur, > i am also planning to do the certification for Flex 3 and AIR > ACE . Can you please guide me with some links to look for > certification related documents. > > regards, > Raghunathan M > > >

Re: [flex_india:28089] simple basic example

2010-01-29 Thread Jitendra Jain
Pavan, what you need ? Why jar files? On Fri, Jan 29, 2010 at 1:57 PM, pavan kumar wrote: > hi, > I need sample basic example ..with jar files.. > > -- > Thanks & Regards, > > Pawan_k > Ph: 97890 67100 > > -- > You received this message because you are subscribed to the Google Groups > "Flex Indi

Re: [flex_india:28088] Help in ViewStack

2010-01-29 Thread Jitendra Jain
Try with mx:States. Read about States in Flex. It will be helpful. You can also fire methods when the component is shown. On Fri, Jan 29, 2010 at 10:16 AM, Raghunathan Mohan < raghuflexin...@gmail.com> wrote: > Hi, > > Try to create a seperate Component for the ViewStack and then in the > pa

Re: [flex_india:28081] Re: Prevent CTRL+V & CTRL+C on Flex TextInput component.

2010-01-28 Thread Jitendra Jain
Well Ravindra, i don't think this will work because those are handled by operating system first and then passed to Flex. On Fri, Jan 29, 2010 at 10:23 AM, Ravindra Kumar Challagandla < chicy...@gmail.com> wrote: > do event.preventDefault() in TextEvent.TEXT_INPUT event.. by doing so > you can res

Re: [flex_india:28080] Rendering Problem

2010-01-28 Thread Jitendra Jain
if(event.currentTarget.selected) { Alert.show("Hi I am selected"); }else if(!event.currentTarget.selected) { Alert.show("Hi I am not selected"); } } On Fri, Jan 29, 2010 at 10:37 AM, venkatesh keetha < venkatesh.kee...@gmail.com> wrote: > > It may solve your

Re: [flex_india:28043] Open excel application from flex

2010-01-28 Thread Jitendra Jain
Using Javascript you can. But will work only in IE and not in FF. On Thu, Jan 28, 2010 at 9:24 AM, Hari Narayanan wrote: > Hi > Does anyone knows how to open excel file without using > navigateToURL() function in flex? > I need code in flex only > > Regards, > Hari > > -- > You received this

Re: [flex_india:28041] Re: Data Grid Help

2010-01-27 Thread Jitendra Jain
Gaurav, Read filter function of ArrayCollection. It will help On Wed, Jan 27, 2010 at 11:27 PM, Gaurav wrote: > I am very happy not because of this is my answer BUT because of some > body reply me and he really want to help. It is really appreciated. > Well Swapnil, probably I am not looking sam

Re: [flex_india:28007] Arraycollection problem

2010-01-26 Thread Jitendra Jain
why are you using arrayColl[3]? use getItemAt method. On Wed, Jan 27, 2010 at 12:37 PM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > from where are you retrieving the saved data? > > > On Wed, Jan 27, 2010 at 12:34 PM, sankar swaroop wrote: > >> but this is

Re: [flex_india:28005] Arraycollection problem

2010-01-26 Thread Jitendra Jain
from where are you retrieving the saved data? On Wed, Jan 27, 2010 at 12:34 PM, sankar swaroop wrote: > but this is working the same. no change > > > On Wed, Jan 27, 2010 at 12:04 PM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> Instead do this, >

Re: [flex_india:28003] Arraycollection problem

2010-01-26 Thread Jitendra Jain
Instead do this, var obj :Object = arraycoll[3]; obj.name='same name'; In your case, the name property is behaving like a key and all the objects have the key named 'name'. So every object is updated . On Tue, Jan 26, 2010 at 2:45 PM, sankar swaroop wrote: > Hi friends, > > I given an arraycoll

Re: [flex_india:27960] set dynamic variable in Embed Source Embed (source=''+myPath+)]

2010-01-25 Thread Jitendra Jain
Embed will include the fonts at the compile time and is available in run time. On Mon, Jan 25, 2010 at 2:44 PM, Abhi wrote: > Hi All > > Please Help I want to set dynamic variable in Embed Source. > How to possible please Help > > var myPath:String = "fonts/"+myfont; > Embed(source=''+myPath+)]

Re: [flex_india:27938] Advanceddatagrid validate display list problem

2010-01-23 Thread Jitendra Jain
; } } add this code to gridRenderer class. On Sat, Jan 23, 2010 at 1:59 PM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > Varun, at my end this application is not working.You are missing some > files. Please check and resend so that i can

Re: [flex_india:27937] Advanceddatagrid validate display list problem

2010-01-23 Thread Jitendra Jain
Varun, at my end this application is not working.You are missing some files. Please check and resend so that i can track. On Sat, Jan 23, 2010 at 1:43 PM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > Varun don't load the images in the render. Instead use embed. See

Re: [flex_india:27936] Re: Application does not come up.

2010-01-23 Thread Jitendra Jain
; > moments ago and mostly works fine after one or two tries. Can you > > > explain why this happens (blue screen instead of the GUI). > > > > > On Jan 22, 2:39 pm, Jitendra Jain > > > wrote: > > > > > > Clean and Rebuild. > > > > &

Re: [flex_india:27935] Advanceddatagrid validate display list problem

2010-01-23 Thread Jitendra Jain
> > > > Warm reagards, > > Varun Bajaj > > > > On Fri, Jan 22, 2010 at 6:27 PM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> When you are scrolling the datagrid, item renderes are loading the images >> which often takes time to ca

Re: [flex_india:27921] Advanceddatagrid validate display list problem

2010-01-22 Thread Jitendra Jain
When you are scrolling the datagrid, item renderes are loading the images which often takes time to calculate height and width etc. So inorder to stop this you need to override this method. It will be taken care during the later screen update. On Fri, Jan 22, 2010 at 6:20 PM, Jitendra Jain

Re: [flex_india:27920] Advanceddatagrid validate display list problem

2010-01-22 Thread Jitendra Jain
(); super.scrollVertically(pos,deltaPos,scrollUp); } On Fri, Jan 22, 2010 at 4:37 PM, Varun Bajaj wrote: > Thanks jitendra for your response i am attaching my code files with this > mail. Also there is data file as xml format. > > > Warm regards, > Varun bajaj > > > On Fri, Jan 22, 201

Re: [flex_india:27917] Advanceddatagrid validate display list problem

2010-01-22 Thread Jitendra Jain
ItemRenderers are reusable components. Override function set data method .It will be good if you attach a zip file of your code. On Fri, Jan 22, 2010 at 1:05 PM, Varun Bajaj wrote: > Dear All > > Greeting for the day. I am working with advancedDataGrid with itemrenderer > as hbox which is having

Re: [flex_india:27916] Application does not come up.

2010-01-22 Thread Jitendra Jain
Clean and Rebuild. On Fri, Jan 22, 2010 at 2:30 PM, Akshar wrote: > I have a flex application which uses java as backend. sometimes when i > try to access my application the GUI does not comeup. instead there is > a blue page on the browser.this is a random scenario. > any pointer to what the pr

Re: [flex_india:27915] Re: ArrayCollection with duplicate elements

2010-01-22 Thread Jitendra Jain
Read about filter function it will be quite helpful. On Fri, Jan 22, 2010 at 4:39 AM, Aviral Sharma wrote: > Now, you can provide a dataprovider for combobox (using an > arraycollection is better than hardcoding the data). > Use filter function to remove duplicates as described in the link: > > h

Re: [flex_india:27900] Re: EPG- FLEX integration

2010-01-21 Thread Jitendra Jain
logic could be store in javaclass files in oracle or written > as store procedure depend upon your choice. > well... currently I am overriding/implementing the behavior of oracle > engine in EPG. > > Thanks for your help, > Gaurav > > On Jan 20, 9:40 am, Jitendra Jain > wrote:

Re: [flex_india:27888] Re: File Upload in Flex Urgent help needed

2010-01-20 Thread Jitendra Jain
catch the IO Exception and display a custom message. On Wed, Jan 20, 2010 at 5:19 PM, vengu wrote: > Catch the QA who filed this as a bug. Slap him :-) > > You normally expect your users to be slighly sane isnt it? The point > is flash player sends the file contents as soon as you do a > urlRequ

Re: [flex_india:27870] Re: Tool to record the response time of the flex action calls

2010-01-19 Thread Jitendra Jain
Every minor information related to request can be seen in HttpFox such as cookies, Headers, Content, Bytes sent and received, time taken to process the request. Inshort, everything you need. On Wed, Jan 20, 2010 at 10:18 AM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > I

Re: [flex_india:27869] Re: Tool to record the response time of the flex action calls

2010-01-19 Thread Jitendra Jain
I strongly agree with Kaushal. Nice tool. On Wed, Jan 20, 2010 at 1:31 AM, Utkarsh kaushal wrote: > I will suggest using Mozilla Firefox with HttpFox addon its very simple and > intuitive. It can provide you all the details that you need including time > and data trasferred. > > Let me know if yo

Re: [flex_india:27868] Re: EPG- FLEX integration

2010-01-19 Thread Jitendra Jain
read this. On Tue, Jan 19, 2010 at 6:44 PM, Gaurav wrote: > Dear Jitendra Jain, > Flex does nothing just call a database procedure in http request, it > is oracle server who return the result in xml response so we can do it > using embadded http server inside oracle server, t

Re: [flex_india:27848] EPG- FLEX integration

2010-01-19 Thread Jitendra Jain
Flex cannot communicate directly to the Database. For this you either need Java , .NET ,PHP or any other server side technology. 2010/1/19 Tokai András > Hello! > > Try to use BlazeDS: > > > http://biemond.blogspot.com/2008/03/flex-jms-client-with-oc4j-queue-blazeds.html > > regards: > > bandy >

Re: [flex_india:27827] http service problem

2010-01-18 Thread Jitendra Jain
What expection you are getting? On Mon, Jan 18, 2010 at 3:19 PM, rohit wrote: > HI, > > I am using httpsevice (POST method ) and cairngorm. > > I am passing a object into send method of httpservice.. > > > > var obj:Object = new object; > obj.id = 1 > obj.name = "abc"; > obj.xml = xmldata// t

Re: [flex_india:27791] Re: Capture Full Scree ( as printscreen)

2010-01-15 Thread Jitendra Jain
out how to take screenshot of > a flex application. But my concern is I want to writ a flex > application which will capture my desktop screen ( whatever is there > on my desktop) same as printscreen. If I am wrong at any point please > let me know. > > > On Jan 14, 11:31 pm, Jitendra

Re: [flex_india:27787] Find event listner in flex from C# Object

2010-01-14 Thread Jitendra Jain
Use mx:httpService On Fri, Jan 15, 2010 at 3:19 AM, Vaibhav Seth wrote: > If I need to call some flex method from Java. I can use JMSAdapter. > > Concept is you will publish a message to the destination (Topic or Que) > which is running independently and Flex can subscribe a listener to it and >

Re: [flex_india:27786] Capture Full Scree ( as printscreen)

2010-01-14 Thread Jitendra Jain
Go thru this link http://groups.google.com/group/flex_india/msg/8dc95df46f229223?pli=1 On Fri, Jan 15, 2010 at 12:22 PM, Gaurav Gupta <1989.gau...@googlemail.com>wrote: > Hello Folks, > > I need to implement a screen capturing application in flex. There are > several threads for capturing flex

Re: [flex_india:27784] Re: ADGrid Groupingcollection refresh() Issue.

2010-01-14 Thread Jitendra Jain
Your dataprovider is not bindable in this case. On Fri, Jan 15, 2010 at 10:24 AM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > Jagdish , Instead of "refresh" use this line > > BindingUtils.bindProperty(home_dg,"dataProvider",this,"gc");

Re: [flex_india:27783] Re: ADGrid Groupingcollection refresh() Issue.

2010-01-14 Thread Jitendra Jain
Jagdish , Instead of "refresh" use this line BindingUtils.bindProperty(home_dg,"dataProvider",this,"gc"); On Fri, Jan 15, 2010 at 9:35 AM, Jagdish wrote: > Hi Shilpa, > > Thanks for your reply but i tried refreshing after the result is > binded to the arraycollection.But the data is not g

Re: [flex_india:27782] Multi-selecting checkbox in AdvancedDataGrid

2010-01-14 Thread Jitendra Jain
the matching end tag > ' > tag. > > Can you please help me . > > Thanks, > Ravi > > > On Wed, Jan 13, 2010 at 1:13 PM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> Look at this >> >> >> >>

Re: [flex_india:27765] Help on embed swf code

2010-01-13 Thread Jitendra Jain
erty of swf or any > other method to achieve this ? > > On Wed, Jan 13, 2010 at 4:54 PM, Jitendra Jain < > warriorofheavens...@gmail.com> wrote: > >> How come you know that the data in other domain is changed? Are you >> creating the charts at frequent intervals by

Re: [flex_india:27763] Need help----How can Struts interact with Flex--MVC to MVC communication?

2010-01-13 Thread Jitendra Jain
Take those business classes (POJO) out of Struts . Flex can directly call Remote objects (Java Objects) . whole application integration is available on Adobe site. Please go thru that. On Wed, Jan 13, 2010 at 1:31 PM, Soumya Here wrote: > Hi All, > > > > I am new in Flex. I have an existing str

Re: [flex_india:27762] Help on embed swf code

2010-01-13 Thread Jitendra Jain
ned he used the embed code of previous chart > on his domain and updated one is one other domain so what i want as soon as > the chart updated by user the same updation reflect on the domain where he > used that chart . > > On Wed, Jan 13, 2010 at 3:30 PM, Jitendra Jain < > wa

Re: [flex_india:27761] AdvancedDatagrid and Strongly Typed Objects

2010-01-13 Thread Jitendra Jain
Hi Shameer, Please make those red colored changes. The code will work. I have tested this. Let me know if it doesn't works http://www.adobe.com/2006/mxml"; backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FF, #FF]" preinitialize="init()">

Re: [flex_india:27757] Help on embed swf code

2010-01-13 Thread Jitendra Jain
Sachin, why you want to replace the whole old chart with the new one? On Wed, Jan 13, 2010 at 3:15 PM, sachin wrote: > hi all, > I have one diffcuilty regarding swf,what i want, i have to call > updated swf from embded swf code so how i have achive this in flex ? > The scinario is like ,we hav

Re: [flex_india:27756] AdvancedDatagrid and Strongly Typed Objects

2010-01-13 Thread Jitendra Jain
Remove the colored line in the code as it is of no use. private function init():void { var countryArray:Array = []; acDg = new ArrayCollection(); for(var i:int=0;i wrote: > whats typed array collection?? > > 2010/1/12 shameer salim > >>

Re: [flex_india:27752] Multi-selecting checkbox in AdvancedDataGrid

2010-01-12 Thread Jitendra Jain
Look at this

Re: [flex_india:27751] Mobile Flex Applications in Flex

2010-01-12 Thread Jitendra Jain
FlashLite is the platform On Wed, Jan 13, 2010 at 9:12 AM, Prashant Koshta wrote: > Humm... I am not sure in Flex 4 it is possible to such kind of application. > But if you mobile device support the SWF file compitable then it can work. > > Other wise best to see the Elips Studio > http://www.ope

Re: [flex_india:27746] How can i get Alert in flex when i close the browser?

2010-01-12 Thread Jitendra Jain
Hi Krishan, The problem with IE is that it adds SWF as ActiveX and browser handles this reserved events for itself. It is not passing those events to ActiveX controls. IE follows COM flow for events. Rest of the browsers follows DOM. So you have to study the event flow. In Firefox you can handl

Re: [flex_india:27736] FlexBuilder Out of memory error

2010-01-11 Thread Jitendra Jain
Pradeep, Do this 1. Go to the Flex Builder Install directory 2. Look for the file named FlexBuilder.ini (eclipse.ini if you are using the plugin version) on a Mac you will have to “Show Packages Contents” on the FlexBuilder.app file to find it. 3. My FlexBuilder.ini file looked so

Re: [flex_india:27735] flex application doesn't run properly

2010-01-11 Thread Jitendra Jain
There is possiblility of an error which your browser is not catching and it crashes the browser. Try with different broswers. On Tue, Jan 12, 2010 at 11:05 AM, pradeep gorijavolu < pradeepflex.gr...@gmail.com> wrote: > Thanx for all your response, > > I done all things what u told,but still i got

Re: [flex_india:26743] About CapsLock

2009-11-18 Thread Jitendra Jain
you have the range of keycodes (65-90) for caps. When the key code is between this range . Highlight the caps lock. On Mon, Nov 16, 2009 at 7:29 PM, surendra babu wrote: > HI All, > > I am implementing AIR application.So i developed a KeyPad component > that contains all the functionalit

[flex_india:26199] Re: Capture Flex KeyboardEvent

2009-10-29 Thread Jitendra Jain
Hi, You can restrict in FireFox, Chorme etc .But in IE you can't because IE displays Flex Application as ActiveX control and F5 key is not passed to ActiveX control. IE handles it first and there is no way to stop that. Read about COM and DOM event flows. This will be very helpful. You can rest

[flex_india:26015] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-22 Thread Jitendra Jain
can yu please paste the whole code. I'm afraid you had some references when yu unload the module. On Thu, Oct 22, 2009 at 11:10 AM, Ram wrote: > > Hi Nagu, > > Although the above code does not contain the 3rd step, I developed a > small POC as you said. > 1) Create ModuleLoader everytime I load

[flex_india:25974] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-20 Thread Jitendra Jain
" > width="100%" height="100%"> > y="10"/> > > > > I dont think there is any such events or any hard references in the > module. If I run this app on IE7, FP 10, Flex SDK 3.4, the memory leak > happens :( >

[flex_india:25965] Re: Neither System.gc() nor does ModuleLoader.unloadModule() release the used memory of a loaded module.

2009-10-19 Thread Jitendra Jain
Hi You have to set the events as weak references. When yu addEventListener, yu have to make sure to remove those event listeners using removeEventListener and then nullify the object. This way your object will get garbage collected. Otherwise the memory will be increased every time. Please read ab

[flex_india:25954] Re: Execute exe files from Adobe air

2009-10-18 Thread Jitendra Jain
I guess its not System class but Runtime class or may be both. On Sun, Oct 18, 2009 at 6:25 PM, Jitendra Jain < warriorofheavens...@gmail.com> wrote: > Hi Guys, > > I strongly agree with Karthik.. > > you can use System class in Java to run an exe. But it will launch on

[flex_india:25953] Re: Execute exe files from Adobe air

2009-10-18 Thread Jitendra Jain
Hi Guys, I strongly agree with Karthik.. you can use System class in Java to run an exe. But it will launch on the server side and not on the client side. If it has the capability of running on client side then anyone can easily run as many exes on the client and hang the system. So if it i

  1   2   >