AW: AW: AW: AW: Jenkins builds

2015-09-30 Thread Christofer Dutz
Well initially it was this:
FLASHPLAYER_DEBUGGER=C\:/Program\ Files\ 
(x86)/Adobe/flashplayer_11_sa_debug_32bit.exe
That failed because it couldn't find the flashplayer debugger. In the test 
results I could see that it was trying a path that was a concatenation of the 
current directory plus the string of the environment variable. So I changed 
that to use the quotes. That still didn't work :-(

But it seems that your actually now correct path fixed at least that part. I 
was thinking that there was a reason for the additional backslash in the 
beginning of the path.

Chris



Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 08:50
An: dev@flex.apache.org
Betreff: Re: AW: AW: AW: Jenkins builds

On 9/29/15, 11:37 PM, "Christofer Dutz"  wrote:

>Well actually it was without the quotes initially and it failled for the
>same reasons ... it was my first attempt to fix things, but they didn't
>work :-(

I guess I’m confused.  I went to the flex-falcon job and looked at the
console output of the most recent build at that time (#805).  It was
failing to find the FlashPlayer Debugger.  So I removed the quotes around
the FLASHPLAYER_DEBUGGER environment variable in the build config and the
most recent build as I look right now (#806) is failing for a different
reason and got past the issue about finding the FlashPlayer Debugger.  Or
am I missing something?

-Alex


Volunteers needed to update the Flex showcase

2015-09-30 Thread OmPrakash Muppirala
Here is a new entry: https://issues.apache.org/jira/browse/FLEX-34933

It should be fairly easy to update the
http://flex.apache.org/community-showcase.html page with the new entry.

If you need instructions on how to update the website, please ask :-)

Thanks,
Om


Re: Flex Mobile App's Performance while scroll

2015-09-30 Thread Carlos Monteiro
Hi Anton,

1. Yes it greatly improves performance!
2. you can get some recipes on this link
Adobe-MAX2011-Performance-Tuning-Flex-Mobile-Apps.pptx


Best Regards,
Carlos Monteiro

On 30 September 2015 at 07:58, Anton Bondarenko  wrote:

> Hi, Appache. My name is Anton Bondarenko. I'm developing a mobile AIR
> application for Android and iOS.
> I have a list of items. A count of this items can be more than 50. Each
> item includes image icon, few text labels and 1-3 buttons. I used MXML
> layout. So when I was scrolling a list I detected a big performance
> reduction. My FPS were decreased from 24 to 8.
> Due my search of this problem I saw few videos from ADC Presents "Create
> ItemRenderers for Flex Mobile Projects
> <
> http://tv.adobe.com/watch/adc-presents/create-itemrenderers-for-flex-mobile-projects/
> >"
> and Harish Sivaramakrishnan "Performance Enhancement Tricks for Flex Mobile
> Apps That No One Told You! ".
> That videos were publicated in 2011 and 2012. So I wanna to ask you about:
> 1. Is AS3 without MXML method with ItemRenderer extending for list items
> justified and does it really icnreases performance?
> 2. Are there any others recipes and the best practices for increasing
> performance while scrolling list? May be more fresh decisions or
> publications for Flex 4.14.1.
>
> ---
> Thank you for attention,
> Best Regards, Anton B.
>


Re: Flex Mobile App's Performance while scroll

2015-09-30 Thread Harbs
Take a look at this JIRA issue which describes a way to improve scrolling 
performance:
https://issues.apache.org/jira/browse/FLEX-34821

And here for the discussion:
http://apache-flex-development.247.n4.nabble.com/Flex-Scroller-optimization-td46074.html

On Sep 30, 2015, at 9:58 AM, Anton Bondarenko  wrote:

> 2. Are there any others recipes and the best practices for increasing
> performance while scrolling list? May be more fresh decisions or
> publications for Flex 4.14.1.



AW: AW: AW: AW: Jenkins builds

2015-09-30 Thread Christofer Dutz
Ok ... after fixing some more path-related problems, I am getting closer.

Unfortunately there is one test failing with a NPE:
org.apache.flex.compiler.internal.codegen.js.flexjs.TestFlexJSFile

java.lang.NullPointerException at 
org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSDocEmitter.emitMethodDoc(JSFlexJSDocEmitter.java:142)
 at 
org.apache.flex.compiler.internal.codegen.js.jx.MethodEmitter.emit(MethodEmitter.java:59)
 at 
org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSEmitter.emitMethod(JSFlexJSEmitter.java:303)
 at 
org.apache.flex.compiler.internal.codegen.js.jx.ClassEmitter.emit(ClassEmitter.java:73)
 at 
org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSEmitter.emitClass(JSFlexJSEmitter.java:261)
 at 
org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitClass(ASBlockWalker.java:226)
 at 
org.apache.flex.compiler.internal.visitor.as.ASNodeSwitch.handle(ASNodeSwitch.java:137)
 at 
org.apache.flex.compiler.internal.visitor.as.ASNodeHandler.handle(ASNodeHandler.java:85)
 at 
org.apache.flex.compiler.internal.visitor.as.BeforeAfterStrategy.handle(BeforeAfterStrategy.java:110)
 at 
org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.walk(ASBlockWalker.java:157)
 at 
org.apache.flex.compiler.internal.codegen.js.goog.JSGoogEmitter.emitPackageContents(JSGoogEmitter.java:180)
 at 
org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitPackage(ASBlockWalker.java:214)
 at 
org.apache.flex.compiler.internal.visitor.as.ASNodeSwitch.handle(ASNodeSwitch.java:133)
 at 
org.apache.flex.compiler.internal.visitor.as.ASNodeHandler.handle(ASNodeHandler.java:85)
 at 
org.apache.flex.compiler.internal.visitor.as.BeforeAfterStrategy.handle(BeforeAfterStrategy.java:110)
 at 
org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.walk(ASBlockWalker.java:157)
 at 
org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitFile(ASBlockWalker.java:194)
 at 
org.apache.flex.compiler.internal.codegen.js.flexjs.TestFlexJSFile.testFlexJSMyController(Unknown
 Source)

Any idea what could be going wrong?

Chris




Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 09:11
An: dev@flex.apache.org
Betreff: AW: AW: AW: AW: Jenkins builds

Well initially it was this:
FLASHPLAYER_DEBUGGER=C\:/Program\ Files\ 
(x86)/Adobe/flashplayer_11_sa_debug_32bit.exe
That failed because it couldn't find the flashplayer debugger. In the test 
results I could see that it was trying a path that was a concatenation of the 
current directory plus the string of the environment variable. So I changed 
that to use the quotes. That still didn't work :-(

But it seems that your actually now correct path fixed at least that part. I 
was thinking that there was a reason for the additional backslash in the 
beginning of the path.

Chris



Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 08:50
An: dev@flex.apache.org
Betreff: Re: AW: AW: AW: Jenkins builds

On 9/29/15, 11:37 PM, "Christofer Dutz"  wrote:

>Well actually it was without the quotes initially and it failled for the
>same reasons ... it was my first attempt to fix things, but they didn't
>work :-(

I guess I’m confused.  I went to the flex-falcon job and looked at the
console output of the most recent build at that time (#805).  It was
failing to find the FlashPlayer Debugger.  So I removed the quotes around
the FLASHPLAYER_DEBUGGER environment variable in the build config and the
most recent build as I look right now (#806) is failing for a different
reason and got past the issue about finding the FlashPlayer Debugger.  Or
am I missing something?

-Alex

Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread OmPrakash Muppirala
Apologies to the real Flex dream team ;-)

https://twitter.com/bigosmallm/status/649202221297614848


Re: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread piotrz
Yeah! :) Greetings guys! 
Have a wonderful time there! :)



-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Apache-Flex-dream-team-at-ApacheCon-Europe-2015-tp49407p49408.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Test Failures when building flex-falcon

2015-09-30 Thread Christofer Dutz
Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'core'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]

BUILD FAILED
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/build.xml:82: The 
following error occurred while executing


Any idea why this is the case?


Chris


Re: Test Failures when building flex-falcon

2015-09-30 Thread Alex Harui
Probably need flex-sdk


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Christofer Dutz

Date: Wed, Sep 30, 2015 7:34 AM

To: 'dev@flex.apache.org';

Subject:Test Failures when building flex-falcon


Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'core'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]

