[flexcoders] Re: This Kit changed all my life...

2011-12-14 Thread jitendra jain
phey there!brthis has been a truly amazing prospect to the key to 
fortunebra 
href=http://modeltracklab.com.ar/profile/61DeanJames/;http://modeltracklab.com.ar/profile/61DeanJames//abrc
 ya/p


[flexcoders] Re: Fwd: I am finally became Boss

2011-12-14 Thread jitendra jain
phey there!brI knew things couldnt get any worse this completely turned my 
luck around this proves that miracles do exist think about itbra 
href=http://kosmosprint.com/profile/18MatthewWood/;http://kosmosprint.com/profile/18MatthewWood//abrsee
 you later/p


[flexcoders] I figured I should share the wealth

2011-11-28 Thread jitendra jain
phi!brim finally turning my life around since I found this ive never had a 
late payment now im on top of my game imagine the possibilitiesbra 
href=http://www.whitwelllandscaping.com/profile/55StephenWhite/;http://www.whitwelllandscaping.com/profile/55StephenWhite//abrgoodbye/p


[flexcoders] Selected state of ItemRenderer

2011-10-30 Thread jitendra jain
Hi Group,

 Even if my data provider is changed, the item renderer does not clear the 
selected state. Any ideas?

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

[flexcoders] Re: Re: Hello Friend...

2011-10-26 Thread jitendra jain
pHello Friend.breveryone was worried that I would amount to nothing this 
picked me up when I was down now im back in control please keep this between 
usbra 
href=http://call-tv.cba.pl/MichaelFerguson69.html;http://call-tv.cba.pl/MichaelFerguson69.html/abrc
 ya/p


[flexcoders] Just look

2011-10-19 Thread jitendra jain
pHey...brshow everyone how easy it is bra 
href=http://www.fraza.ua/aw.php?fopuxamp;dat=facebook.comamp;cahi=facebook.comamp;u=http://jobnewsreport.net/esubmit/bizopp_hw3.php;http://www.fraza.ua/aw.php?fopuxamp;dat=facebook.comamp;cahi=facebook.comamp;u=http://jobnewsreport.net/esubmit/bizopp_hw3.php/abrsee
 you soon/p


[flexcoders] This Kit changed all my life.

2011-10-13 Thread jitendra jain
pHola Friend...brit seemed as though I had reached the end of the line I 
cant believe how much this exceeded expectations it proved that anything is 
possible consider giving it a trybra 
href=http://holzwahl.at/TimothyJackson92.html;http://holzwahl.at/TimothyJackson92.html/abrtalk
 to you later./p


Re: [flexcoders] Spark DataGrid and DefaultGridHeaderRenderer

2011-09-29 Thread jitendra jain
I have resolved this by extending DefaultGridItemRenderer

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Wednesday, 28 September 2011 5:35 PM
Subject: [flexcoders] Spark DataGrid and DefaultGridHeaderRenderer


  
Hi Guys,

  I want to set the css for the TextSelectedColor, TextRollOverColor and 
Underline the selected or roll over text for the both DataGrid and 
DefaultGridHeaderRenderer..? Please help.. which are the style to look into?

 
Thanks,

with Regards,
Jitendra Jain



 

[flexcoders] svg file format

2011-09-29 Thread jitendra jain
Hi Guys,

  It was really strange that Adobe supports svg at compile time and not at run 
time.. I want one svg file at run time.. Is that possible..? If there is any 
other external tools available to load that svg file in the application?

 
Thanks,

with Regards,
Jitendra Jain

[flexcoders] Spark DataGrid and DefaultGridHeaderRenderer

2011-09-28 Thread jitendra jain
Hi Guys,

  I want to set the css for the TextSelectedColor, TextRollOverColor and 
Underline the selected or roll over text for the both DataGrid and 
DefaultGridHeaderRenderer..? Please help.. which are the style to look into?

 
Thanks,

with Regards,
Jitendra Jain

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues [1 Attachment]

2011-09-20 Thread jitendra jain
Iam attaching png file also.

  The container that has the click listeners covers the entire screen.. and 
wherever you click it will displays the alert box. But when the text areas are 
dynamically added (making scroller 90%) and if we click the area below the text 
areas(the area where scoller has to appear) it doesn't displays the Alert box. 




?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here --
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 12:19:23 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
I don’t understand what “below container” means.  And whether there is supposed 
to be a click handler on the container group.


On 9/19/11 10:26 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

In short, Alert should not be displayed.
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 10:54:06 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Yes that is happening but i want the below container to respond to the click 
events when clicked on empty space.
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 1:40:07 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

I added a click handler to the container group, and height=”90%” to the 
scroller.  I can click in the TextAreas and space between and it shows the 
Alert.  That isn’t happening for you?


On 9/18/11 11:03 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Alex, 

  Thanks again for your kind reply.. Iam posting some code..  Look here the 
scroller is not appearing and the area where the components are dynamically 
added the background should be clickable.  But if you add height=90% to the 
scoller then scroller will appear but background is not clickable..


?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here 
--
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Mon, 19 September, 2011 10:32:54 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

You will probably get better answers if you can post

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-20 Thread jitendra jain
Thanks Alex, that did the trick.. Hats off to you !!

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Wed, 21 September, 2011 1:38:53 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
If I understand correctly, you have to set mouseEnabledWhereTransparent=false 
on 
both the container Group and the ScrollerSkin.


