[flexcoders] Plug-in Based application like Eclipse RCP in Flex/AIR

2009-04-22 Thread Parjan Arjan
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

Re: [flexcoders] Re: Memory Issue in Internet Explorer

2008-11-19 Thread Parjan Arjan
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:

Re: [flexcoders] Objects are not Garbage Collected

2008-11-06 Thread Parjan Arjan
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

Re: [flexcoders] Objects are not Garbage Collected

2008-11-05 Thread parjan
Thank you Pual for your reply but my Value Objects don't have any listeners attached to them and no other variable reference's to them i have double checked every thing after your reply and i still don't have any clue what is going on ,my task mangers shows me increase of 2MB whenever my

[flexcoders] DataGrid Selection and Overing.

2008-10-22 Thread Parjan Arjan
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

[flexcoders] UIComponenet errorString Question

2008-07-05 Thread parjan
setting the someComponent.errorString = ; also makes the border turn black and solid. It loses it's inset style, even when the css reads: TextInput {borderStyle:inset} can one tell me how to resolve this problem. i want my TextInput to its original state to black border around it thanks in

[flexcoders] Caringorm Event

2008-07-02 Thread parjan
hi every i facing problem while re-dispatching Caringorm event. i have override clone method in my Event class can any tell me what cud be the problem here is code for my event class.. package com.softpak.events.mm { import com.adobe.cairngorm.control.CairngormEvent; import

[flexcoders] Fw: Radio Button Binding Binding Question

2008-07-01 Thread parjan
Hi i have two radio button in group g1 like this mx:RadioButtonGroup id=g1/ mx:RadioButton groupName=g1 selected=true name=X label=XYZ x=135 y=3/ mx:RadioButton groupName=g1 name=A label=ABC x=135 y=25/ and my objmodel's property 'ptype' is bound with current radio button

[flexcoders] synchronous events in flex

2008-06-28 Thread parjan
Hi Can anyone tell me how to write synchronous events in flex application? I am calling an Httpservice on focus out event of text field this service checks name duplication. I want my application to wait for service to finish and then do some processing Thanks in advance

[flexcoders] Custom Event Not Dispatched

2008-06-28 Thread parjan
HI can any one tell me what is wrong with this code. I wrote a custom event and dispatched this event from my entity class and am listening for this event on main application but the listener is not listening for event. Please help me. here is my Event class public class MyEvent

Re: [flexcoders] Custom Event Not Dispatched

2008-06-28 Thread parjan
Ok dear i chanaged MyEvent Class with this public class MyEvent extends Event { public static var MY_EVENT:String = MY_EVENT ; public function MyEvent() { super ( MY_EVENT , true );

Re: [flexcoders] Custom Event Not Dispatched

2008-06-28 Thread parjan
:11 AM, [EMAIL PROTECTED]parjan%40softpak.com wrote: HI can any one tell me what is wrong with this code. I wrote a custom event and dispatched this event from my entity class and am listening for this event on main application but the listener is not listening for event

Re: [flexcoders] synchronous events in flex

2008-06-28 Thread parjan
You mean if i have to display an alert message 'Customer name already exists' them i have to put this code in result method as follows, Basically this is Command class which implements IResponder . public function result( event : Object ) : void {

Re: [flexcoders] Custom Event Not Dispatched

2008-06-28 Thread parjan
dispatch line to: dispatchEvent( new MyEvent(), true ); On Sat, Jun 28, 2008 at 10:11 AM, [EMAIL PROTECTED] mailto:parjan%40softpak.com parjan%40softpak.com wrote: HI can any one tell me what is wrong with this code. I wrote a custom event and dispatched this event

[flexcoders] Problem While Downcasting Flex Modules

2008-06-21 Thread parjan
HI everyone, I am facing a problem while down casting the flex module. I have created two flex modules called FlexModule1.mxml and FlexModule2.mxml. These both modules contain the same code. I have placed FlexModule1.mxml under modules folder and FlexModule2.mxlm @ application root. Here is

[flexcoders] Problem While Downcasting Flex Modules

2008-06-21 Thread parjan
HI everyone, I am facing a problem while down casting the flex module. I have created two flex modules called FlexModule1.mxml and FlexModule2.mxml. These both modules contain the same code. I have placed FlexModule1.mxml under modules folder(modules/FlexModule1.mxml) and FlexModule2.mxlm @

[flexcoders] Event Not Dispatched From TileWindow

2008-05-18 Thread parjan
Dear All I am trying to dispatch an event from tile window and i am capturing this event on parent container but event is not dispatching for some reason .Here is my code can u point out what is wrong here thanks in advance.. Parkash Arjan // This is my Event Class Code public class

[flexcoders] Label As Combobox Itemrenderer not working properly

2008-04-27 Thread parjan
Hello Friends can any tell me what is wrong with this code. I am trying to disable the labels but they are not disabled even visible = false not working can u tell me why.. here is complete code. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Combobox And Datagrid

2008-04-27 Thread parjan
Hi Friends .. I am writting a simple code in which i have one datagrid with two coloumns . in first coloumn iam using combobox as itemrenderer. but this combobox is working abnormally when more and more item are added to the grid or when scroll bar appears . some one told me that this problem

[flexcoders] NUmeric Only Textfield

2008-03-22 Thread parjan
I have a text field which accepts only real data that is number and decimal point (.) i have set restrict propety as restrict=0-9\. for text input but it accepts more than one decimal point can u teel me how to solve this problem with minimum code thanks in advance Parkash Arjan

[flexcoders] SuperTabNavigator Question

2007-12-24 Thread Parjan Arjan
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

[flexcoders] Button White Background..

2007-12-20 Thread Parjan Arjan
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... ?xml version=1.0 encoding=utf-8? mx:Application

Re: [flexcoders] What type of applications i can build using flex?

2007-12-16 Thread Parjan Arjan
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