BUILD FAILED
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/build.xml:82: The 
following error occurred while executing


Any idea why this is the case?


Chris


Re: AW: AW: AW: AW: Jenkins builds

2015-09-30 Thread Alex Harui
Looks like there should have been console output telling you what didn’t
resolve.  What didn’t resolve?  This test passes for me.

-Alex

On 9/30/15, 5:22 AM, "Christofer Dutz"  wrote:

>Ok ... after fixing some more path-related problems, I am getting closer.
>
>Unfortunately there is one test failing with a NPE:
>org.apache.flex.compiler.internal.codegen.js.flexjs.TestFlexJSFile
>
>java.lang.NullPointerException at
>org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSDocEmitter.emi
>tMethodDoc(JSFlexJSDocEmitter.java:142) at
>org.apache.flex.compiler.internal.codegen.js.jx.MethodEmitter.emit(MethodE
>mitter.java:59) at
>org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSEmitter.emitMe
>thod(JSFlexJSEmitter.java:303) at
>org.apache.flex.compiler.internal.codegen.js.jx.ClassEmitter.emit(ClassEmi
>tter.java:73) at 
>org.apache.flex.compiler.internal.codegen.js.flexjs.JSFlexJSEmitter.emitCl
>ass(JSFlexJSEmitter.java:261) at
>org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitClass(ASBl
>ockWalker.java:226) at
>org.apache.flex.compiler.internal.visitor.as.ASNodeSwitch.handle(ASNodeSwi
>tch.java:137) at 
>org.apache.flex.compiler.internal.visitor.as.ASNodeHandler.handle(ASNodeHa
>ndler.java:85) at 
>org.apache.flex.compiler.internal.visitor.as.BeforeAfterStrategy.handle(Be
>foreAfterStrategy.java:110) at
>org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.walk(ASBlockWal
>ker.java:157) at 
>org.apache.flex.compiler.internal.codegen.js.goog.JSGoogEmitter.emitPackag
>eContents(JSGoogEmitter.java:180) at
>org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitPackage(AS
>BlockWalker.java:214) at
>org.apache.flex.compiler.internal.visitor.as.ASNodeSwitch.handle(ASNodeSwi
>tch.java:133) at 
>org.apache.flex.compiler.internal.visitor.as.ASNodeHandler.handle(ASNodeHa
>ndler.java:85) at 
>org.apache.flex.compiler.internal.visitor.as.BeforeAfterStrategy.handle(Be
>foreAfterStrategy.java:110) at
>org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.walk(ASBlockWal
>ker.java:157) at 
>org.apache.flex.compiler.internal.codegen.as.ASBlockWalker.visitFile(ASBlo
>ckWalker.java:194) at
>org.apache.flex.compiler.internal.codegen.js.flexjs.TestFlexJSFile.testFle
>xJSMyController(Unknown Source)
>
>Any idea what could be going wrong?
>
>Chris
>
>
>
>
>Von: Christofer Dutz 
>Gesendet: Mittwoch, 30. September 2015 09:11
>An: dev@flex.apache.org
>Betreff: AW: AW: AW: AW: Jenkins builds
>
>Well initially it was this:
>FLASHPLAYER_DEBUGGER=C\:/Program\ Files\
>(x86)/Adobe/flashplayer_11_sa_debug_32bit.exe
>That failed because it couldn't find the flashplayer debugger. In the
>test results I could see that it was trying a path that was a
>concatenation of the current directory plus the string of the environment
>variable. So I changed that to use the quotes. That still didn't work :-(
>
>But it seems that your actually now correct path fixed at least that
>part. I was thinking that there was a reason for the additional backslash
>in the beginning of the path.
>
>Chris
>
>
>
>Von: Alex Harui 
>Gesendet: Mittwoch, 30. September 2015 08:50
>An: dev@flex.apache.org
>Betreff: Re: AW: AW: AW: Jenkins builds
>
>On 9/29/15, 11:37 PM, "Christofer Dutz"  wrote:
>
>>Well actually it was without the quotes initially and it failled for the
>>same reasons ... it was my first attempt to fix things, but they didn't
>>work :-(
>
>I guess I’m confused.  I went to the flex-falcon job and looked at the
>console output of the most recent build at that time (#805).  It was
>failing to find the FlashPlayer Debugger.  So I removed the quotes around
>the FLASHPLAYER_DEBUGGER environment variable in the build config and the
>most recent build as I look right now (#806) is failing for a different
>reason and got past the issue about finding the FlashPlayer Debugger.  Or
>am I missing something?
>
>-Alex



Re: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread Alex Harui
Yeah, hope everything goes well.

What other Apache Flex committers are there with you?  I think Chris Dutz
and Justin.  Anybody else?

What are your thoughts on getting a release out this week?  Important or
not?

-Alex

On 9/30/15, 6:06 AM, "piotrz"  wrote:

>Yeah! :) Greetings guys!
>Have a wonderful time there! :)
>
>
>
>-
>Apache Flex PMC
>piotrzarzyck...@gmail.com
>--
>View this message in context:
>http://apache-flex-development.247.n4.nabble.com/Apache-Flex-dream-tea
>m-at-ApacheCon-Europe-2015-tp49407p49408.html
>Sent from the Apache Flex Development mailing list archive at Nabble.com.



Re: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread OmPrakash Muppirala
Thanks!

A new release would be good, but not critical IMHO.  I was going to talk
the 0.5 release anyways, in terms of it being the upcoming release.

Regards,
Om


On Wed, Sep 30, 2015 at 6:00 PM, Alex Harui  wrote:

> Yeah, hope everything goes well.
>
> What other Apache Flex committers are there with you?  I think Chris Dutz
> and Justin.  Anybody else?
>
> What are your thoughts on getting a release out this week?  Important or
> not?
>
> -Alex
>
> On 9/30/15, 6:06 AM, "piotrz"  wrote:
>
> >Yeah! :) Greetings guys!
> >Have a wonderful time there! :)
> >
> >
> >
> >-
> >Apache Flex PMC
> >piotrzarzyck...@gmail.com
> >--
> >View this message in context:
> >
> http://apache-flex-development.247.n4.nabble.com/Apache-Flex-dream-tea
> >m-at-ApacheCon-Europe-2015-tp49407p49408.html
> >Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
>