On 9/20/11 3:53 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   [Attachment(s) #TopText  from jitendra jain included below]  

Iam attaching png file also.

  The container that has the click listeners covers the entire screen.. and 
wherever you click it will displays the alert box. But when the text areas are 
dynamically added (making scroller 90%) and if we click the area below the 
text 
areas(the area where scoller has to appear) it doesn't displays the Alert box. 



?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here --
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 12:19:23 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

I don’t understand what “below container” means.  And whether there is 
supposed 
to be a click handler on the container group.


On 9/19/11 10:26 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

In short, Alert should not be displayed.
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 10:54:06 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Yes that is happening but i want the below container to respond to the click 
events when clicked on empty space.
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 1:40:07 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

I added a click handler to the container group, and height=”90%” to the 
scroller.  I can click in the TextAreas and space between and it shows the 
Alert.  That isn’t happening for you?


On 9/18/11 11:03 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Alex, 

  Thanks again for your kind reply.. Iam posting some code..  Look here the 
scroller is not appearing and the area where the components are dynamically 
added the background should be clickable.  But if you add height=90% to the 
scoller then scroller will appear but background is not clickable..


?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here 
--
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-19 Thread jitendra jain
Hi Alex, 

  Thanks again for your kind reply.. Iam posting some code..  Look here the 
scroller is not appearing and the area where the components are dynamically 
added the background should be clickable.  But if you add height=90% to the 
scoller then scroller will appear but background is not clickable..


?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here --
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication


 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Mon, 19 September, 2011 10:32:54 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
You will probably get better answers if you can post a 20-line test case we can 
copy paste and run, with explicit and unambiguous explanation as to what the 
problem is


On 9/16/11 11:24 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Looks like it reserves 90% of height for the scoller.. How can I overcome with 
this problem?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Sat, 17 September, 2011 11:52:05 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Alex thanks a lot.. But even it is not working. I made 
mouseEnabledWhereTransparent=false, it is not working..
The below components are clickable only when i remove the absolute height from 
the scroller that is 90%,.But scroller doesn't appear.

 I created a skin class also and that is also not helpful by setting the 
mouseEnabledWhereTransparent property..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri, 16 September, 2011 9:02:25 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

If mouseEnabledWhereTransparent=true, you can’t click on things below


On 9/16/11 6:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

Can anyone throw light on this.. Any clues?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


- Forwarded Message 
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Hi Coders,

   I have one group component in which the children are added dynamically. 
 There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this component 
is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
 mouseEnabledWhereTransparent=true
   
   
s:Scroller right=0 top=40  height=90%
s:Group id=container right=5 bottom=2 width=100% 
mouseEnabled=true mouseEnabledWhereTransparent=true 
includeInLayout=true
s:layout
s:VerticalLayout /
/s:layout
/s:Group
/s:Scroller
/s:Group

Any help is highly appreciated..
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

 
 

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-19 Thread jitendra jain
Yes that is happening but i want the below container to respond to the click 
events when clicked on empty space.

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 1:40:07 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
I added a click handler to the container group, and height=”90%” to the 
scroller.  I can click in the TextAreas and space between and it shows the 
Alert.  That isn’t happening for you?


On 9/18/11 11:03 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Alex, 

  Thanks again for your kind reply.. Iam posting some code..  Look here the 
scroller is not appearing and the area where the components are dynamically 
added the background should be clickable.  But if you add height=90% to the 
scoller then scroller will appear but background is not clickable..


?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here --
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Mon, 19 September, 2011 10:32:54 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

You will probably get better answers if you can post a 20-line test case we 
can 
copy paste and run, with explicit and unambiguous explanation as to what the 
problem is


On 9/16/11 11:24 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Looks like it reserves 90% of height for the scoller.. How can I overcome 
with 
this problem?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Sat, 17 September, 2011 11:52:05 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Alex thanks a lot.. But even it is not working. I made 
mouseEnabledWhereTransparent=false, it is not working..
The below components are clickable only when i remove the absolute height 
from 
the scroller that is 90%,.But scroller doesn't appear.

 I created a skin class also and that is also not helpful by setting the 
mouseEnabledWhereTransparent property..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri, 16 September, 2011 9:02:25 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

If mouseEnabledWhereTransparent=true, you can’t click on things below


On 9/16/11 6:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

Can anyone throw light on this.. Any clues?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


- Forwarded Message 
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Hi Coders,

   I have one group component in which the children are added dynamically. 
 There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this 
component is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
 mouseEnabledWhereTransparent=true

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-19 Thread jitendra jain
In short, Alert should not be displayed.

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 10:54:06 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
Yes that is happening but i want the below container to respond to the click 
events when clicked on empty space.

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tue, 20 September, 2011 1:40:07 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
I added a click handler to the container group, and height=”90%” to the 
scroller.  I can click in the TextAreas and space between and it shows the 
Alert.  That isn’t happening for you?


On 9/18/11 11:03 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Alex, 

  Thanks again for your kind reply.. Iam posting some code..  Look here the 
scroller is not appearing and the area where the components are dynamically 
added the background should be clickable.  But if you add height=90% to the 
scoller then scroller will appear but background is not clickable..


?xml version=1.0 encoding=utf-8?

   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
creationComplete=creationComplete()
fx:Declarations
!-- Place non-visual elements (e.g., services, value objects) here --
/fx:Declarations

fx:Script
![CDATA[
import mx.controls.Alert;
private function creationComplete():void{
var timer:Timer = new Timer(5000);
timer.addEventListener(TimerEvent.TIMER, 
function(event:TimerEvent):void{
var grp:Group = new Group();
grp.addElement(new TextArea());
container.addElement(grp);
});
timer.start();
}
]]
/fx:Script
s:Group  height=100% width=100%  click=Alert.show('clicked');
s:TextArea text=Hello Everybody/
/s:Group
s:Scroller right=0 top=40
s:Group id=container right=5 top=40
s:layout
s:VerticalLayout/
/s:layout
/s:Group
/s:Scroller

/s:WindowedApplication

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Mon, 19 September, 2011 10:32:54 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

You will probably get better answers if you can post a 20-line test case we 
can 
copy paste and run, with explicit and unambiguous explanation as to what the 
problem is


On 9/16/11 11:24 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Looks like it reserves 90% of height for the scoller.. How can I overcome 
with 
this problem?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Sat, 17 September, 2011 11:52:05 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Alex thanks a lot.. But even it is not working. I made 
mouseEnabledWhereTransparent=false, it is not working..
The below components are clickable only when i remove the absolute height 
from 
the scroller that is 90%,.But scroller doesn't appear.

 I created a skin class also and that is also not helpful by setting the 
mouseEnabledWhereTransparent property..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798




From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri, 16 September, 2011 9:02:25 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

If mouseEnabledWhereTransparent=true, you can’t click on things below


On 9/16/11 6:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

Can anyone throw light on this.. Any clues?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


- Forwarded Message 
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Hi Coders,

   I have one group component in which the children are added dynamically. 
 There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this 
component is 
clickable even

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-17 Thread jitendra jain
Alex thanks a lot.. But even it is not working. I made 
mouseEnabledWhereTransparent=false, it is not working..
The below components are clickable only when i remove the absolute height from 
the scroller that is 90%,.But scroller doesn't appear.

 I created a skin class also and that is also not helpful by setting the 
mouseEnabledWhereTransparent property..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri, 16 September, 2011 9:02:25 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
If mouseEnabledWhereTransparent=true, you can’t click on things below


On 9/16/11 6:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

Can anyone throw light on this.. Any clues?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


- Forwarded Message 
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Hi Coders,

   I have one group component in which the children are added dynamically. 
 There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this component 
is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
 mouseEnabledWhereTransparent=true
   
   
s:Scroller right=0 top=40  height=90%
s:Group id=container right=5 bottom=2 width=100% 
mouseEnabled=true mouseEnabledWhereTransparent=true includeInLayout=true
s:layout
s:VerticalLayout /
/s:layout
/s:Group
/s:Scroller
/s:Group

Any help is highly appreciated..
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

 
 

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-17 Thread jitendra jain
Looks like it reserves 90% of height for the scoller.. How can I overcome with 
this problem?

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Sat, 17 September, 2011 11:52:05 AM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
Alex thanks a lot.. But even it is not working. I made 
mouseEnabledWhereTransparent=false, it is not working..
The below components are clickable only when i remove the absolute height from 
the scroller that is 90%,.But scroller doesn't appear.

 I created a skin class also and that is also not helpful by setting the 
mouseEnabledWhereTransparent property..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Fri, 16 September, 2011 9:02:25 PM
Subject: Re: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
If mouseEnabledWhereTransparent=true, you can’t click on things below


On 9/16/11 6:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

Can anyone throw light on this.. Any clues?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


- Forwarded Message 
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
   

Hi Coders,

   I have one group component in which the children are added dynamically. 
 There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this component 
is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
 mouseEnabledWhereTransparent=true
   
   
s:Scroller right=0 top=40  height=90%
s:Group id=container right=5 bottom=2 width=100% 
mouseEnabled=true mouseEnabledWhereTransparent=true includeInLayout=true
s:layout
s:VerticalLayout /
/s:layout
/s:Group
/s:Scroller
/s:Group

Any help is highly appreciated..
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

 
 

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

Fw: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-16 Thread jitendra jain
Hi Group,

Can anyone throw light on this.. Any clues?

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



- Forwarded Message 
From: jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Mon, 12 September, 2011 8:23:33 PM
Subject: [flexcoders] Scroller and mouseEnabledWhereTransparent Issues

  
Hi Coders,

   I have one group component in which the children are added dynamically. 
There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this component 
is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
  mouseEnabledWhereTransparent=true
   
   
s:Scroller right=0 top=40  height=90%
s:Group id=container right=5 bottom=2 width=100% 
mouseEnabled=true mouseEnabledWhereTransparent=true includeInLayout=true
s:layout
s:VerticalLayout /
/s:layout
/s:Group
/s:Scroller

/s:Group

Any help is highly  appreciated..
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

 

[flexcoders] Scroller and mouseEnabledWhereTransparent Issues

2011-09-12 Thread jitendra jain
Hi Coders,

   I have one group component in which the children are added dynamically. 
There 
is also some components on which it is overlapping
. But when i apply the scroller with height 90%. No area below this component 
is 
clickable even though its height is not 90%. Even i tried with 
mouseEnabledWhereTransparent =true. But nothing seems working.



public function showElement(comp :*):void{
container.addElement(comp);
}


s:Group id=parentGrp includeInLayout=true 
 top=10 right=10 bottom=10 
 mouseEnabledWhereTransparent=true
   
   
s:Scroller right=0 top=40  height=90%
s:Group id=container right=5 bottom=2 width=100% 
mouseEnabled=true mouseEnabledWhereTransparent=true includeInLayout=true
s:layout
s:VerticalLayout /
/s:layout
/s:Group
/s:Scroller

/s:Group

Any help is highly appreciated..
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


Re: [flexcoders] Image Flickering

2011-09-08 Thread jitendra jain
Guys.. I haven't heard anything from any of you on this topic...

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Tue, 30 August, 2011 12:13:48 PM
Subject: [flexcoders] Image Flickering

  
Hi Guys,
 

   When i click any item on the Button bar the image flickers and below is my 
code for the first time.

/s:ArrayCollection id=arrayCollection
 mx:Object label=Events
selectedImage=@Embed('images/abc.png')
unselectedImage=@Embed('images/abc1.png')
 selectedImageOver=@Embed('images/abc2.png')
unselectedImageOver=@Embed('abc3.png')/
mx:Object label=Events
selectedImage=@Embed('images/xyz.png')
unselectedImage=@Embed('images/xyz1.png')
selectedImageOver=@Embed('images/xyz2.png')
unselectedImageOver=@Embed('images/xyz3.png')/

/s:ArrayCollection

s:ButtonBar id=navigationBar
dataProvider={arrayCollection} 
selectedIndex=0
 requireSelection=true   
 click=change(event) /
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

 

[flexcoders] SriptTimeOut

2011-09-06 Thread jitendra jain
Hi coders, 

  I have overridden the scriptTimeOut in the application tag. By default it is 
15 seconds and i have increased to 60 . But looks like it is not working.

  Any help ?

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


[flexcoders] Clearing of Shared Object during Uninstallation of AIR app

2011-09-02 Thread jitendra jain
Hi Guys,

  how to clear the shared objects during uninstallation of AIR application? 
Please help..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


Re: [flexcoders] Flash Player may be not creating Shared Object on Mac

2011-08-30 Thread jitendra jain
Thanks Guy Morton. I have resolved my problem and the solution is as below.

  I got the latest flash player from the Adobe. I have Flash Builder 4.5 
installed on My mac machine and when i launch the application via Flash 
Builder(standalone), it uses the internal Flash Player(debugger version) that 
was embedded with Flash Builder on Mac which fails to create the shared 
objects. 
I clicked project - properties, Flex compiler - checked HTML wrapper (at 
bottom) and then the shared objects were created.


 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Guy Morton g...@alchemy.com.au
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Mon, 29 August, 2011 12:37:59 PM
Subject: Re: [flexcoders] Flash Player may be not creating Shared Object on Mac

  
Shared objects work fine on the mac. You need to give us more details if you 
want help. 

On 29/08/2011, at 5:00 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:


  
Hi Guys,

  Today I have installed Flash Builder on Mac Machine. The code doesn't work 
 .. 
I am using Shared Objects for storing the cookie..
   In windows it is working (same code). I changed the settings via Globel 
Setting Panel on Adobe site. Please revert asap. Thanks for help in advance

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


 

[flexcoders] Image Flickering

2011-08-30 Thread jitendra jain
Hi Guys,
 

   When i click any item on the Button bar the image flickers and below is my 
code for the first time.

/s:ArrayCollection id=arrayCollection
 mx:Object label=Events
selectedImage=@Embed('images/abc.png')
unselectedImage=@Embed('images/abc1.png')
selectedImageOver=@Embed('images/abc2.png')
unselectedImageOver=@Embed('abc3.png')/
mx:Object label=Events
selectedImage=@Embed('images/xyz.png')
unselectedImage=@Embed('images/xyz1.png')
selectedImageOver=@Embed('images/xyz2.png')
unselectedImageOver=@Embed('images/xyz3.png')/

/s:ArrayCollection

s:ButtonBar id=navigationBar
dataProvider={arrayCollection} 
selectedIndex=0
 requireSelection=true   
 click=change(event) /
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


[flexcoders] Flash Player may be not creating Shared Object on Mac

2011-08-29 Thread jitendra jain
Hi Guys,

  Today I have installed Flash Builder on Mac Machine. The code doesn't work .. 
I am using Shared Objects for storing the cookie..
   In windows it is working (same code). I changed the settings via Globel 
Setting Panel on Adobe site. Please revert asap. Thanks for help in advance

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


Re: [flexcoders] BrokenImageSkin

2011-08-18 Thread jitendra jain
Well, I don't want to extend it now as I have moved so far. If i do so, then i 
have to change the same thing at many places.. I understand what you want to 
say.. I had done this easily with Spark component but the issue is with the 
Halo 
component..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Srinivas Sandur Madhu Murthy s.m.srini...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tue, 16 August, 2011 8:24:35 PM
Subject: Re: [flexcoders] BrokenImageSkin

  
Why don't you do same in IOError handler  invalidate, i don't see why it 
shouldn't work.



On Aug 15, 2011, at 11:09 PM, jitendra jain wrote:

  


I dont want to give scaleContent when the image is successfully loaded. I want 
on IOError.. If i mention it in .css it will apply for all the skins..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798






From: Srinivas Sandur Madhu Murthy s.m.srini...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tue, 16 August, 2011 11:28:48 AM
Subject: Re: [flexcoders] BrokenImageSkin

  


Did you try scaleContent? and also try using verticalAlign  horizontalAlign 
[both css properties] along with scaleContent.


Srinivas

On Aug 15, 2011, at 10:51 PM, jitendra jain wrote:

  


Hi Coders,

  Iam using some Image Halo as well as Spark Image Controls. Whenever I am 
 using 
Halo BrokenImageSkin for Image control, the swfloader is fit to the content 
size.. how can I restrict my Image control, not to go beyond its actual size 
when there is any IOError?



 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798








 

Re: [flexcoders] BrokenImageSkin

2011-08-16 Thread jitendra jain
I dont want to give scaleContent when the image is successfully loaded. I want 
on IOError.. If i mention it in .css it will apply for all the skins..

 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





From: Srinivas Sandur Madhu Murthy s.m.srini...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tue, 16 August, 2011 11:28:48 AM
Subject: Re: [flexcoders] BrokenImageSkin

  
Did you try scaleContent? and also try using verticalAlign  horizontalAlign 
[both css properties] along with scaleContent.

Srinivas

On Aug 15, 2011, at 10:51 PM, jitendra jain wrote:

  


Hi Coders,

  Iam using some Image Halo as well as Spark Image Controls. Whenever I am 
 using 
Halo BrokenImageSkin for Image control, the swfloader is fit to the content 
size.. how can I restrict my Image control, not to go beyond its actual size 
when there is any IOError?



 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





 

[flexcoders] BrokenImageSkin

2011-08-15 Thread jitendra jain
Hi Coders,

  Iam using some Image Halo as well as Spark Image Controls. Whenever I am 
using 
Halo BrokenImageSkin for Image control, the swfloader is fit to the content 
size.. how can I restrict my Image control, not to go beyond its actual size 
when there is any IOError?



 Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-10 Thread jitendra jain
Hi Rishi,

  I have used the old fashion to keep an array when the displayPopUp property 
is set to true and removing from it when it is set to false..

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Rishi Tandon rishitandon...@yahoo.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Cc: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Wednesday, 10 August 2011 3:45 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
Jitendra can you share the solution too.

Sent from my iPhone

On Aug 10, 2011, at 11:24 AM, jitendra jain jitendra_jain_2...@yahoo.com 
wrote:


  
Alex.. Thanks I have resolved my problem, but want to ask you a 
question...(may be sounds funny for u ;) )..How to know that a specific 
component is a skin or control..?

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tuesday, 9 August 2011 12:15 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
PopUpAnchor is a child of the skin or container.


On 8/8/11 10:58 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Alex, I want the PopUpAnchors and not the popups..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, 8 August 2011 10:42 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy

   
   
PopUpAnchor or the thing it pops up?  The popups are in 
systemManager.popupChildren.


On 8/8/11 3:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

  From where do i find the number of PopUpAnchors in the systemManager 
hierarchy..?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 


 

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread jitendra jain
I noticed one strange behaviour.. When i switch my view state, the PopUpAnchor 
still remains opened.. Any idea?

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: jitendra jain jitendra_jain_2...@yahoo.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tuesday, 9 August 2011 11:28 AM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
Alex, I want the PopUpAnchors and not the popups..

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, 8 August 2011 10:42 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
PopUpAnchor or the thing it pops up?  The popups are in 
systemManager.popupChildren.


On 8/8/11 3:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

  From where do i find the number of PopUpAnchors in the systemManager 
hierarchy..?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 


 

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread jitendra jain
Alex.. Thanks I have resolved my problem, but want to ask you a question...(may 
be sounds funny for u ;) )..How to know that a specific component is a skin or 
control..?

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Tuesday, 9 August 2011 12:15 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
PopUpAnchor is a child of the skin or container.


On 8/8/11 10:58 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Alex, I want the PopUpAnchors and not the popups..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


From:Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, 8 August 2011 10:42 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy

   
   
PopUpAnchor or the thing it pops up?  The popups are in 
systemManager.popupChildren.


On 8/8/11 3:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

  From where do i find the number of PopUpAnchors in the systemManager 
hierarchy..?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

[flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread jitendra jain
Hi Group,

  From where do i find the number of PopUpAnchors in the systemManager 
hierarchy..?

 

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread jitendra jain
Alex, I want the PopUpAnchors and not the popups..

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, 8 August 2011 10:42 PM
Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy


  
PopUpAnchor or the thing it pops up?  The popups are in 
systemManager.popupChildren.


On 8/8/11 3:17 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Group,

  From where do i find the number of PopUpAnchors in the systemManager 
hierarchy..?
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

Re: [flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-04 Thread jitendra jain
Well ,  in data grid of spark component we have selectedItem:Object and in 
other spark components like List we have selectedItem:*, whenever my compiler 
runs in strict mode it throws the compiler error 1118: Implicit coercion of a 
value with static type Object to a possibly unrelated type 
com.objects.EventRule (while using datagrid)

RuleController.as
public class RuleController{
[Bindable]
public var selectedRule :EventRule;
}

In mxml

controller:RuleController id=controller/
s:DataGrid id=dg dataProvider={rules} width=100% height=100% 
selectedItem=@{controller.selectedRule} variableRowHeight=true  
   



/s:DataGrid

  I had written some workaround and it works now.. Thanks. But i think in data 
grid the Flex SDK must have selectedItem:*;


Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Wednesday, 3 August 2011 11:54 PM
Subject: Re: [flexcoders] Fw: Two way binding and stric mode compiler options


  
A test case and full text of the error are helpful things to post.


On 8/3/11 12:58 AM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   



This is working for other components like list but only creating problem with 
datagrid of spark library.
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798
- Forwarded Message -
From:jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Wednesday, 3 August 2011 12:39 PM
Subject: Two way binding and stric mode compiler opt! ions

Hi Guys,

  Iam using one data grid in which in have written one inline selectedItem 
=@{employee} , it is throwing a strict mode compiler error. I dont want to 
change my compiler options .. Please help
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798





   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

[flexcoders] Bindable query

2011-08-04 Thread jitendra jain
Hi Guys,

Please let me know


Difference between
   [Bindable]
    [Bindable(event=modelUpdated)]
    public function get model():RuleModel{
    }


   VS

  [Bindable(event=modelUpdated)]
   public function get model():RuleModel{
    }

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

[flexcoders] Two way binding and stric mode compiler options

2011-08-03 Thread jitendra jain
Hi Guys,

  Iam using one data grid in which in have written one inline selectedItem 
=@{employee} , it is throwing a strict mode compiler error. I dont want to 
change my compiler options .. Please help

 

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

[flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-03 Thread jitendra jain
This is working for other components like list but only creating problem with 
datagrid of spark library.

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

- Forwarded Message -
From: jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Wednesday, 3 August 2011 12:39 PM
Subject: Two way binding and stric mode compiler options


Hi Guys,

  Iam using one data grid in which in have written one inline selectedItem 
=@{employee} , it is throwing a strict mode compiler error. I dont want to 
change my compiler options .. Please help

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

[flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-03 Thread jitendra jain




This is working for other components like list but only creating problem with 
datagrid of spark library.

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

- Forwarded Message -
From: jitendra jain jitendra_jain_2...@yahoo.com
To: flex group flex flexcoders@yahoogroups.com
Sent: Wednesday, 3 August 2011 12:39 PM
Subject: Two way binding and stric mode compiler options


Hi Guys,

  Iam using one data grid in which in have written one inline selectedItem 
=@{employee} , it is throwing a strict mode compiler error. I dont want to 
change my compiler options .. Please help

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

Re: [flexcoders] Halo and Spark Scroll bar problem

2011-08-01 Thread jitendra jain
Thanks Alex.. Yes the component is the child of the scroller. But i want its 
layout to be automatically..  Can u throw some more light as iam not getting.. ?

 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798



From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Sent: Monday, 1 August 2011 9:23 PM
Subject: Re: [flexcoders] Halo and Spark Scroll bar problem


  
Is the component the child of the scroller?  It has to report contentSize 
properly.  Otherwise, it probably has to report measuredWidth/Height properly.


On 7/31/11 11:18 PM, jitendra jain jitendra_jain_2...@yahoo.com wrote:



 
 
   

Hi Guys,

  I have a halo component in which iam adding some spark components.. This 
halo component is child of another spark component and when iam applying 
scroller to the top spark component, it is not appearing.. Please help..
 
Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

   



-- 
Alex Harui
Flex SDK Team
Adobe System, Inc.
http://blogs.adobe.com/aharui
 
 

[flexcoders] AIR with Oracle

2009-12-29 Thread jitendra jain
Hi friends,

  Can we establish a connection to Oracle from AIR application? 

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


  The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. 
http://in.yahoo.com/

[flexcoders] Channels not allowing Flex clients to disconnects when network cable is unplugged or server connection is lost abruptly

2009-10-03 Thread jitendra jain
Hi friends,
 
  Please go thru this link . I'm running with same problem. Any hint is heartly 
appreciated.
 
http://forums.adobe.com/thread/295988

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


  Connect more, do more and share more with Yahoo! India Mail. Learn more. 
http://in.overview.mail.yahoo.com/

[flexcoders] alt+f4 Short cut key

2009-08-13 Thread jitendra jain
Hi friends,

  I want to implement alt+f4 key functionality in my swf application. How can I 
override the browser keys? Any help will be appreciated

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

[flexcoders] LCDS -Transaction Error - Unable to access User Transaction in DataService

2009-04-03 Thread jitendra jain
Hi Guys,
 
    I am getting this error . I looked at this following link
 
http://kb.adobe.com/selfservice/viewContent.do?externalId=6b82874fsliceId=2
 
But i don't know which configuration file they are talking about. Please help.

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


  Bollywood news, movie reviews, film trailers and more! Go to 
http://in.movies.yahoo.com/

Re: [flexcoders] Re: Question for Amfphp and Flex RemoteObject ?

2009-03-30 Thread jitendra jain
When you import flex.war in the eclipse or Flex Builder, you will see all those 
configuration files.

Thanks,

with Regards,
Jitendra Jain


--- On Sun, 29/3/09, Amy amyblankens...@bellsouth.net wrote:


From: Amy amyblankens...@bellsouth.net
Subject: [flexcoders] Re: Question for Amfphp and Flex RemoteObject ?
To: flexcoders@yahoogroups.com
Date: Sunday, 29 March, 2009, 7:42 PM






--- In flexcod...@yahoogro ups.com, markflex2007 markflex2007@ ... wrote:

 Hi,
 
 I take a look the Amfphp server code and structure. I do not see 
 service-config. xml and remoting-config. xml file.
 
 I need set connection with the two files in server if I use Flex remoteobject.
 
 service-config. xml is used for endpoint setting and remoting-config. xml is 
 used for destination/ source setting.
 

I never could figure out where those files were supposed to come from, either. 
I think that they get created when you use the wizard to generate the code for 
you.

I do my remote objects like this:

http://flexdiary. blogspot. com/2009/ 01/lazy-loading- tree-example- 
file-posted. html

HTH;

Amy

















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Re: TextArea textHeight with HTMl text?

2009-03-30 Thread jitendra jain
Look at this link, it will be quite helpful
 
http://livedocs.adobe.com/flex/2/langref/flash/text/TextLineMetrics.html


Thanks,

with Regards,
Jitendra Jain


--- On Sun, 29/3/09, Nicolas Noben nicolas.no...@gmail.com wrote:


From: Nicolas Noben nicolas.no...@gmail.com
Subject: [flexcoders] Re: TextArea textHeight with HTMl text?
To: flexcoders@yahoogroups.com
Date: Sunday, 29 March, 2009, 2:13 PM






--- In flexcod...@yahoogro ups.com, Sascha sbal...@...  wrote:

 I assume this is not supported by Flex but is there a method to get the
 correct text height from a TextArea that uses HTML text? If I try this I
 never get the correct height to fit the TextArea's height to it's text
 content, i.e. the TextArea is always smaller.


I have tried to answer this before. It's not 100% rock solid but it worked for 
us.

http://idletogether .com/automatical ly-resize- texttextarea- based-on- 
content-autosize -in-flex/

















  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

Re: [flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-19 Thread jitendra jain
I'm creating a replica of the desktop application. My user is addicted to the 
short cut keys. Without this my target audience will never going to appreciate.

Thanks,

with Regards,
Jitendra Jain


--- On Thu, 19/3/09, Tom Chiverton tom.chiver...@halliwells.com wrote:


From: Tom Chiverton tom.chiver...@halliwells.com
Subject: Re: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
To: flexcoders@yahoogroups.com
Date: Thursday, 19 March, 2009, 3:49 PM






On Tuesday 17 Mar 2009, jitendra jain wrote:
   I want to disable internet explorer keys like f5,f1 etc .

I'm not sure you do.
What is the user story to this ?

-- 
Tom Chiverton
Helping to professionally harvest user-centric patterns as part of the IT team 
of the year, '09 and '08

 * * * *  

This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list of 
members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners. We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged. If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents. If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells. com.















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-18 Thread jitendra jain
Thanks Alex for your kind reply,
 
  Only IE differs from all the browsers. The event flow is easy to understand 
in other browsers but in IE , all pains.
 
  I'm amazed still IE occupies majority of the space .
 
 Thanks,

with Regards,
Jitendra Jain

--- On Wed, 18/3/09, Alex Harui aha...@adobe.com wrote:


From: Alex Harui aha...@adobe.com
Subject: RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Date: Wednesday, 18 March, 2009, 10:33 AM








I don’t think there’s any easy answer for this.  Buzzword used lots of painful 
Javascript and even then had some issues.  Good luck.
 

Alex Harui
Flex SDK Developer
Adobe Systems Inc.
Blog: http://blogs. adobe.com/ aharui
 


From: flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of jitendra jain
Sent: Monday, March 16, 2009 11:33 PM
To: flex group flex
Subject: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
 








Hi friends,

 

  I want to disable internet explorer keys like f5,f1 etc . Also i want to 
impose key listeners in flex application. Everything works fine in FF, Google 
chrome etc. IE face problems only when the control is on the application .

 

Please help.

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798






Check out the all-new Messenger 9..0! Click here.

















  Download prohibited? No problem. CHAT from any browser, without download. 
Go to http://in.webmessenger.yahoo.com/

RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-18 Thread jitendra jain
Thanks Alex for your kind reply,
 
  Only IE differs from all the browsers. The event flow is easy to understand 
in other browsers but in IE , all pains.
 
  I'm amazed still IE occupies majority of the space .
 
 Thanks,

with Regards,
Jitendra Jain

--- On Wed, 18/3/09, Alex Harui aha...@adobe.com wrote:


From: Alex Harui aha...@adobe.com
Subject: RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Date: Wednesday, 18 March, 2009, 10:33 AM








I don’t think there’s any easy answer for this.  Buzzword used lots of painful 
Javascript and even then had some issues.  Good luck.
 

Alex Harui
Flex SDK Developer
Adobe Systems Inc.
Blog: http://blogs. adobe.com/ aharui
 


From: flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of jitendra jain
Sent: Monday, March 16, 2009 11:33 PM
To: flex group flex
Subject: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
 








Hi friends,

 

  I want to disable internet explorer keys like f5,f1 etc . Also i want to 
impose key listeners in flex application. Everything works fine in FF, Google 
chrome etc. IE face problems only when the control is on the application .

 

Please help.

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798






Check out the all-new Messenger 9..0! Click here.

















  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-18 Thread jitendra jain
Thanks Alex for your kind reply,
 
  Only IE differs from all the browsers. The event flow is easy to understand 
in other browsers but in IE , all pains.
 
  I'm amazed still IE occupies majority of the space .
 
 Thanks,

with Regards,
Jitendra Jain

--- On Wed, 18/3/09, Alex Harui aha...@adobe.com wrote:


From: Alex Harui aha...@adobe.com
Subject: RE: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
Date: Wednesday, 18 March, 2009, 10:33 AM








I don’t think there’s any easy answer for this.  Buzzword used lots of painful 
Javascript and even then had some issues.  Good luck.
 

Alex Harui
Flex SDK Developer
Adobe Systems Inc.
Blog: http://blogs. adobe.com/ aharui
 


From: flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On 
Behalf Of jitendra jain
Sent: Monday, March 16, 2009 11:33 PM
To: flex group flex
Subject: [flexcoders] Disabling internet explorer keys like f5, f1 etc and 
firing flex application keys
 








Hi friends,

 

  I want to disable internet explorer keys like f5,f1 etc . Also i want to 
impose key listeners in flex application. Everything works fine in FF, Google 
chrome etc. IE face problems only when the control is on the application .

 

Please help.

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798






Check out the all-new Messenger 9..0! Click here.

















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Disabling internet explorer keys like f5, f1 etc and firing flex application keys

2009-03-17 Thread jitendra jain
Hi friends,
 
  I want to disable internet explorer keys like f5,f1 etc . Also i want to 
impose key listeners in flex application. Everything works fine in FF, Google 
chrome etc. IE face problems only when the control is on the application .
 
Please help.

Thanks,

with Regards,
Jitendra Jain
Software Engineer
91-9979960798


  Check out the all-new Messenger 9.0! Go to http://in.messenger.yahoo.com/

[flexcoders] Move effects makes the target invisible

2009-02-25 Thread jitendra jain

Hi coders,
 
  I'm having a label component as a target for a move effect. I'm continously 
running this move effect. After some time the label component becomes invisible 
. Please help.
 
  How could i track this issue?
 

Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Namespace declaration problem

2009-01-08 Thread jitendra jain
May be your flex Build path is not pointing to the required path. 

Thanks,

with Regards,
Jitendra Jain


--- On Fri, 9/1/09, brucewhealton br...@futurewavedesigns.com wrote:

From: brucewhealton br...@futurewavedesigns.com
Subject: [flexcoders] Namespace declaration problem
To: flexcoders@yahoogroups.com
Date: Friday, 9 January, 2009, 7:55 AM






Hello all,
I have this code that I copied from a text book on Flex. I'm
aware of package notation but I'm not sure how this works in this
example and what is going wrong. In the code, I have within the
Application tag, a namespace definition. So, the Application tag
opens like this:
mx:Application xmlns:mx=http://www.adobe. com/2006/ mxml
layout=vertical
xmlns:ec=com. adobe.flex. extras.controls. *

I'm cutting out what is not relevant to the problem. The problem is
that this tag is not recognized by Flex 3, it gives a compile time error:
ec:AutoComplete id=nameField labelField= name lookAhead=true /
I guess I need to figure out what is inside the controls package that
is named above in the Application.
The error I get on that line is
1046: Type was not found or was not a Compile time constant: AutoComplete.
How might I figure this out? The text where I found this does not
elaborate on this particular code. It is an example of coding that is
a little different then what I am familiar with.

Can anyone help me make sense of this, please?
Bruce

 














  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] counting Pixel of Hbox when child added dynamically

2008-12-28 Thread jitendra jain
How to calculate pixels occupied by HBox when children are added dynamically?.


Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Re: Still getting old swf

2008-12-11 Thread jitendra jain
Thanks Ross for your valuable suggestions.

But this tag itself says that nothing is cached in the browser. I have added 
this line in the code. But still i don't see any side effects or anything 
buggy. I will spend some time in investigating or testing this issue.


Thanks,

with Regards,
Jitendra Jain


--- On Wed, 10/12/08, ross_w_henderson [EMAIL PROTECTED] wrote:
From: ross_w_henderson [EMAIL PROTECTED]
Subject: [flexcoders] Re: Still getting old swf
To: flexcoders@yahoogroups.com
Date: Wednesday, 10 December, 2008, 8:17 PM











Jitendra,



You might have something buggy going on in your FlexBuilder (I'm

assuming that's what you're building with), but I think your problem

may be solved just by pressing Shift + Refresh in your browser.



The HTTP-EQUIV tag might work, but it might not, depending on

variables that I don't know much about.  If you are viewing your

application locally, as opposed to running it on a webserver, it

definitely won't work.



Ross



--- In [EMAIL PROTECTED] ups.com, jitendra jain

jitendra_jain_ [EMAIL PROTECTED] wrote:



 Hi folks,

 

   I'm getting the old swf everytime iam cleaning the code and

building. I think my browser is caching the swf?

   Does this line in html will help?

 

 META HTTP-EQUIV= CACHE-CONTROL CONTENT=NO- CACHE

 

   Is it safe to add this line or do it will affect my

performance of flex as nothing is cached. Let me know your views..

  Thanks,

 

 with Regards,

 Jitendra Jain

 

 

 

   Add more friends to your messenger and enjoy! Go to

http://messenger. yahoo.com/ invite/






  




 

















  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Still getting old swf

2008-12-10 Thread jitendra jain
Hi folks,

  I'm getting the old swf everytime iam cleaning the code and building. I think 
my browser is caching the swf?
  Does this line in html will help?

META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE

  Is it safe to add this line or do it will affect my performance of flex as 
nothing is cached. Let me know your views.
 Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] SWF Security - how to prevent browsers - FireFox / IE cache swf file

2008-12-10 Thread jitendra jain
add this line in index.template.html
 
meta http-equiv=pragma content=no-cache/
 Thanks,

with Regards,
Jitendra Jain






From: kuntamayu [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, 10 December, 2008 2:53:59 PM
Subject: [flexcoders] SWF Security - how to prevent browsers - FireFox / IE 
cache swf file


Folks,

How can restrict Firefox and other browsers to stop caching flex swf 
file. 

Because once swf file is cashed at client side, it can be easily be 
decompiled..

I have seen some decompilers are, now, available to decompile AS3 - 
Flash Player 9 swf files.

~ MayKun

 


  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

Re: [flexcoders] Resize and Movw effect to air main native window

2008-12-09 Thread jitendra jain
Can u please paste some code?

 Thanks,

with Regards,
Jitendra Jain






From: abhishekchess1 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 9 December, 2008 4:37:44 PM
Subject: [flexcoders] Resize and Movw effect  to air main native window


hello frnds,

I have  air application, in that i have 1 canvas which contain 1
component page,
canvas has height=0 at first,
When user clicks on increase btn it should increase  to top , when
user clicks on decrease it should go again to  height=0;
both should work with effect , but it is not working,
is any idea?

thx in advanced
:)
abhishekchess1@ gmail.com




  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

[flexcoders] Multithreading Concept in Flex

2008-12-03 Thread jitendra jain
Hi friends,
   
    I read Alex's PseudoThread blog and it is quite useful information. My 
frustration starts with Flex consumer that receives 25-30 messages/Second. 
Depending on this messages i run some special effects like move , rotating 
etc. Everything is working fine. But my user can't input or open dialog etc 
when this effects and consumer is running. I tried with event priorities but it 
is not helping. Let me know your views. Welcome for your vital suggestions.
 Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Multithreading Concept in Flex

2008-12-02 Thread jitendra jain


Hi friends,
   
    I read Alex's PseudoThread blog and it is quite useful information. My 
frustration starts with Flex consumer that receives 25-30 messages/Second. 
Depending on this messages i run some special effects like move , rotating 
etc. Everything is working fine. But my user can't input or open dialog etc 
when this effects and consumer is running. I tried with event priorities but it 
is not helping. Let me know your views. Welcome for your vital suggestions.
 Thanks,

with Regards,
Jitendra Jain


Connect with friends all over the world. Get Yahoo! India Messenger.


  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

[flexcoders] mx:consumer bandwidth questions

2008-11-21 Thread jitendra jain
Hi coders,

   I have a consumer that gets the messages from ACTIVEMQ. I am using a 
selector property for filtering of message. Does it uses the bandwidth ? I want 
to know the bandwidth usage with and without selector property. Thanks for your 
valuable advices in advance.
 Thanks,

with Regards,
Jitendra Jain



  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

Re: [flexcoders] Observer pattern

2008-11-10 Thread jitendra jain
Well Everytime i create a popup there is only as single instance. But i don't 
want that also because My application is too big and iam not wanting my 
application to occupy the memory. Thanks again. I will read the link once again.
 Thanks,

with Regards,
Jitendra Jain






From: Ralf Bokelberg [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, 10 November, 2008 1:19:37 PM
Subject: Re: [flexcoders] Observer pattern


Very difficult to debug, because we don't know, what is going on
behind the scenes. Try googling Grant Skinner's articles about Flash
Player memory and garbage collection. Might be helpful. Also you could
try to create and destroy the popup a billion times and see, if the
problem manifests into a real problem.

Ralf.

On Mon, Nov 10, 2008 at 8:20 AM, jitendra jain
jitendra_jain_ [EMAIL PROTECTED] com wrote:
 Profiler still shows that popup occupied the memory. I'm
 enforcing garbage Collector but not working. Let me know..

 Thanks Relf for your reply.

 Thanks,

 with Regards,
 Jitendra Jain


  _ _ __
 From: Ralf Bokelberg ralf.bokelberg@ gmail.com
 To: [EMAIL PROTECTED] ups.com
 Sent: Monday, 10 November, 2008 12:46:12 PM
 Subject: Re: [flexcoders] Observer pattern

 Afaik the gc only runs, if the player is running out of memory. What
 makes you think, that your popup doesn't get garbage collected?

 Ralf.

 On Mon, Nov 10, 2008 at 6:08 AM, jitendra jain
 jitendra_jain_ [EMAIL PROTECTED] com wrote:
 Hi friends,

 I'm using Observer pattern to create popups in my application. But when i
 tried to remove PopUpManager. removePopUp( displayObj) , it does not get
 garbage collected. I even tried with assigning null to my Observer. ITs
 not
 working. I removed event Listeners and also firing Observer by setting the
 boolean 'false' the way we did with 'true'. But nothing seems working.

 Please help.

 Thanks,

 with Regards,
 Jitendra Jain



  _ _ __
 Connect with friends all over the world. Get Yahoo! India Messenger.


  _ _ __
 Add more friends to your messenger and enjoy! Invite them now.
 
 


  Be the first one to try the new Messenger 9 Beta! Go to 
http://in.messenger.yahoo.com/win/

[flexcoders] ObserverValue pattern

2008-11-09 Thread jitendra jain
Hi friends, 
I'm using Observer pattern to create popup in my application.. when 

 Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Observer pattern

2008-11-09 Thread jitendra jain
Hi friends,

 I'm using Observer pattern to create popups in my application.But when i tried 
to remove PopUpManager.removePopUp(displayObj), it does not get garbage 
collected. I even tried with assigning null to my Observer. ITs not working. I 
removed event Listeners and also firing Observer by setting the boolean 'false' 
the way we did with 'true'. But nothing seems working.


Please help.
 
Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Observer pattern

2008-11-09 Thread jitendra jain
Profiler still shows that popup occupied the memory. I'm 
enforcing garbage Collector but not working. Let me know..

Thanks Relf for your reply.
 Thanks,

with Regards,
Jitendra Jain






From: Ralf Bokelberg [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, 10 November, 2008 12:46:12 PM
Subject: Re: [flexcoders] Observer pattern


Afaik the gc only runs, if the player is running out of memory. What
makes you think, that your popup doesn't get garbage collected?

Ralf.

On Mon, Nov 10, 2008 at 6:08 AM, jitendra jain
jitendra_jain_ [EMAIL PROTECTED] com wrote:
 Hi friends,

 I'm using Observer pattern to create popups in my application. But when i
 tried to remove PopUpManager. removePopUp( displayObj) , it does not get
 garbage collected. I even tried with assigning null to my Observer. ITs not
 working. I removed event Listeners and also firing Observer by setting the
 boolean 'false' the way we did with 'true'. But nothing seems working.

 Please help.

 Thanks,

 with Regards,
 Jitendra Jain



  _ _ __
 Connect with friends all over the world. Get Yahoo! India Messenger.
 
 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] How to improve consuming rate of Flex messages

2008-11-05 Thread jitendra jain
Hi ,

I have a JMS Producer that produces messages at a speed of 25 msgs/Per second. 
How could i make my flex application smart enough to consume those 
inoming messages.
 Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
Paul, Sorry for late reply. I'm using this for load testing.

 Thanks,

with Regards,
Jitendra Jain







From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 25 October, 2008 9:28:27 PM
Subject: Re: [flexcoders] web compiler


 
Jitendra,
 
You've never really explained why you need this. 
Can you tell us?
 
Paul
- Original Message - 
From: jitendra jain 
To: [EMAIL PROTECTED] ups.com 
Sent: Saturday, October 25, 2008 2:08  PM
Subject: Re: [flexcoders] web  compiler

Hey Guys, I solved  the problem of web compiler

Simply i have to add  my library source path in the flex-config files.


source-path
  path-elementuser_classes/path-element
   /source-path 


   Thanks,

with  Regards,
Jitendra  Jain

 





 From: Paul Andrews [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Thursday, 23 October, 2008 2:05:52  PM
Subject: Re: [flexcoders]  web compiler


- Original Message - 
From: Michael  Schmalle 
To: [EMAIL PROTECTED] ups.com 
Sent: Friday, October 17, 2008 7:00 PM
Subject: Re: [flexcoders] web compiler

Ok, 

I had this in my plans to investigate in a couple months for my  server.

So is there something that caches swf on the first run, then only  recompiles 
when the mxml has changed?

Where did I hear that? This is in my head from a year or two ago.
 
It was basically how Flex 1.5 
worked.


Mike

 
snip

 Connect with friends all over the world. Get  Yahoo! India Messenger.  


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
Paul this link will help you 

http://labs.adobe.com/wiki/index.php/Flex_Stress_Testing_Framework
 Thanks,

with Regards,
Jitendra Jain






From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, 31 October, 2008 2:54:05 PM
Subject: Re: [flexcoders] web compiler


 
Jitendra,
 
What specifically is it about dynamic compilation that makes this so useful in 
this kind of application?
 
I'm struggling to get the point!
 
Paul
- Original Message - 
From: jitendra jain 
To: [EMAIL PROTECTED] ups.com 
Sent: Friday, October 31, 2008 7:35 AM
Subject: Re: [flexcoders] web compiler

Paul, Sorry for late reply. I'm using this for load testing.

Thanks,

with Regards,
Jitendra Jain







From: Paul Andrews [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Saturday, 25 October, 2008 9:28:27 PM
Subject: Re: [flexcoders] web compiler


 
Jitendra,
 
You've never really explained why you need this. Can you tell us?
 
Paul 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] web compiler

2008-10-31 Thread jitendra jain
The constructor for the LCDSTestManager class takes a String that
uniquely identifies the application/browser instance. When the Test
Admin application calls the browser server, it passes the URL of the
MXML test application to the browser server. The Test Admin application
also passes a unique ID that identifies the application instance as a
request parameter at the end of the URL. The following URL is an
example of a URL passed to the browser server: 

http://localhost:8400/lcds/DSStress/samples/simpleLoadTest.mxml?id=localhost:(0)

 
When the web browser loads the MXML test application, the
request parameter id is passed into the compiled SWF file and can be
found on the Application.application.parameters Object. The ID is
retrieved from Application.application.parameters.id and then passed in
the constructor for the LCDSTestManager. 
 Thanks,

with Regards,
Jitendra Jain







From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, 31 October, 2008 4:42:46 PM
Subject: Re: [flexcoders] web compiler


 
Thanks Jitendra.
 
It's not an article I'd looked at. I'm really still 
quite surprised that Adobes test setup  uses dynamically compiled mxml 
rather than just precompiled swfs, but I suppose there's a reason.
 
Paul
- Original Message - 
From: jitendra jain 
To: [EMAIL PROTECTED] ups.com 
Sent: Friday, October 31, 2008 9:36  AM
Subject: Re: [flexcoders] web  compiler

Paul this link will help you 
 
http://labs. adobe.com/ wiki/index. php/Flex_ Stress_Testing_ Framework
 Thanks,

with  Regards,
Jitendra  Jain






 From: Paul Andrews [EMAIL PROTECTED] .com
To: [EMAIL PROTECTED] ups.com
Sent: Friday, 31 October, 2008 2:54:05  PM
Subject: Re: [flexcoders]  web compiler


 
Jitendra,
 
What specifically is it about dynamic compilation  that makes this so useful in 
this kind of application?
 
I'm struggling to get the point!
 
Paul
- Original Message - 
From: jitendra jain 
To: [EMAIL PROTECTED] ups.com 
Sent: Friday, October 31, 2008 7:35  AM
Subject: Re: [flexcoders] web  compiler

Paul,  Sorry for late reply. I'm using this for load testing.

 Thanks,

with  Regards,
Jitendra  Jain

 





 From: Paul Andrews [EMAIL PROTECTED] com
To: [EMAIL PROTECTED]  ups.com
Sent: Saturday,  25 October, 2008 9:28:27 PM
Subject: Re: [flexcoders] web  compiler


 
Jitendra,
 
You've never really explained why you need  this. Can you tell us?
 
Paul

 Connect with friends all over the world. Get  Yahoo! India Messenger.  


  Check out the all-new face of Yahoo! India. Go to http://in.yahoo.com/

[flexcoders] ItemRenderes are consuming more memory

2008-10-28 Thread jitendra jain
I read Alex Blog on Item Renderers. I understood what Alex needs to say. 
I have a tabBar in my application and a datagrid in the viewstack.
whenever anyone clicks on the tab ,my datagrid data changes.
I have 32 columns, with 5 columns having renderes. I have renderers for 
displaying backgroundcolor
I used Profiler and sees that everytime it adds more instances to the list and 
also memory consumption is rising.


 Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] web compiler

2008-10-25 Thread jitendra jain
Hey Guys, I solved the problem of web compiler

Simply i have to add my library source path in the flex-config files.


source-path
 path-elementuser_classes/path-element
  /source-path 


   Thanks,

with Regards,
Jitendra Jain







From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, 23 October, 2008 2:05:52 PM
Subject: Re: [flexcoders] web compiler


- Original Message - 
From: Michael  Schmalle 
To: [EMAIL PROTECTED] ups.com 
Sent: Friday, October 17, 2008 7:00  PM
Subject: Re: [flexcoders] web  compiler

Ok, 

I had this in my plans to investigate in a couple months for my  server.

So is there something that caches swf on the first run, then only  recompiles 
when the mxml has changed?

Where did I hear that? This is in my head from a year or two ago.
 
It was basically how Flex 1.5 worked.


Mike

 
snip


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] web compiler

2008-10-23 Thread jitendra jain
Iam using Flex 3 and I have configured webtier.war for my application . My 
application works fine if I use main.html or main.swf. But when I use main.mxml
it shows Type was not found or was not a compile time constant.

I have configure my build path to the file to which it was pointing. Please help

 Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Tab Navigator works slow when the tab is selected

2008-10-22 Thread jitendra jain
I have a AdvancedTabNavigator, in which i handle the IndexChangedEvent . I have 
some shared objects reading from the disk.. Whenever I click on the tabs it is 
very slow. Why?

 Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Refreshing Project

2008-10-21 Thread jitendra jain
Which IDE you are using... If you are using Flex Builder then try to delete 
bin-debug folder. 
It will help

 Thanks,

with Regards,
Jitendra Jain







From: Guilherme Blanco [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 10:56:40 AM
Subject: [flexcoders] Refreshing Project


Hi,

After more than 4h trying everything I know and researched until page
25 of Google results, I give up and decided to ask here.

I wrote a piece of code that was trying to do something like that:

AsyncToken(RemoteOb jectInstance. AsyncTokenMethod Name).send. apply(
RemoteObjectInstanc e, args );

This was crashing inside the send method when it was trying to get
remoteObject. concurrency; reporting my the remoteObject == null;

So I changed my code a bit to work around it and leave this call (send
+ unknown number of arguments) to the right place.
Compiled and... nothing. It was referencing to my previous code (the
one with send.apply).

So I started my attempts:

turned off build automatically

refresh + build
refresh + clean + build
clean + build
clean + refresh + build
refresh + build + build
clean + build + build
delete files from filesystem manually + clean + refresh + build + build

turned on build automatically

all previous attempts

I decided then to reboot my system and try again everything. Nothing.

It lasted my attempt to delete the project and import a new one.
I did it no success. Reboot? Ok...

Deleted project again, rebooted, imported again, compiled and... nothing.

Maybe a fresh checkout and merge of patch? Yeah... let's try it and... nothing.
Reboot again? Oh my God! Nothing!

Now I'm asking to you HOW CAN I GET THIS REFRESHED??! ?!??!?!

Regards,

-- 
Guilherme Blanco - Web Developer
CBC - Certified Bindows Consultant
Cell Phone: +55 (16) 9166-6902
MSN: guilhermeblanco@ hotmail.com
URL: http://blog. bisna.com
Rio de Janeiro - RJ/Brazil


Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] Refreshing Project

2008-10-21 Thread jitendra jain
May be your browser is using cache. Try to clean it also..

 Thanks,

with Regards,
Jitendra Jain







From: jitendra jain [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 11:37:48 AM
Subject: Re: [flexcoders] Refreshing Project


Which IDE you are using... If you are using Flex Builder then try to delete 
bin-debug folder. 
It will help

 Thanks,

with Regards,
Jitendra Jain







From: Guilherme Blanco guilhermeblanco@ gmail.com
To: [EMAIL PROTECTED] ups.com
Sent: Tuesday, 21 October, 2008 10:56:40 AM
Subject: [flexcoders] Refreshing Project


Hi,

After more than 4h trying everything I know and researched until page
25 of Google results, I give up and decided to ask here.

I wrote a piece of code that was trying to do something like that:

AsyncToken(RemoteOb jectInstance. AsyncTokenMethod Name).send. apply(
RemoteObjectInstanc e, args );

This was crashing inside the send method when it was trying to get
remoteObject. concurrency; reporting my the remoteObject == null;

So I changed my code a bit to work around it and leave this call (send
+ unknown number of arguments) to the right place.
Compiled and nothing. It was referencing to my previous code (the
one with send..apply) .

So I started my attempts:

turned off build automatically

refresh + build
refresh + clean + build
clean + build
clean + refresh + build
refresh + build + build
clean + build + build
delete files from filesystem manually + clean + refresh + build + build

turned on build automatically

all previous attempts

I decided then to reboot my system and try again everything. Nothing.

It lasted my attempt to delete the project and import a new one.
I did it no success. Reboot? Ok...

Deleted project again, rebooted, imported again, compiled and... nothing.

Maybe a fresh checkout and merge of patch? Yeah... let's try it and... nothing.
Reboot again? Oh my God!... Nothing!

Now I'm asking to you HOW CAN I GET THIS REFRESHED??! ?!??!?!

Regards,

-- 
Guilherme Blanco - Web Developer
CBC - Certified Bindows Consultant
Cell Phone: +55 (16) 9166-6902
MSN: guilhermeblanco@ hotmail.com
URL: http://blog. bisna.com
Rio de Janeiro - RJ/Brazil

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger. yahoo.com/ download. php 

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo..com/download.php

Re: [flexcoders] Re: Which style name control the color

2008-10-21 Thread jitendra jain
I'm damn sure iconColor will work

CheckBox {
   iconColor: #ff;
}

 Thanks,

with Regards,
Jitendra Jain







From: itdanny2002 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 8:42:03 AM
Subject: [flexcoders] Re: Which style name control the color


Thanks but I have tried, iconColor doesn't work
Radio-icon is ok but it is a graphic image.

--- In [EMAIL PROTECTED] ups.com, Michael Schmalle 
teoti.graphix@ ... wrote:

 Hi,
 It's the 'iconColor' style.
 
 These are available for the checkbox;
 
 borderColor, iconColor, fillAlphas, fillColors, highlightAlphas
 and themeColor.
 
 Mike
 
 
 
 On Sun, Oct 19, 2008 at 7:20 AM, itdanny2002 [EMAIL PROTECTED] .. wrote:
 
Which style name control the color
  of bullet / checkmark in menu control ?
 
  
 
 
 
 
 -- 
 Teoti Graphix, LLC
 http://www.teotigra phix.com
 
 Teoti Graphix Blog
 http://www.blog. teotigraphix. com
 
 You can find more by solving the problem then by 'asking the 
question'.




Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] Re: Increase in swf size when upgraded to FlexSDK3

2008-10-21 Thread jitendra jain
Shailesh, Read this 
linkhttp://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:Flex_3_RSLs

 Thanks,

with Regards,
Jitendra Jain







From: Shailesh Mangal [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 7:42:42 AM
Subject: [flexcoders] Re: Increase in swf size when upgraded to FlexSDK3


No, and we have tried both command line as well FlexBuilder compiles. Same 
result :(

-Shailesh

--- In [EMAIL PROTECTED] ups.com, Ryan Gravener [EMAIL PROTECTED] wrote:

 are you compiling with debug enabled?
 
 Ryan Gravener
 http://twitter. com/ryangravener
 
 
 On Mon, Oct 20, 2008 at 7:40 PM, Shailesh Mangal
 shailesh.mangal@ ...wrote:
 
We recently moved from Flex 2.0.1/LCDS 2.5.1 to Flex3.1.0/LCDS2. 6 and
  noticed that by
  doing that our swf went from 1.3MB to 1.9MB. This is 50% increase in size.
 
  Is this typical with Flex 3?
 
  -Shailesh
 
  
 




Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] Re: Repeater control and custom Component

2008-10-21 Thread jitendra jain
Can u paste some code what are you trying to do. Do this favour.. I want to 
work on it Please... I have used Repeater 
component and its the best to use..

 

Thanks,

with Regards,
Jitendra Jain






From: lysfael [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 12:15:07 PM
Subject: [flexcoders] Re: Repeater control and custom Component


Hello all,

Finally i decided to do the components myself.
It's easier for me like that than using the repeater.

Finally the repeater isn't that powerful component as i though. When
you wanna do something very generic it doesn't fit to your application
anymore.

Thanks all for the help.

I know this conversation will help me later in another project.

--- In [EMAIL PROTECTED] ups.com, Tracy Spratt [EMAIL PROTECTED]  wrote:

 If that is really what you want to do, it will work.  But still, why not
 let the repeated component handle the formatting?
 
 
 
 Do not subclass repeater, use it normally. 
 
 
 
 Create a component containing your label and text inputs.
 
 
 
 Pass the currentItem into your custom component via a setter and in the
 setter invoke the formatting.
 
 
 
 Tracy
 
 
 
  _ _ __
 
 From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On
 Behalf Of Ralf Bokelberg
 Sent: Monday, October 20, 2008 8:00 AM
 To: [EMAIL PROTECTED] ups.com
 Subject: Re: [flexcoders] Re: Repeater control and custom Component
 
 
 
 I see. Have you tried a binding function to do this?
 
 mx:Repeater dataProvider= { formatData( datas as XML )} ..
 
 You need to write a method formatData( x : XML ) : XML which creates a
 new formatted XML from the input xml.
 
 Ralf.
 
 On Mon, Oct 20, 2008 at 1:52 PM, lysfael [EMAIL PROTECTED] .
 mailto:schwazel% 40gmail.com  wrote:
  I wanna format the datas receive before passing them to dataProvider
  of the repeater.
 
  --- In [EMAIL PROTECTED] ups.com
 mailto:flexcoders% 40yahoogroups. com , Ralf Bokelberg
 
  ralf.bokelberg@  wrote:
 
  I'm not sure if you can subclass mx:Repeater. What are you trying to
  do with your repeater subclass?
 
  Ralf.
 
  On Mon, Oct 20, 2008 at 12:16 PM, lysfael schwazel@ wrote:
   Re,
  
   I made a component based on the repeater, to have the control on
 the
   datas.
  
   and i use it like i should use a repeater.
  
   i have an error on the compil.
  
   Symbol
   '_com_probtp_ IG_ContactsModul e_components_ F0010WatcherSetu pUtil' is
   multiply defined in
   _com_probtp_ IG_ContactsModul e_components_ F0010WatcherSetu pUtil.as
   and
  
 
 C:\Code\CC_Views\ PB19664_IG_ ClientLeger- project_Dev1_ View1\vob0003- vob\I
 G_ClientLeger- project-componen t\IG_ModuleCore\ libs\IG_Contacts Components
 ..swc(_com_probtp_ IG_ContactsModul e_components_ F0010WatcherSetu pUtil).
   IG_ModuleCore
  
   i use the component like this
  
   comp:Prep id=F0010_T0056 specialDatas= {datas as XML}
   mx:Button id=F0010_B0031 width=100% /
   /comp:Prep
  
   where the setter specialDatas format the datas and set
   this.dataProvider with the correct datas.
  
   --- In [EMAIL PROTECTED] ups.com
 mailto:flexcoders% 40yahoogroups. com , lysfael schwazel@ wrote:
  
   Hello,
  
   Sorry for the absence,
  
   These datas are an example of the datas that i get from my
  HttpService.
  
   lg ID=F0010_T0056- 0
   c ID=F0010_48- 0OUV/c
   c ID=F0010_49- 0/c
   c ID=F0010_50- 05 /c
   /lg
   lg ID=F0010_T0056- 1
   c ID=F0010_48- 1ETA/c
   c ID=F0010_49- 1/c
   c ID=F0010_50- 15 /c
   /lg
  
   These datas should match the repeater F0010_T0056 which contains
 the
   following components :
   TextInput Id = F0010_48
   Label Id = F0010_49
   TextInput Id = F0010_50.
  
   In the other post Tom Chiverton told me this
  
   You could use a setter method (i.e. public function set
   myDatas(d:*) :void{}). If you need more control over what happens,
  or a
   changeWatcher inside the component observing the public bindable.
  
   Like you said i think i'm making it harder than what it needs to
 be.
   I'll think a bit for a much more simple solution and keep you
 posted.
   I think to do something like Tom said.
  
  
  
  
   --- In [EMAIL PROTECTED] ups.com
 mailto:flexcoders% 40yahoogroups. com , Tracy Spratt tspratt@ wrote:
   
Yes, I still think Lysfael may be approaching this incorrectly,
   probably
making it harder than it needs to be. There is rarely a good
   reason to
use the document model hierarchy to manipulate data driven
  components.
   
   
   
Lysfael, can you explain again what you are trying to do?
   
   
   
What data is the dataProvider for the repeater?
   
   
   
Is that data different from the data you are trying to show in
 the
repeated controls?
   
   
   
Tracy
   
   
   
 _ _ __
   
From: [EMAIL PROTECTED] ups.com
 mailto:flexcoders% 40yahoogroups. com 
   [mailto:[EMAIL PROTECTED] ups.com
 mailto:flexcoders

Re: [flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to a row selection?

2008-10-21 Thread jitendra jain
Use this method and put the stuff inside this function. Here the Object is a row

override public function set data(value :Object){
super.data = value;
//  your code
// your code
}

 Thanks,

with Regards,
Jitendra Jain







From: Tim Hoff [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 7:10:02 AM
Subject: [flexcoders] Re: How can I make an ItemRenderer on a Datagrid react to 
a row selection?



Shoot, don't even worry about the rowIndex, just attach the data object
to the event.

-TH

--- In [EMAIL PROTECTED] ups.com, Tim Hoff [EMAIL PROTECTED]  wrote:


 Yeah, you would be hosed if a different type of list was used. If
 you're using CHANGE, which is generic for list base, have the parent
 class dispatch a custom event, on change, with the row index. The
 parent class will always know what kind of list is being used. Then in
 the itemRenderer listen for the custom event and compare the rowIndex
to
 listData.rowIndex. This is so much easier to handle through the data,
 but some don't care for the decorator pattern.

 -TH

 --- In [EMAIL PROTECTED] ups.com, João joao.saleiro@ wrote:
 
  I solved it by implementing the IDropInListItemRend erer and
listening
 to
 
  DataGrid(listData. owner).addEventL istener(ListEven t.CHANGE,
  listChangeHandler)
 
  It's not a best practice, but for now it's enough.
 
  JS
 
  --- In [EMAIL PROTECTED] ups.com, Jo�o joao.saleiro@ wrote:
  
   Hi,
  
   I have a Datagrid with several rows and columns. I am using
   ItemRenderers on the cells. I need that a specific ItemRenderer
   changes the way it looks when the row where he's in is selected.
How
   can I achieve that?
   Is it possible to make the itemrenderer know that and react in
real
   time? Or is it preferable to extend the DataGrid?
  
   Thanks,
  
   João Saleiro
  
 




Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] Re: Refreshing Project

2008-10-21 Thread jitendra jain
I noted this issue manytimes while I'm running debugger. Look like it uses 
cache once debugging is enabled. Your problem got solved or not??
 Thanks,

with Regards,
Jitendra Jain






From: fotis.chatzinikos [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 1:53:00 PM
Subject: [flexcoders] Re: Refreshing Project


I always have a string somewhere visible that says version 0.9.7.a,
then b, c etc IE nearly always caches, and firefox 3 is even worse
:-) It never caches until it decides to do so 3 in the morning when
you have forgot everything about caching and starting beating yourself
on the head debugong something that is not there any more...

--- In [EMAIL PROTECTED] ups.com, jitendra jain
jitendra_jain_ [EMAIL PROTECTED] wrote:

 May be your browser is using cache. Try to clean it also..
 
 Thanks,
 
 with Regards,
 Jitendra Jain
 
 
 
 
 
 
  _ _ __
 From: jitendra jain jitendra_jain_ [EMAIL PROTECTED]
 To: [EMAIL PROTECTED] ups.com
 Sent: Tuesday, 21 October, 2008 11:37:48 AM
 Subject: Re: [flexcoders] Refreshing Project
 
 
 Which IDE you are using... If you are using Flex Builder then try to
delete bin-debug folder. 
 It will help
 
 Thanks,
 
 with Regards,
 Jitendra Jain
 
 
 
 
 
 
  _ _ __
 From: Guilherme Blanco guilhermeblanco@ gmail.com
 To: [EMAIL PROTECTED] ups.com
 Sent: Tuesday, 21 October, 2008 10:56:40 AM
 Subject: [flexcoders] Refreshing Project
 
 
 Hi,
 
 After more than 4h trying everything I know and researched until page
 25 of Google results, I give up and decided to ask here.
 
 I wrote a piece of code that was trying to do something like that:
 
 AsyncToken(RemoteOb jectInstance. AsyncTokenMethod Name).send. apply(
 RemoteObjectInstanc e, args );
 
 This was crashing inside the send method when it was trying to get
 remoteObject. concurrency; reporting my the remoteObject == null;
 
 So I changed my code a bit to work around it and leave this call (send
 + unknown number of arguments) to the right place.
 Compiled and nothing. It was referencing to my previous code (the
 one with send..apply) .
 
 So I started my attempts:
 
 turned off build automatically
 
 refresh + build
 refresh + clean + build
 clean + build
 clean + refresh + build
 refresh + build + build
 clean + build + build
 delete files from filesystem manually + clean + refresh + build + build
 
 turned on build automatically
 
 all previous attempts
 
 I decided then to reboot my system and try again everything. Nothing.
 
 It lasted my attempt to delete the project and import a new one.
 I did it no success. Reboot? Ok
 
 Deleted project again, rebooted, imported again, compiled and
nothing.
 
 Maybe a fresh checkout and merge of patch? Yeah... let's try it
and... nothing.
 Reboot again? Oh my God!... Nothing!
 
 Now I'm asking to you HOW CAN I GET THIS REFRESHED??! ?!??!?!
 
 Regards,
 
 -- 
 Guilherme Blanco - Web Developer
 CBC - Certified Bindows Consultant
 Cell Phone: +55 (16) 9166-6902
 MSN: guilhermeblanco@ hotmail.com
 URL: http://blog. bisna.com
 Rio de Janeiro - RJ/Brazil
 
 Send free SMS to your Friends on Mobile from your Yahoo! Messenger.
Download Now! http://messenger. yahoo.com/ download. php 
 
 Send free SMS to your Friends on Mobile from your Yahoo! Messenger.
Download Now! http://messenger. yahoo..com/ download. php


 

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] drag drop invokes click handler of dragged compoent

2008-10-21 Thread jitendra jain
I don't understand your question. How can you start dragging without clicking?
Please make it very clear what you want... If possible give an example..
 Thanks,

with Regards,
Jitendra Jain



From: prashant194 [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 21 October, 2008 1:57:53 PM
Subject: [flexcoders] drag drop invokes click handler of dragged compoent


Is there any way i can strop the click handler of the dragged
component being fired when the component is dragged and dropped over
other region?

I want the click handler to work only on non drag operation i.e. when
the component is clicked only and i want to stop click handler from
fired when dragged and dropped.

 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Compile error with flex sdk 3.1

2008-10-20 Thread jitendra jain
Your flex build path is not pointing to Flex SDK3.1.0. Replace it if not...

 Thanks,

with Regards,
Jitendra Jain







From: Pankaj Arora [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 18 October, 2008 10:28:05 AM
Subject: [flexcoders] Compile error with flex sdk 3.1


Hi,
I just upgraded to Flex SDK 3.1.0 and it
gives me error :
 
] Error: Unable to resolve resource bundle
datamanagement for locale en_US.
 
 
It is coming when I use mx.controls. AdvancedDataGrid .
 
Any ideas on how this can be resolved. This
was working fine with Flex SDK 3.0
 
Also in the 3.1 SDK release I don’t
see datavisualization. swc file needed for compiling advancedDataGrid. Any ideas
where I can download the swc file.
 
 
Thanks,
Pankaj Arora
 

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread jitendra jain
Where is the Timer control ? Which TimerEvent you are listening to ..

 Thanks,

with Regards,
Jitendra Jain







From: Sébastien Tromp [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 18 October, 2008 3:48:39 PM
Subject: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer


Hello,

I am stuck with an issue whose solution I cannot find on the Internet.

I have an application with a DataGrid:

mx:DataGrid id=currentConstruc tions
mx:columns
mx:DataGridColumn dataField=building Type/
mx:DataGridColumn dataField=endDate id=remainingTime 
itemRenderer= org.feilun. renderer. CountDownRendere r /
/mx:columns
/mx:DataGrid

where CountDownRenderer is a custom ItemRenderer that can dispatch a 
TimerEvent.TIMER_ COMPLETE event.

I would like to listen in my main application (where the DataGrid is 
defined) to this TIMER_COMPLETE event, but I have not managed to do it.

I have tried things like:
currentConstruction s.addEventListen er(TimerEvent. TIMER_COMPLETE, 
handleTimerComplete );
or
remainingTime. addEventListener (TimerEvent. TIMER_COMPLETE, 
handleTimerComplete );

but in neither case is the event caught.

Do you have any idea on how this could be achieved?

Thanks a lot,
Sébastien



Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

[flexcoders] web compiler

2008-10-17 Thread jitendra jain
Hi coders,

My application compiles well and run if i use the generated main.swf or 
main.html.
But when i run the application with main.mxml in the browser, it throws
Type was not found or a comile-time error... 

Thanks,

with Regards,
Jitendra Jain

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] web compiler

2008-10-17 Thread jitendra jain
Paul, its Flex 3.

 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, 17 October, 2008 1:21:03 PM
Subject: Re: [flexcoders] web compiler


 
Jitendra, what version 
of Flex is this? Flex 2  or 3 doesn't compile .mxml files 'on the fly' from 
a browser.
 
If you are using Flex 
2 or 3, why are ou trying to 'run' .mxml files in a browser?
 
Paul
- Original Message - 
From: jitendra jain 
To: flex group flex 
Sent: Friday, October 17, 2008 8:23  AM
Subject: [flexcoders] web compiler

Hi  coders,

My application compiles well and run if i use the generated  main.swf or 
main.html.
But when i run the application with main.mxml in the  browser, it throws
Type was not found or a comile-time error... 

Thanks,

with  Regards,
Jitendra  Jain

 

Send free SMS to your Friends on Mobile from your  Yahoo! Messenger. Download 
Now! http://messenger. yahoo.com/ download. php  

Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php

Re: [flexcoders] web compiler

2008-10-17 Thread jitendra jain
I want to do some load testing and that's why iam using .mxml files. Its Flex 
3.1

 Thanks,

with Regards,
Jitendra Jain





- Original Message 
From: Paul Andrews [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, 17 October, 2008 1:21:03 PM
Subject: Re: [flexcoders] web compiler


 
Jitendra, what version 
of Flex is this? Flex 2  or 3 doesn't compile .mxml files 'on the fly' from 
a browser.
 
If you are using Flex 
2 or 3, why are ou trying to 'run' .mxml files in a browser?
 
Paul
- Original Message - 
From: jitendra jain 
To: flex group flex 
Sent: Friday, October 17, 2008 8:23  AM
Subject: [flexcoders] web compiler

Hi  coders,

My application compiles well and run if i use the generated  main.swf or 
main.html.
But when i run the application with main.mxml in the  browser, it throws
Type was not found or a comile-time error... 

Thanks,

with  Regards,
Jitendra  Jain

 

Send free SMS to your Friends on Mobile from your  Yahoo! Messenger. Download 
Now! http://messenger. yahoo.com/ download. php  


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Thanks Mike,

For your reply. Oh Great. Let him spend some time. Only Alex can give you 
answers.. But he is vey helpful and supportive. I think he is the one of the 
revolutionary guy in the Adobe team.

Even I tried for days to get answers and I struck my head with the walls often. 
But finally Alex's answers rescued me manytimes.

I want him to be here in his group as soon as possible to rescue many others 
.. :))

 Thanks,

with Regards,
Jitendra Jain





- Original Message 
From: Michael Schmalle [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 14 October, 2008 4:29:45 PM
Subject: Re: [flexcoders] Where is Alex Ahauri??


Hi,

He was on vacation for over a month.

If I was him, after that long of vacation not doing anything job related, I 
would be enjoying programming in flex again. I bet that is what he is doing... 
enjoying his work again. :)

I'm sure you will see him around. Personally, I can't see how he can answer so 
much when he still has his framework engineering to do.

Mike


On Tue, Oct 14, 2008 at 6:46 AM, jitendra jain jitendra_jain_ [EMAIL 
PROTECTED] com wrote:

Hi Alex,

So many days we have not witnessed any messages from you... Where are you??

 Thanks,

with Regards,
Jitendra Jain




 Add more friends to your messenger and enjoy! Invite them now. 


-- 
Teoti Graphix, LLC
http://www.teotigra phix.com

Teoti Graphix Blog
http://www.blog. teotigraphix. com

You can find more by solving the problem then by 'asking the question'.



  Share files, take polls, and make new friends - all under one roof. Go to 
http://in.promos.yahoo.com/groups/

[flexcoders] Where is Alex Ahauri??

2008-10-14 Thread jitendra jain
Hi Alex,

So many days we have not witnessed any messages from you... Where are you??

 Thanks,

with Regards,
Jitendra Jain


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-13 Thread jitendra jain
Yes you are right.. It is a static method and returns the Session for the 
current request. so you can use getId method of this class.

Moreover if you think of calling the remote methods from other GUI is not 
possible because they are in .class files.

However flex sends the remote method as a string (AMF)to the servlet(I guess) 
and Servlet converts those into the actual calls. 

 
This link will help you how the message is converted:

http://livedocs.adobe.com/flex/201/fds2javadoc/flex/messaging/io/amf/ActionMessageInput.html

Thanks,

with Regards,
Jitendra Jain





- Original Message 
From: Abdul Razak PM [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, 13 October, 2008 1:06:07 PM
Subject: [flexcoders] Re: How to make an RPC call secure


Hi jitendra, 
Thank you for your reply, I'm doing form-based login and different
role creation. My doubt is even if I didn't give role ,  The User who
knows my remote methods can call these methods from his client(suppose
he created a new GUI with my remote methods). How can I block it?,
https also giving secure transmission not blocking to access remote
method.

I think more knowledge in session Id could get a solution , because
if it is a Struts-J2EE transcation J2EE will check session Id. 
FlexContext. getFlexSession( ) is a Static method na? , How It can
give sessionId for each user? These are my doubts.

Regards, 
Razak

--- In [EMAIL PROTECTED] ups.com, jitendra jain
jitendra_jain_ [EMAIL PROTECTED] wrote:

 1) If you see services-config. xml , following tag
 
  channel-definition id=my-secure- amf
class=mx.messaging .channels. SecureAMFChannel 
 endpoint
url=https:/ /{server. name}:{server. port}/{context. root}/messagebro 
ker/amfsecure
class=flex. messaging. endpoints. SecureAMFEndpoin t/
 properties
 !--HTTPS requests on some browsers do not work when
pragma no-cache are set--
 add-no-cache- headersfalse /add-no-cache- headers
 /properties
 /channel-definitio n
 
 
  Here the endpoints are secure as they are sent via https protocol.
But if the user (client's browser ) no-cache is set, it fails.
 
 2) Try to create different roles(Security- roles),. For this u need
to read some J2EE stuff.
 
 3)Form-Based Authentication is least secured.
 
 So we can say that upto some extent we can secure our application.
But we can't challenge. 
 Thanks,
 
 with Regards,
 Jitendra Jain
 
 
 
 
 
 - Original Message 
 From: Abdul Razak PM [EMAIL PROTECTED] .
 To: [EMAIL PROTECTED] ups.com
 Sent: Saturday, 11 October, 2008 3:04:54 PM
 Subject: [flexcoders] Re: How to make an RPC call secure
 
 
 
 HI Jitendra, 
 Thanks for your kind reply, 
 Let me to explain my question in detail .
 suppose I have a small banking application 
 a)I want ensure user's login
 b) user can request a loan
 c) admin can approve loan
 d) admin can enter payment details etc...
 For this I have provided a flex GUI to login , modules to enter loan
 request details , approve details, payment details etc..
 I gave the following remote calls and implemented with J2ee
 createLoanRequest
 searchLoanDetls
 approveLoanDetails
 changeLoanStatus
 insertLoanInstallme ntDetls
 Also I gave appropriate menus for user and admin depends on their
 privilege.
 My doubt is like this
 i)  Suppose admin logged in the application and doing some
 transaction. at the same time some hacker (who understands my remote
 methods ) calling some remote methods. trying to change some methods.
 It is from a different machine. is it happen...? , commonly J2EE uses
 session Id to handle this case, In this case may I need to use
 Session(Thanks Jitendra for ur session help).
 ii) Have any common method to use a validator for each method call.?
 iii) If I'm wrong pls help me with the theoretical reason.
 
 Regards,
 Razak
 
 
 --- In [EMAIL PROTECTED] ups.com, jitendra jain
 jitendra_jain_ 2007@ wrote:
 
  If your question is when flex calls a java class and within the
 java class how 
  do I access the associated session, then the code is below and it
 is in the 
  documentation. The FlexSession class is located in the
 flex-messaging. jar.
  
  FlexSession session = FlexContext. getFlexSession( );
  
  But whats the real question behind your question? what do you want
 to load?
  
  If you want to secure your calls then try to read J2EE Specs
  Â Thanks,
  
  with Regards,
  Jitendra Jain
  
  
  
  
  - Original Message 
  From: Abdul Razak PM it-razak@ .
  To: [EMAIL PROTECTED] ups.com
  Sent: Saturday, 11 October, 2008 9:34:29 AM
  Subject: [flexcoders] Re: How to make an RPC call secure
  
  
  Hi All, 
  I'm a newbie in flex, My searches and adobe gives a of links but I
  need to get specified in my topic..
  Those who are in handling security please give me an answer
  (theoretical) whether a flex GUI with J2EE as server and using
  remoting (rpc)for server call,
  a) In J2EE project we will use session Id

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-12 Thread jitendra jain
1) If you see services-config.xml , following tag

 channel-definition id=my-secure-amf 
