[flexcoders] Plug-in Based application like Eclipse RCP in Flex/AIR
Hello All, I am java developer I mostly work on Eclipse RCP (Rich Client Platform Application) using SWT. I am not an experienced Flex/AIR developer. I just wanted to create Plug-in based application Like eclipse RCP in Flex/AIR so can anyone guide me does Flex/AIR support Plug-in based applications like Eclipse RCP does support flex/AIR “Extensions points” etc? Or is there any alternative solution in Flex/AIR to create Plug-in based application. Please do help me related to this issue I will be thankful to all of you if you send me some useful links or tutorials. Thanks in Advance. Parkash.
Re: [flexcoders] Re: Memory Issue in Internet Explorer
Thanks a lot dear for your reply but can you tell me what extra task are you doing for cleaning up the code .it will very useful for me if you can send me these task so that i can do the same. --- On Wed, 11/19/08, t_varada <[EMAIL PROTECTED]> wrote: From: t_varada <[EMAIL PROTECTED]> Subject: [flexcoders] Re: Memory Issue in Internet Explorer To: flexcoders@yahoogroups.com Date: Wednesday, November 19, 2008, 8:45 PM Hi Parkash We had a similar issue and we are doing some extra task to clean up the code when you load/unload a feature inside our application. One good thing we find Flash Player 10 has better memory management, since that is officially out you try our memory test case on it to see some improvements. --- In [EMAIL PROTECTED] ups.com, "Parkash" <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > > > I am facing a memory problem in internet Explorer , when I run my flex > application in I.E 7 the task manager show memory usage of 106MB and memory > increases as I run my application more and more it seems that garbage > collector in not working properly but when I run the same application on > Fire Fox task manager shows max memory 65MB and it also releases and task > manager show memory usage 5Mb in simple words on fir fox memory remains in > the bracket of 5 Mb to 65 MB not more than that, but when I run the > application on IE 7 results are very different , I am using flash player > 9.0.124.0 ,Can any tell me what cud be the issue. > > > > Thanks in advance > > > > Parkash ARjan. >
Re: [flexcoders] Objects are not Garbage Collected
10X a lot now things are working fine . --- On Thu, 11/6/08, Fotis Chatzinikos <[EMAIL PROTECTED]> wrote: > From: Fotis Chatzinikos <[EMAIL PROTECTED]> > Subject: Re: [flexcoders] Objects are not Garbage Collected > To: flexcoders@yahoogroups.com > Date: Thursday, November 6, 2008, 12:03 AM > very quickly, *objArrCollModelsVO* seems like an > arraycollection... > > are you sure that your for loop removes all references? > > if item 0 is removed, item 1 becomes 0, so next time when > you remove 1 you > are in reality removing 2 and so on... > > try: > * > for( var** k:int = **model.objArrCollModelsVO.length **; k > >= 0 ;k-- ) * > > *{* > > > On Wed, Nov 5, 2008 at 3:04 PM, Parkash > <[EMAIL PROTECTED]> wrote: > > >Hi all i have written a simple flex applcation and > i am using a > > Caringorm framework. > > In my command class i am parsing a xml response and > cretating about 100 > > value object and iam adding these object in a > ArrayCollection which is bind > > to some gird . when i enters in execute method i > explicitly remove each > > object from collection like this > > > > > > *for( var** k:int = 0 ; k < > model.objArrCollModelsVO.length ;k++ ) * > > > > *{* > > > > *var** obj:Object = > model.objArrCollModelsVO.removeItemAt( k );* > > > > *trace( "GOing to Remove "** + obj.name > );* > > > > *obj = **null** ;* > > > > *}* > > > > > > > > but these are objects are not garbage collected and > remians in memory can > > any one tell how to resolve this problem b/c my > application is getting very > > slow if my commnd class runs more than 6 times Or > any one can send some > > good tutorial about Garbage collection in Flex > > > > > > > > Thanks in Advance > > > > Parkash ARjan... > > > > > > > > > > > > > > > -- > Fotis Chatzinikos, Ph.D. > Founder, > Phinnovation > [EMAIL PROTECTED],
[flexcoders] DataGrid Selection and Overing.
Hi every one , i am facing a little problem please help me. I have DataGrid with following styles alternatingItemColors: #FF, #ECF1F7 selectionColor: #D9DE74 roll-over-color:#D3E0FE Now on of my grid need the follwing requirement Allow hover color only but user cannot select any row ,i tried to set grid selectable property false but this removes hovering also . Can any any tell me how to resolve this problem , Thanks in Advance.
[flexcoders] SuperTabNavigator Question
Hi Iam using Supertabnavigator form FlexLib i have two questions about this tab Q1) can u tell me how i can change the icon of cross buton i want to use other image instead of defaul icon Q2) i wrote follwing css ..myTabs { fillColors: #a1bbe4, #a1bbe4; } but when i apply this to Super tAB tabStyleName="myTabs" the cross image changes to circle can u tell me why.. thanks in advance and merry XMAss to every one Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
[flexcoders] Button White Background..
I wnat to change the background color of button to white but its not changing the color plz help me and let me know what is problm here is my code thanks in advance and Happy Eid to all group members... http://www.adobe.com/2006/mxml"; layout="absolute"> Button { fill-colors: #ff, #ff; } Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping
Re: [flexcoders] What type of applications i can build using flex?
Hello Fahd u can write any kind of application in flex. Flex is not just for multimedia kind of application. our team in pakistan is using flex/j2ee to make pure bussines application. currently we r making portfolio rebalancing application(pure bussines application). and its fun working with flex and J2ee. - Original Message From: fahd <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Sunday, December 16, 2007 2:44:40 PM Subject: [flexcoders] What type of applications i can build using flex? Hello everyone , I am a .NET developer and i read about flex as a fast application development environment. i chack the showcases in the adobe site and i find that all that applications that build using flex are a multimedia applications. my question is : can i use flex to develope a non-multimedia app. like finance or planning applications? and is it faster ( for develop ) than visual studio .net ? Thanks for your help Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs
[flexcoders] Strange Behaviour
I HAVE TWO PANEL AND ONE BUTTON IN AN APPLIACTION ONE PANEL CONTAINS VBOX WHICH CONTAINS A DATAGRID SECOND PANEL IS EMPTY I WANT TO PLACE VBOX OF PANEL ONE TO BE COPIED IN PANEL TWO BUT I OBSEVE A STRANGE BEHAVIOUR ITS IS REMOVED FROM PANEL ONE CAN U TELL ME WHY HERE IS MY CODE. http://www.adobe.com/2006/mxml";> Pavement 11.99 Slanted and Enchanted Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