Re: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread Justin Mclean
Hi,

Maxim is here may be other committers but not run into them yet. The core
conference starts tomorrow.

Justin


Re: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread Alex Harui


On 9/30/15, 9:29 AM, "omup...@gmail.com on behalf of OmPrakash Muppirala"
 wrote:

>Thanks!
>
>A new release would be good, but not critical IMHO.  I was going to talk
>the 0.5 release anyways, in terms of it being the upcoming release.

I guess it is mostly up to you and Chris, as I am waiting to find out if
you guys have gotten past build issues you have reported in the nightly
builds.

-Alex



AW: Apache Flex 'dream team' at ApacheCon Europe 2015

2015-09-30 Thread Christofer Dutz
At least I'm having a beer with maxim :-)
 Om was here before ... So I currently count 4 :-)

 Chris



Von meinem Samsung Galaxy Smartphone gesendet.


 Ursprüngliche Nachricht 
Von: Alex Harui 
Datum: 30.09.2015 18:01 (GMT+01:00)
An: dev@flex.apache.org
Betreff: Re: Apache Flex 'dream team' at ApacheCon Europe 2015

Yeah, hope everything goes well.

What other Apache Flex committers are there with you?  I think Chris Dutz
and Justin.  Anybody else?

What are your thoughts on getting a release out this week?  Important or
not?