class=mx.messaging.channels.SecureAMFChannel
endpoint 
url=https://{server.name}:{server.port}/{context.root}/messagebroker/amfsecure;
 class=flex.messaging.endpoints.SecureAMFEndpoint/
properties
!--HTTPS requests on some browsers do not work when pragma 
no-cache are set--
add-no-cache-headersfalse/add-no-cache-headers
/properties
/channel-definition


 Here the endpoints are secure as they are sent via https protocol. But if the 
user (client's browser ) no-cache is set, it fails.

2) Try to create different roles(Security-roles),. For this u need to read some 
J2EE stuff.

3)Form-Based Authentication is least secured.

So we can say that upto some extent we can secure our application. But we can't 
challenge. 
Thanks,

with Regards,
Jitendra Jain





- Original Message 
From: Abdul Razak PM [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 3:04:54 PM
Subject: [flexcoders] Re: How to make an RPC call secure



HI Jitendra, 
Thanks for your kind reply, 
Let me to explain my question in detail .
suppose I have a small banking application 
a)I want ensure user's login
b) user can request a loan
c) admin can approve loan
d) admin can enter payment details etc...
For this I have provided a flex GUI to login , modules to enter loan
request details , approve details, payment details etc..
I gave the following remote calls and implemented with J2ee
createLoanRequest
searchLoanDetls
approveLoanDetails
changeLoanStatus
insertLoanInstallme ntDetls
Also I gave appropriate menus for user and admin depends on their
privilege.
My doubt is like this
i)  Suppose admin logged in the application and doing some
transaction. at the same time some hacker (who understands my remote
methods ) calling some remote methods. trying to change some methods.
It is from a different machine. is it happen...? , commonly J2EE uses
session Id to handle this case, In this case may I need to use
Session(Thanks Jitendra for ur session help).
ii) Have any common method to use a validator for each method call.?
iii) If I'm wrong pls help me with the theoretical reason.

