RE: [flexcoders] Thanks Alex!

2013-11-05 Thread Yu, Deyang
Hi Alex,

I just start working on to use Falcon to convert our existing Flex4 application 
to Html5.  Before I dig into it, want to know how reliable it is? Should I wait 
for a bit for a better version?

Thanks and regards,
Deyang

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf 
Of Alex Harui
Sent: Tuesday, November 05, 2013 1:09 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Thanks Alex!


Thanks, but it's not so hard since I'm paid to do it.

It would help for you all to switch to Apache Flex and ask your questions over 
there.  The main Apache Flex website is: http://flex.apache.org/
You can subscribe to the mailing lists or a forum version by following 
instructions here: http://flex.apache.org/community-mailinglists.html
And in case you haven't been following, Apache just released 4.11.0 which has 
some 200 bug fixes over Adobe 4.6, and several of us, including myself are 
working on FlexJS, a version of Flex that runs without Flash.  More information 
on that is here:  https://cwiki.apache.org/confluence/display/FLEX/FlexJS

-Alex

From: [ p e r c e p t i c o n ] 
percepti...@gmail.commailto:percepti...@gmail.com
Reply-To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Date: Tuesday, November 5, 2013 9:15 AM
To: flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com 
flexcoders@yahoogroups.commailto:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Thanks Alex!


I second third and fourth that

On Nov 5, 2013, at 10:37 AM, James Finnigan 
james.alan.finni...@gmail.commailto:james.alan.finni...@gmail.com wrote:

I have no idea who is still listening to this thread but I think it's time to 
humbly, and gratefully thank Alex for his devotion to Flex and this thread.  
Two years ago our world was shaken and we've all moved onto different (not 
better) things. ;)

Alex has continued to demonstrate and keep his promise in supporting Flex two 
years down the road and will probably continue to monitor these and other 
threads for several more.



Hats off to you Alex!  You are to commended for your devotion and sacrifices to 
our beloved Flex!

James

LongLiveFlex/






[flexcoders] datagrid column background color is lost when scrolling.

2012-07-13 Thread Yu, Deyang
Hi, All,

I need to make certain datagrid columns non-editable mode. And also use the 
background color to distinguish it out it is non-editable mode.

It works fine when datagrid don't need to be scrolled.

But when horizontal scrolling the grid. The column background color is lost. It 
become same color as other columns.

I think it is related to Flex reusable concept on the UI component.  How can I 
solve the issue to make sure that column background color remains.

Thanks and regards,
Deyang


[flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
I am building a Flex portal. Which has main application and several 
sub-applications.

I am using sandboxed application.

I do have crossdomain.xml defined in both main application and sub applications.

And in the main application, I used the swfloader like :
mx:SWFLoader id=couponApp width=100% height=100% 
loadForCompatibility=true trustContent=false complete=allowLoading() /

But when I tried to loading the sub application, it always give Security 
Sandbox Violation error.

The error is

*** Security Sandbox Violation ***
SecurityDomain 'http://localhost:8080/isw/Applications.html?debug=true' tried 
to access incompatible context 'http://127.0.0.1:8080/coupon/Coupon.swf'


Anybody has any idea and suggestion? Where did I go wrong?




RE: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
Alex,

Thanks. In my local tomcat server, the application does not halt. But once I 
deployed it to Websphere in Solaris, the sub application cannot be loaded.

All main application and sub applications are in the same domain, but with 
different context root. Server.com ip is 152.60.xxx.xxx

Server.com/main/mainApp.swf
Server.com/sub1/subApp1.swf
Server.com/sub2/subApp2.swf

User  login from Server.com/main/mainApp, it will load subApp1.swf by using  
URL with ip   152.60.xxx.xxx/sub1/subApp1.swf

Then this sub application cannot be loaded.  But if user login from  
152.60.xxx.xxx/main/mainApp.swf, then try to loading 
152.60.xxx.xxx/sub1/subApp1.swf, then the sub app can be loaded.

Any idea any where I should look into?

Thanks and regards,
Deyang

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Alex Harui
Sent: Wednesday, September 01, 2010 12:40 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] *** Security Sandbox Violation ***



If you get that output but the application does not halt, then you can ignore 
it.

If you want it to be sandboxed, then you can't access things in it.  You would 
not need a crossdomain.xml file.

If you are using Flex 4, make sure you added the option 
-includes=mx.managers.systemClasses.MarshallingSupport


On 8/31/10 10:34 PM, Yu, Deyang deyang...@citi.com wrote:





I am building a Flex portal. Which has main application and several 
sub-applications.

I am using sandboxed application.

I do have crossdomain.xml defined in both main application and sub applications.

And in the main application, I used the swfloader like :
mx:SWFLoader id=couponApp width=100% height=100% 
loadForCompatibility=true trustContent=false complete=allowLoading() /

But when I tried to loading the sub application, it always give Security 
Sandbox Violation error.

The error is

*** Security Sandbox Violation ***
SecurityDomain 'http://localhost:8080/isw/Applications.html?debug=true' tried 
to access incompatible context 'http://127.0.0.1:8080/coupon/Coupon.swf'


Anybody has any idea and suggestion? Where did I go wrong?






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



RE: [flexcoders] *** Security Sandbox Violation ***

2010-09-01 Thread Yu, Deyang
SDK 3.3

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Alex Harui
Sent: Wednesday, September 01, 2010 6:28 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] *** Security Sandbox Violation ***



Which version of Flex are you using?


On 9/1/10 9:50 AM, Yu, Deyang deyang...@citi.com wrote:





Alex,

Thanks. In my local tomcat server, the application does not halt. But once I 
deployed it to Websphere in Solaris, the sub application cannot be loaded.

All main application and sub applications are in the same domain, but with 
different context root. Server.com ip is 152.60.xxx.xxx

Server.com/main/mainApp.swf
Server.com/sub1/subApp1.swf
Server.com/sub2/subApp2.swf

User  login from Server.com/main/mainApp, it will load subApp1.swf by using  
URL with ip   152.60.xxx.xxx/sub1/subApp1.swf

Then this sub application cannot be loaded.  But if user login from  
152.60.xxx.xxx/main/mainApp.swf, then try to loading 
152.60.xxx.xxx/sub1/subApp1.swf, then the sub app can be loaded.

Any idea any where I should look into?

Thanks and regards,
Deyang


From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf 
Of Alex Harui
Sent: Wednesday, September 01, 2010 12:40 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] *** Security Sandbox Violation ***



If you get that output but the application does not halt, then you can ignore 
it.

If you want it to be sandboxed, then you can't access things in it.  You would 
not need a crossdomain.xml file.

If you are using Flex 4, make sure you added the option 
-includes=mx.managers.systemClasses.MarshallingSupport


On 8/31/10 10:34 PM, Yu, Deyang deyang...@citi.com wrote:






I am building a Flex portal. Which has main application and several 
sub-applications.

I am using sandboxed application.

I do have crossdomain.xml defined in both main application and sub applications.

And in the main application, I used the swfloader like :
mx:SWFLoader id=couponApp width=100% height=100% 
loadForCompatibility=true trustContent=false complete=allowLoading() /

But when I tried to loading the sub application, it always give Security 
Sandbox Violation error.

The error is

*** Security Sandbox Violation ***
SecurityDomain 'http://localhost:8080/isw/Applications.html?debug=true' tried 
to access incompatible context 'http://127.0.0.1:8080/coupon/Coupon.swf'


Anybody has any idea and suggestion? Where did I go wrong?






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