-Alex

On 9/30/15, 6:06 AM, "piotrz"  wrote:

>Yeah! :) Greetings guys!
>Have a wonderful time there! :)
>
>
>
>-
>Apache Flex PMC
>piotrzarzyck...@gmail.com
>--
>View this message in context:
>http://apache-flex-development.247.n4.nabble.com/Apache-Flex-dream-tea
>m-at-ApacheCon-Europe-2015-tp49407p49408.html
>Sent from the Apache Flex Development mailing list archive at Nabble.com.



AW: Test Failures when building flex-falcon

2015-09-30 Thread Christofer Dutz
Ok ... having a look at things I did notice, that I do have the FLEX_HOME set 
correctly and I managed to get that building after I managed to solve all the 
dependency related projects. But it seems that "ant all" doesn't build all ... 
unfortunately I couldn't find the rb.swc files being built ... is there a "ant 
all-yes-all-even-the-rb-files-and-i-really-mean-it-build-EVERYTHING" target? I 
couldn't find one.


Chris


PS: I deleted about 90% of this Mail in which I expressed my opinion regarding 
the build construct of the entire Flex project (Except BlazeDS).






Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 16:59
An: Christofer Dutz; dev@flex.apache.org
Betreff: Re: Test Failures when building flex-falcon


Probably need flex-sdk


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Christofer Dutz

Date: Wed, Sep 30, 2015 7:34 AM

To: 'dev@flex.apache.org';

Subject:Test Failures when building flex-falcon


Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'core'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]