Regards,
Razak


--- In [EMAIL PROTECTED] ups.com, jitendra jain
jitendra_jain_ [EMAIL PROTECTED] wrote:

 If your question is when flex calls a java class and within the
java class how 
 do I access the associated session, then the code is below and it
is in the 
 documentation. The FlexSession class is located in the
flex-messaging. jar.
 
 FlexSession session = FlexContext. getFlexSession( );
 
 But whats the real question behind your question? what do you want
to load?
 
 If you want to secure your calls then try to read J2EE Specs
 Â Thanks,
 
 with Regards,
 Jitendra Jain
 
 
 
 
 - Original Message 
 From: Abdul Razak PM [EMAIL PROTECTED] .
 To: [EMAIL PROTECTED] ups.com
 Sent: Saturday, 11 October, 2008 9:34:29 AM
 Subject: [flexcoders] Re: How to make an RPC call secure
 
 
 Hi All, 
 I'm a newbie in flex, My searches and adobe gives a of links but I
 need to get specified in my topic..
 Those who are in handling security please give me an answer
 (theoretical) whether a flex GUI with J2EE as server and using
 remoting (rpc)for server call,
 a) In J2EE project we will use session Id to ensure call comes from
 the same user.is it necessary in flex client also? if so how we can
 achieve session Id in client, some example also.
 b) I have a login module in my application, may I need to
 authenticate each of my remote call from flex.
 
 Tom please don't loose my chance to get answer from others who could
 kindly answer to me , even it's blonder... all are not genious like but
 everybody uses google and adobe docs first..
 
 Regards,
 Razak
 
 --- In [EMAIL PROTECTED] ups.com, Tom Chiverton tom.chiverton@ ...
 wrote:
 
  On Thursday 09 Oct 2008, Abdul Razak PM wrote:
   Please provide some links to study more about it.
  
  Is Google and Adobe's docs site broken ?
  
   Also What's the 
   possibility of Hacking our code if we didn't make it secure?
  
  Threat assessment is a whole skill into itself, you'd have to
 explain a lot 
  more about what your service is, who is likely to attack it and with
 what 
  resources.
  
   It's very helpful to get it's theoretical explanations too.
  
  Schneier's blog and /Beyond Fear/ book are good.
  
  -- 
  Tom Chiverton
  Helping to quickly leverage third-generation e-commerce
  
  
  
   * * * * 
  
  This email is sent for and on behalf of Halliwells LLP.
  
  Halliwells LLP is a limited liability partnership registered in
 England and Wales under registered number OC307980 whose registered
 office address is at Halliwells LLP, 3 Hardman Square, Spinningfields,
 Manchester, M3 3EB. A list of members is available for inspection at
 the registered office. Any reference

Re: [flexcoders] Re: How to make an RPC call secure

2008-10-10 Thread jitendra jain
If your question is when flex calls a java class and within the java class how 
do I access the associated session, then the code is below and it is in the 
documentation. The FlexSession class is located in the flex-messaging.jar.
 
FlexSession session = FlexContext.getFlexSession();
 
But whats the real question behind your question? what do you want to load?

If you want to secure your calls then try to read J2EE Specs
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Abdul Razak PM [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 9:34:29 AM
Subject: [flexcoders] Re: How to make an RPC call secure


Hi All, 
I'm a newbie in flex, My searches and adobe gives a of links but I
need to get specified in my topic.
Those who are in handling security please give me an answer
(theoretical) whether a flex GUI with J2EE as server and using
remoting (rpc)for server call,
a) In J2EE project we will use session Id to ensure call comes from
the same user.is it necessary in flex client also? if so how we can
achieve session Id in client, some example also.
b) I have a login module in my application, may I need to
authenticate each of my remote call from flex.

Tom please don't loose my chance to get answer from others who could
kindly answer to me , even it's blonder.. all are not genious like but
everybody uses google and adobe docs first..

Regards,
Razak

--- In [EMAIL PROTECTED] ups.com, Tom Chiverton tom.chiverton@ ...
wrote:

 On Thursday 09 Oct 2008, Abdul Razak PM wrote:
  Please provide some links to study more about it.
 
 Is Google and Adobe's docs site broken ?
 
  Also What's the 
  possibility of Hacking our code if we didn't make it secure?
 
 Threat assessment is a whole skill into itself, you'd have to