BUILD FAILED
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/build.xml:82: The 
following error occurred while executing


Any idea why this is the case?


Chris


AW: Test Failures when building flex-falcon

2015-09-30 Thread Christofer Dutz
By the way ... "Check ADOBE_EXTENSION_MANAGER is a directory". It doesn't work 
if it is actually not a FILE ...













Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 22:20
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

Ok ... having a look at things I did notice, that I do have the FLEX_HOME set 
correctly and I managed to get that building after I managed to solve all the 
dependency related projects. But it seems that "ant all" doesn't build all ... 
unfortunately I couldn't find the rb.swc files being built ... is there a "ant 
all-yes-all-even-the-rb-files-and-i-really-mean-it-build-EVERYTHING" target? I 
couldn't find one.


Chris


PS: I deleted about 90% of this Mail in which I expressed my opinion regarding 
the build construct of the entire Flex project (Except BlazeDS).






Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 16:59
An: Christofer Dutz; dev@flex.apache.org
Betreff: Re: Test Failures when building flex-falcon


Probably need flex-sdk


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Christofer Dutz

Date: Wed, Sep 30, 2015 7:34 AM

To: 'dev@flex.apache.org';

Subject:Test Failures when building flex-falcon


Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'core'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]

BUILD FAILED
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/build.xml:82: The 
following error occurred while executing


Any idea why this is the case?


Chris

AW: Test Failures when building flex-falcon

2015-09-30 Thread Christofer Dutz
Ok .. so now the oracle site is unfortunately not able to serve any requests. 
They don't seem to know when the site will be up again :-(

I hereby swear to replace any failing download that fails because of other 
sites being offline with a maven-central download :-)

Chris


Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 22:45
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

By the way ... "Check ADOBE_EXTENSION_MANAGER is a directory". It doesn't work 
if it is actually not a FILE ...













Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 22:20
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

Ok ... having a look at things I did notice, that I do have the FLEX_HOME set 
correctly and I managed to get that building after I managed to solve all the 
dependency related projects. But it seems that "ant all" doesn't build all ... 
unfortunately I couldn't find the rb.swc files being built ... is there a "ant 
all-yes-all-even-the-rb-files-and-i-really-mean-it-build-EVERYTHING" target? I 
couldn't find one.


Chris


PS: I deleted about 90% of this Mail in which I expressed my opinion regarding 
the build construct of the entire Flex project (Except BlazeDS).






Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 16:59
An: Christofer Dutz; dev@flex.apache.org
Betreff: Re: Test Failures when building flex-falcon


Probably need flex-sdk


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Christofer Dutz

Date: Wed, Sep 30, 2015 7:34 AM

To: 'dev@flex.apache.org';

Subject:Test Failures when building flex-falcon


Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'core'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]

BUILD FAILED
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/build.xml:82: The 
following error occurred while executing


Any idea why this is the case?


Chris


AW: Test Failures when building flex-falcon

2015-09-30 Thread Christofer Dutz
Ok, now after using the maven-central download I managed to have the "ant 
release" build pass successfully, now I can also see the rb.swc files got 
created successfully ... so I re-tried the falcon build "ant main" and still 
this stupid test is failing ... so please don't start a vote on falcon till the 
testsuite passes. In order to have the demos for my talks tomorrow working, 
I'll let the build continue with failures, but this has to be fixed ASAP.

Chris


Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 23:21
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

Ok .. so now the oracle site is unfortunately not able to serve any requests. 
They don't seem to know when the site will be up again :-(

I hereby swear to replace any failing download that fails because of other 
sites being offline with a maven-central download :-)

Chris


Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 22:45
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

By the way ... "Check ADOBE_EXTENSION_MANAGER is a directory". It doesn't work 
if it is actually not a FILE ...













Von: Christofer Dutz 
Gesendet: Mittwoch, 30. September 2015 22:20
An: Alex Harui; dev@flex.apache.org
Betreff: AW: Test Failures when building flex-falcon

Ok ... having a look at things I did notice, that I do have the FLEX_HOME set 
correctly and I managed to get that building after I managed to solve all the 
dependency related projects. But it seems that "ant all" doesn't build all ... 
unfortunately I couldn't find the rb.swc files being built ... is there a "ant 
all-yes-all-even-the-rb-files-and-i-really-mean-it-build-EVERYTHING" target? I 
couldn't find one.


Chris


PS: I deleted about 90% of this Mail in which I expressed my opinion regarding 
the build construct of the entire Flex project (Except BlazeDS).