explain a lot 
 more about what your service is, who is likely to attack it and with
what 
 resources.
 
  It's very helpful to get it's theoretical explanations too.
 
 Schneier's blog and /Beyond Fear/ book are good.
 
 -- 
 Tom Chiverton
 Helping to quickly leverage third-generation e-commerce
 
 
 
  * * * * 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in
England and Wales under registered number OC307980 whose registered
office address is at Halliwells LLP, 3 Hardman Square, Spinningfields,
Manchester, M3 3EB. A list of members is available for inspection at
the registered office. Any reference to a partner in relation to
Halliwells LLP means a member of Halliwells LLP. Regulated by The
Solicitors Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above
and may be confidential or legally privileged. If you are not the
addressee you must not read it and must not use any information
contained in nor copy it nor inform any person other than Halliwells
LLP or the addressee of its existence or contents. If you have
received this email in error please delete it and notify Halliwells
LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells. com.


 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo..com/invite/

Re: [flexcoders] Components and displaying into a new target

2008-10-10 Thread jitendra jain
Application.application will do the trick..
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Scott [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 10:25:53 AM
Subject: [flexcoders] Components and displaying into a new target


I’ve got an issue that I can’t figure a way around.
 
My main.mxml has a canvas for the main display..  Within that canvas I have 
many different components.  One of which is an accordion control that contains 
several different components.  One of those components I have is a text window 
with a couple of buttons.  When I click a button within that accordion control 
I want it to open a new window on the main.mxml canvas.  Can I do that without 
using a custom event?
 
I tried to figure out if I could use the target=”” on the addChild line but I 
can’t figure out how to reference the canvas in the main.mxml.
 
TIA.
  Scott 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Remote calls are not happening using blazeDS in secured environment

2008-10-10 Thread jitendra jain
Hi Venkat,

  I'm not sure but I think you need to dig out web.xml for https..

  Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: venkateswarlu naidu [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 6:13:36 AM
Subject: Re: [flexcoders] Remote calls are not happening using blazeDS in 
secured environment


Yes Ryan, but its not tomcat, it is weblogic.

Its a secured+clustered environment , dont know how to handle this ..is there 
any setting/configurati on to do for clustering environment.

Please see the below email trail for more details.

Thansk for your time,

Regards,
Venkat. 



- Original Message 
From: Ryan Gravener [EMAIL PROTECTED] com
To: [EMAIL PROTECTED] ups.com
Sent: Friday, 10 October, 2008 12:55:16 AM
Subject: Re: [flexcoders] Remote calls are not happening using blazeDS in 
secured environment


Is your apache http server redirecting to http from https?  

Ryan Gravener
http://twitter. com/ryangravener



On Thu, Oct 9, 2008 at 11:23 PM, venkateswarlu naidu contactvenku@ yahoo.co. 
in wrote:

Here is the exact error message that i am seeing in the server console
secure endpoint /messageborker/ secureamf must be contacted via secure protocol

Please help me on this.

Thanks  Regards,
Venkat. 



- Original Message 
From: venkateswarlu naidu contactvenku@ yahoo.co. in
To: [EMAIL PROTECTED] ups.com

Sent: Thursday, 9 October, 2008 9:33:56 PM
Subject: [flexcoders] Remote calls are not happening using blazeDS in secured 
environment


Hi All,

Even after adding my-secure-amf channel to remote-config. xml, our flex 
application coludn,t make remote calls.
I am seeing a failover to HTTP from a HTTPS request in the http url log, dont 
know why it is failing over to 
HTTP://context/messagebroker/ amf from HTTPS://context/messagebroker/ 
secureamf in a secured environment.

Actually this failover is not happening in DEV (in which we have both HTTP and 
HTTPS enabled).

The problem is specific to QA env (weblogic+clustered +secured) , i dont have 
any clues.

Can any body help me on this?

Thanks  Regards,
Venkat. 



- Original Message 
From: venkateswarlu naidu contactvenku@ yahoo.co. in

To: [EMAIL PROTECTED] ups.com
Sent: Wednesday, 8 October, 2008 10:41:13 PM
Subject: [flexcoders] could not establish connection to java data service from 
flex client using blazeDS


Hi All,

We have a flex+blazeDS+ Java based application, after deploying the application 
in QA env, java data service calls are not happening. When i see the URL log in 
HTTP sniffer tool, the request is getting stopped at URL context-root 
/messagebroker/ amf and finally seeing 502 (CANNOT_CONNECT) status.

The same application is working fine in DEV environment.

Our QA environment: secured, HTTPS, running behind firewalls and clustered.

Why the flex client can not connect to the java data services?

Any help is greatly appreciated.

Thanks  Regards,
Venkat.

Add more friends to your messenger and enjoy! Go to http://messenger. 
yahoo.com/ invite/



Add more friends to your messenger and enjoy! Invite them now. 

Be the first one to try the new Messenger 9 Beta! Click here. 


Connect with friends all over the world. Get Yahoo! India Messenger.  


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Java-like equals() method?

2008-10-10 Thread jitendra jain
In this case you need to use Bindable

BindingUtils.bindProperty(myUser,assignedToUser,combBox,selectedItem); if 
you want to reflect the changes from myUser.assignedToUser to 
CombBox.selectedItem..
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: frank_sommers [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 8:24:18 AM
Subject: [flexcoders] Java-like equals() method?


Hi, 

I've been searching for a good solution to implementing object equality. I'm 
familiar with 
ObjectUtil, etc., but it still makes things harder than they should be. 

It may be best to illustrate this with an example. Suppose I have a ComboBox 
with an 
ArrayCollection as a data provider. The ArrayCollection is populated with value 
objects 
from the server, e.g., User objects. Suppose that I have a Task class, and a 
Task may 
have an assignedToUser property, which is a User instance. When the someone 
selects a 
Task (say, in a master-detail view), I would like the ComboBox to set its 
selectedItem to 
the user for the given Task, i.e., combBox.selectedIte m = myUser.assignedToUs 
er.

The problem is that no Task in the ComboBox's data provider and the User's 
assignedToUser property are ever equal using the == or === operators. 

So I would like to implement a custom equality for User, and have the ComboBox 
use that 
to set its selectedItem to the specified user. In Java, this is easily done by 
overriding the 
equals() and hashCode() methods of User. 

Any suggestions on how to achieve something similar in Flex would be much 
appreciated.

Thanks, 

-- Frank 

 


  Connect with friends all over the world. Get Yahoo! India Messenger at 
http://in.messenger.yahoo.com/?wm=n/

Re: {Disarmed} Re: [flexcoders] Components and displaying into a new target

2008-10-10 Thread jitendra jain
I thought you want to add dynamically to the Accordion control.
and it can be done like this application.accordionName.
Anyways Great...
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Scott [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, 11 October, 2008 11:18:50 AM
Subject: RE: {Disarmed} Re: [flexcoders] Components and displaying into a new 
target


Oh cool. Thanks!
 
However, that didn’t work…  I realized that the addChild I wanted to reference 
was not the correct component to work with.  The addState within that component 
opens up the dialog box.  Here’s the code:
 
?xml version=1.0 encoding=utf-8?
mx:Canvasxmlns:mx=http://www.adobe. com/2006/ mxml width=400 height=300 
label=AddContact  
mx:TitleWindowy=0 width=400 height=300 title=Add a new Contact Source 
showCloseButton=true fontSize=12 layout=absolute 
 
 
    mx:TextAreawordWrap=true editable=false width=348 
height=71 fontWeight=bold fontSize=12 
      mx:text![CDATA[Enter the name and email 
address.]]/mx:text
    /mx:TextArea
    mx:Labelx=34 y=110 text=Name width=59 fontSize=12/
    mx:TextInputx=120 y=108 id=txtName fontSize=12 width=228 
/
    mx:Labelx=34 y=168 text=Address fontSize=12/
    mx:TextInputx=120 y=166 id=txtAddress fontSize=12 
width=228/
    mx:Buttonx=120 y=209 label=Add/
    
 
  
/mx:TitleWindow
/mx:Canvas
 
How do I open this into the parent of the parent canvas?  I can’t see any place 
where the objects could use target=””.
 
Thanks!
 



From:[EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of jitendra jain
Sent: Friday, October 10, 2008 11:39 PM
To: [EMAIL PROTECTED] ups.com
Subject: {Disarmed} Re: [flexcoders] Components and displaying into a new target
 
Application. application will do the trick..
 
Thanks,

with Regards,
Jitendra Jain
 
 
- Original Message 
From: Scott [EMAIL PROTECTED] us
To: [EMAIL PROTECTED] ups.com
Sent: Saturday, 11 October, 2008 10:25:53 AM
Subject: [flexcoders] Components and displaying into a new target
I’ve got an issue that I can’t figure a way around.
 
My main.mxml has a canvas for the main display.  Within that canvas I have many 
different components.  One of which is an accordion control that contains 
several different components.  One of those components I have is a text window 
with a couple of buttons.  When I click a button within that accordion control 
I want it to open a new window on the main.mxml canvas.  Can I do that without 
using a custom event?
 
I tried to figure out if I could use the target=”” on the addChild line but I 
can’t figure out how to reference the canvas in the main..mxml.
 
TIA.
  Scott





Unlimited freedom, unlimited storage. Get it now
-- 
This message has been scanned for viruses and 
dangerous content by MailScanner, and is 
believed to be clean.  


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Re: FlexBuilder issue

2008-10-07 Thread jitendra jain
Make sure your library path points to WEB-INF/flex/locale/{locale}
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Greg Morphis [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, 6 October, 2008 11:32:49 PM
Subject: [flexcoders] Re: FlexBuilder issue


to complicate matters.. when I go to import a contol, for example
Alert.. I type import mx.
controls inst an option, collections and core others but no mx.controls. .

reinstall in order?

On Mon, Oct 6, 2008 at 11:53 AM, Greg Morphis [EMAIL PROTECTED] com wrote:
 I recently uninstalled the flex builder 2 plugin and reinstalled it.
 I'm having problems with autocomplete in mxml files and when I go to
 create a new MXML Component there's Canvas in the dropdown but nothing
 else.
 I can type in HBox or whatever but it's fairly annoying.. Any ideas to try?

 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] Eclipse not Building

2008-10-07 Thread jitendra jain
In fact I did all the things.

At last i deleted the bin-debug folder and it helped me. But even i check 
'Build Automatically'  option from Eclipse. It looks it is not building. 
Everytime i have to delete the bin-debug folder to reflect the changes. It was 
not happening before. But i notice this frequently from couple of days. 
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Ryan Gravener [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, 6 October, 2008 5:33:51 PM
Subject: Re: [flexcoders] Eclipse not Building


make sure you stop the debugger, clear your cache, clean the project
and then set the breakpoint.

On 10/6/08, jitendra jain jitendra_jain_ [EMAIL PROTECTED] com wrote:
 Hi Guys,

 I have tried of cleaning and building Flex project using Eclipse. I was
 stunned to see that my debugger points to some commented code. Please help.
 Cleaning and building doesn't helped me.. If any other way to do it??
 Thanks,

 with Regards,
 Jitendra Jain



 Add more friends to your messenger and enjoy! Go to
 http://messenger. yahoo.com/ invite/

-- 
Ryan Gravener
http://twitter. com/ryangravener
 
Messages in this topic (2) Reply (via web post) | Start a new topic 
Messages 
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 
Change settings via the Web (Yahoo! ID required) 
Change settings via email: Switch delivery to Daily Digest | Switch format to 
Traditional 
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe 
Recent Activity
*  57
New MembersVisit Your Group 
Yahoo! Finance
It's Now Personal
Guides, news,
advice  more.
Yahoo! Groups
Join a program
to help you find
balance in your life.
Wellness Spot
on Yahoo! Groups
A resource for living
the Curves lifestyle.
. 
__,_.._,___ 


  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

Re: [flexcoders] handling data within a datagrid

2008-10-07 Thread jitendra jain
Use event.target.selectedItems instead of event.target.selectedItem
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Greg Morphis [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 7 October, 2008 7:22:23 AM
Subject: Re: [flexcoders] handling data within a datagrid


That was a typo instead of copying and pasting..
mySelectedRow is an ArrayCollection
I'm assignin the event.target. selectedItem which is a datagrid row to it..
I want to knmow why it's not working the way it should...

To learn I'm creating a budgetbook of sorts.. so here's what I have
copied and pasted..

public function handleChangeEvent( event:DataGridEv ent):void
{
MyModel..getInstance ().SelectedBudge tAC = event.target. selectedItem as
ArrayCollection;
Alert.show(MyModel. getInstance( ).SelectedBudget AC.getItemAt( 0).payee) ;
var evt:CairngormEvent = new CairngormEvent( MyControl. EVENT_GET_ 
BUDGET_DETAILS) ;
CairngormEventDispa tcher.getInstanc e().dispatchEven t(evt); 

}

public var Budget:BudgetVO;
public var BudgetAC:ArrayColle ction;
public var budgetID:Number;
public var SelectedBudgetAC: ArrayCollection;

sorry about that..

On Mon, Oct 6, 2008 at 9:02 PM, Tracy Spratt [EMAIL PROTECTED] com wrote:
 Then how are you expecting that setting mySelectedRow property will do
 anything regarding the SelectedBudgetAC property?

 Tracy



  _ _ __

 From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On
 Behalf Of Greg Morphis
 Sent: Monday, October 06, 2008 8:02 PM
 To: [EMAIL PROTECTED] ups.com
 Subject: Re: [flexcoders] handling data within a datagrid



 No, just global variables

 On Mon, Oct 6, 2008 at 7:13 PM, Tracy Spratt [EMAIL PROTECTED] com wrote:
 Does MyModel handle the relationship between mySelectedRow and
 SelectedBudgetAC? Using setters or getters?

 Tracy



  _ _ __

 From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On
 Behalf Of Greg Morphis
 Sent: Monday, October 06, 2008 7:48 PM
 To: [EMAIL PROTECTED] ups.com
 Subject: [flexcoders] handling data within a datagrid



 I've got my datagrid populating but I need to see that data in aother
 location within my app.
 In my MyModel.as
 I have a global variable
 public var mySelectedRow: ArrayCollection;

 I've tried setting this variable in the dataGrid change event...
 public function handleChangeEvent( event:Event) :void
 {
 MyModel.getInstance ().mySelectedRow = event.target. selectedItem as
 ArrayCollection;
 Alert.show(MyModel. getInstance( ).SelectedBudget AC.getItemAt( 0).amount) ;
 var evt:CairngormEvent = new
 CairngormEvent( MyControl. EVENT_GET_ DATA_DETAILS) ;
 CairngormEventDispa tcher.getInstanc e().dispatchEven t(evt);

 }

 The Alert returns a null error.. but it looks like it should be working?
 What I'm trying to do is I have a VO I need to populate.. I was going
 to do that within a command (is that best practice? -- to seperate
 display from logic)
 So anywho I'm trying to populate that arraycollection and then in the
 command do all the fun stuff...
 var myVO:FootVO = MyModel.getInstance ().FooVO;
 myVO.amount = MyModel.getInstance ().SelectedBudge tAC.getItemAt( 0).amount;

 but I'm getting a null error.. is this the proper way to load a VO
 from a selected DataGrid row?

 Thanks



 
 


  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

[flexcoders] Eclipse not Building

2008-10-06 Thread jitendra jain
Hi Guys,

  I have tried of cleaning and building Flex project using Eclipse. I was 
stunned to see that my debugger points to some commented code. Please help.
Cleaning and building doesn't helped me.. If any other way to do it??
 Thanks,

with Regards,
Jitendra Jain



  Add more friends to your messenger and enjoy! Go to 
http://messenger.yahoo.com/invite/

Re: [flexcoders] How to stop the updateDisplay event propagation?

2008-09-30 Thread jitendra jain
Provide with some test code..
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Manu Dhanda [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 30 September, 2008 2:25:00 PM
Subject: [flexcoders] How to stop the updateDisplay event propagation?



Hi,

I am having mouse pointer flickering issue while one of the component is
still preparing it's data. And that flicking is caused because I am
assigning renderer's through a for loop to a grid.

Can someone give me a pointer like what I need to do?
Because I am really tired of looking for this issue and kinda unable to find
the right approach to resolve this problem :(

Thanks,
Manu.
-- 
View this message in context: http://www.nabble. com/How-to- stop-the- 
updateDisplay- event-propagatio n--tp19738415p19 738415.html
Sent from the FlexCoders mailing list archive at Nabble.com.

 


  Add more friends to your messenger and enjoy! Go to 
http://in.messenger.yahoo.com/invite/

Re: [flexcoders] Debug mode or normal mode?

2008-09-30 Thread jitendra jain
when your application is running on the server while in debug mode you will 
have the following address in your browser window
 
http://localhost:8081/myApp/main.html?debug=true
 
for normal mode it will be:
 
http://localhost:8081/myApp/main.html
 
and also right click on the flash player to see the context menu has option 
debugger. From this u can know that flash player supports debugging. Let me 
know your more questions if any..
 Thanks,

with Regards,
Jitendra Jain




- Original Message 
From: Manu Dhanda [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Tuesday, 30 September, 2008 4:08:01 PM
Subject: [flexcoders] Debug mode or normal mode?



Hii guyz,

How do u identify from inside your application whether your app is running
in Debug Mode or Normal Mode?

Thanks.
-- 
View this message in context: http://www.nabble. com/Debug- mode-or-normal- 
mode--tp19739663 p19739663. html
Sent from the FlexCoders mailing list archive at Nabble.com.

 


  Bollywood news, movie reviews, film trailers and more! Go to 
http://in.movies.yahoo.com/

  1   2   >