Von: Alex Harui 
Gesendet: Mittwoch, 30. September 2015 16:59
An: Christofer Dutz; dev@flex.apache.org
Betreff: Re: Test Failures when building flex-falcon


Probably need flex-sdk


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Christofer Dutz

Date: Wed, Sep 30, 2015 7:34 AM

To: 'dev@flex.apache.org';

Subject:Test Failures when building flex-falcon


Hi,


so I'm getting an error when building falcon with "ant all":


[junit] Running mxml.tags.MXMLHTTPServiceTagTests
[junit] Generating test:
[junit] Compiling test:
[junit] 
-external-library-path=/Users/christoferdutz/Devtools/Adobe/Flash/11.1/playerglobal.swc
 
-library-path=/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/framework.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/framework_rb.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/libs/rpc.swc,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/locale/en_US/rpc_rb.swc
 
-namespace=http://ns.adobe.com/mxml/2009,/Users/christoferdutz/Projects/Apache/Flex/flex-sdk/frameworks/mxml-2009-manifest.xml
 
/Users/christoferdutz/Projects/Apache/Flex/flex-falcon/compiler.tests/temp/MXMLHTTPServiceTagTests4983207770674339148.mxml
[junit]
[junit] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
0,333 sec
[junit] Error: Unable to resolve resource bundle 'styles'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'rpc'
[junit]
[junit] Error: Unable to resolve resource bundle 'messaging'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'collections'
[junit]
[junit] Error: Unable to resolve resource bundle 'logging'
[junit]
  

Re: Using reserved words as member variable/method names

2015-09-30 Thread Josh Tynjala
I just gave the latest nightly a try, and I successfully compiled some
classes that had reserved words as method names. Thanks, Alex!

- Josh

On Thu, Sep 24, 2015 at 12:10 PM, Josh Tynjala 
wrote:

> I think with FlexJS still in an evolving state, this doesn't seem like a
> huge risk. We're not pushing these changes into the older compiler, which
> has a larger audience with more legacy code. Regardless, since the reserved
> words were not allowed by the compiler in the past, it seems like there is
> a smaller chance of something breaking because legacy code can't rely on
> them.
>
> We should give the examples a thorough testing to be sure that they're
> working properly in both Flash Player and in browsers after being compiled
> with these changes. I'll double-check my Feathers CreateJS prototype too.
>
> Some members are currently excluded from JS.swc because they're reserved
> words, and we can include them again and check that they're working as
> expected. Additionally, if these get into the release, I'll be sure to
> confirm that the compiler will accept my converted TypeScript definitions
> that contain reserved words as members too.
>
> I'm not be opposed to waiting for the next release, though. For what I
> personally want to do in the coming months, it can wait, if it makes us
> feel safer. Developers can use bracket syntax as a temporary workaround, if
> needed.
>
> - Josh
>
> On Thu, Sep 24, 2015 at 11:08 AM, Alex Harui  wrote:
>
>> OK, well that made things “easier”.  I’ve pushed changes with a few tests
>> into the JsToAs branch.  Volunteers are welcome to add more tests for the
>> other keywords
>>
>> Now the question is:  Do we gamble and merge these changes into the
>> develop branch for the upcoming release?
>>
>> -Alex
>>
>> On 9/24/15, 9:15 AM, "Josh Tynjala"  wrote:
>>
>> >Requiring "this." before a reserved word when it's used as the name of a
>> >member seems perfectly reasonable. It's sort of the same thing as when a
>> >function parameter is named the same as a member variable.
>> >
>> >function(param:String):void
>> >{
>> >this.param = param;
>> >}
>> >
>> >Sometimes, certain naming conflicts require you to use "this." to access
>> >what you want, and that's okay.
>> >
>> >- Josh
>> >
>> >On Thu, Sep 24, 2015 at 8:53 AM, Alex Harui  wrote:
>> >
>> >> Well, this is turning out to be trickier than I thought.  I’m not a
>> >> language person, but one difficulty in getting this to work in our
>> >> compiler seems to have to do with a key difference between AS and JS.
>> >>
>> >> As Josh mentioned in the links below, in JS identifierNames can be used
>> >> essentially anywhere you can use bracket access.  My current theory is
>> >> that this is allowed in JS because all identifierNames have to be
>> >>accessed
>> >> as obj.identifierName.
>> >>
>> >> But in AS, obj is assumed and that makes lexing and parsing difficult
>> >>in a
>> >> couple of situations.  For example:
>> >>
>> >> JS:
>> >>
>> >> Foo = function() {};
>> >> Foo.prototype.return = function(someParam) {
>> >> };
>> >> Foo.prototype.test = function() {
>> >>   this.return(10+20);
>> >>   return (10+20);
>> >> };
>> >>
>> >> In the above example, I can create a function called “return” and call
>> >>it
>> >> with an expression as a parameter and then return an expression.
>> >>
>> >> But now look at the AS:
>> >>
>> >> class Foo
>> >> {
>> >>   function return(someParam)
>> >>   {
>> >>   }
>> >>   function test():int
>> >>   {
>> >>  return(10+20);
>> >>  return (10+20);
>> >>   }
>> >> }
>> >>
>> >> Because AS assumes ‘this’, I can’t think of a way to distinguish
>> >>between a
>> >> call to a function called “return” and the return keyword that returns
>> >>an
>> >> expression.  Same for “catch” and probably “new” and maybe even
>> “throw”.
>> >> I think this is why JS disallows keywords for local variable and local
>> >> function names.
>> >>
>> >> I think other keywords like “default” and “as” and “is” can be
>> >> distinguished from the token stream which can look back one token and
>> >> ahead a few tokens.  I gave up trying to handle this on the parsing
>> side
>> >> because the set of allowed tokens was going to greatly complicate the
>> >> grammar.
>> >>
>> >> My current plan is to “do the best we can” which means that there will
>> >>be
>> >> funky rules when using keywords in identifierNames.  I think the only
>> >> other option is to simply disallow some keywords as identifierNames.
>> >>
>> >> So the funky rules are going to be things like:
>> >> 1. You can use “return” and “catch” as identifierNames but you must use
>> >> “this.” or some other “.” expression in order to access it.
>> >> 2. You can use “break” and “continue” as identifierNames but plain
>> >> “break;” is the keyword and not a call to the getter. Same for
>> >>“continue”;
>> >>
>> >> Thoughts?
>> >> -Alex
>> >>
>> >> On 9/22/15, 10:56 AM, "Alex Harui"  wrote:
>> >>
>> >> >I’m going to see what compiler changes are needed for this

Re: AW: Test Failures when building flex-falcon

2015-09-30 Thread Alex Harui


On 9/30/15, 2:37 PM, "Christofer Dutz"  wrote:

>Ok, now after using the maven-central download I managed to have the "ant
>release" build pass successfully, now I can also see the rb.swc files got
>created successfully ... so I re-tried the falcon build "ant main" and
>still this stupid test is failing ... so please don't start a vote on
>falcon till the testsuite passes. In order to have the demos for my talks
>tomorrow working, I'll let the build continue with failures, but this has
>to be fixed ASAP.

AFAICT, the test that is failing is depending on SWCs from flex-asjs,
which don’t exist because that build still fails.

HTH,
-Alex



How to migrate flex builder 3.0 project to flex builder 4.6

2015-09-30 Thread saurabhkatyan
Good Morning All of you

Sir/mam 
   
please help me solve flex error 

my error is my flex program writing in flex builder 3.0 and support flash
player 9 but i am using flash player 19 then content of my program not show
when i am generating pdf file is not generating in flah player 19 but when
generating this run on flash player 9 then generating
and provide me solution for new version flex builder 4.6 to run flex
builder3.0 application
 
 
 
 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/How-to-migrate-flex-builder-3-0-project-to-flex-builder-4-6-tp49423.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


How to remove error when generated report in flash player

2015-09-30 Thread saurabhkatyan

Hello friends 

i am see error in my project when run on server

SecurityError: Error #3769: Security sandbox violation: Only simple headers
can be used with navigateToUrl() or sendToUrl().
at global/flash.net::navigateToURL()
at
Report/facpReportResultfunction()[D:\workspace\punarjjaniWeb\src\Report.mxml:718]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at
mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractOperation.as:189]
at
mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AbstractInvoker.as:191]
at
mx.rpc::Responder/result()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:41]
at
mx.rpc::AsyncRequest/acknowledge()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest.as:74]
at
DirectHTTPMessageResponder/completeHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\messaging\channels\DirectHTTPChannel.as:381]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()






 
 
 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/How-to-remove-error-when-generated-report-in-flash-player-tp49424.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.