Looks like Tom also has the magic, although I did reboot the server as
well to get past the repo access errors, but rebooting in the past wasn't
enough.
Air and Mobile are passing, and I would say the SDK errors are probably
real errors: There are some Sort errors left over from some changes we
m
I don't think there is any reason to mandate any particular style. If
that's the way you want to write some code, that's fine with me.
IMO, my brain thinks "loop" when it sees "do" as in, "something in here
may need to be done more than once", so if you do use this style, could
you try to remembe
Of course there’s no reason not to mix and match. In this case, I’d probably
join similar conditions like this:
do
{
if(prompt == null || prompt == "")
break;
if(!skin || !skin.currentState)
break;
if(skin.currentState.indexOf("WithPrompt") == -1 && text.length != 0)
To be clear, I think Mark’s code was a nice compromise between approach #1 and
approach #2.
In this case following Flex code formatting style, do-while-false should look
something like this:
do
{
if(prompt == null)
break;
if(prompt == "")
break;
if(!skin)
brea
Hi Alan,
I'm sorry you are still having problems. If you still are unsuccessful
after trying Tom's suggestions below, please also:
1) look in the destination folder for a folder called "in" and see if the
apache-flex-falconjx-0.5.0-bin.zip is in there (it might be in a
subfolder) and what size i
I believe example2 need to be reformatted to match example1
do
{
if(prompt == null)
{
break
};
if(prompt == "")
{
break
};
if(!skin){
break
};
if(!skin.currentState)
{
break
};
if(skin.currentState.indexOf("WithProm
Let me see if I can reformat into all the examples so we can have a real sample
for people. Below shows the original, what was committed. Then shows the last
few examples. Hopefully this won't get word wrapped to badly or have font
issues.
The original was changed to better group the sets of
OK. The last run failed, and was not in progress.
I ran all four players in that folder and closed them.
Let's see what happens on the next run
Tom
On 18/11/15 22:52, Alex Harui wrote:
The mustella server has caught legitimate issues, most recently with some
sort behavior changes. But yeah,
Can you retrieve this file manually ?
Are you behind a proxy or firewall that could block it ?
Can you try again ?
Tom
On 19/11/15 08:09, Buranello Alan wrote:
Installing Apache Flex Falcon Compiler from:
http://apache.panu.it/flex/falcon/0.5.0/binaries/apache-flex-falconjx-0.5.0-bin.zip
Valida
The Apache Flex team is pleased to annonce the release of Apache Flex
BlazeDS 4.7.2.
Apache Flex BlazeDS is the server-based Java remoting and web messaging
technology that enables developers to easily connect to back-end
distributed
data and push data in real-time to Adobe(r) Flex(r) and Adobe A
Hi Harbs,
Really extraordinary way of use do-while. I love it and I'm ok with using it
in invalidateSkinState!
Thanks for sharing it!
Piotr
-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/do-while-false-tp5
Hi,
I prefer:
if (giveItName()) {
….
}
giveItName() {
return condition1 && condition2 && condition3;
}
Thanks,
Justin
I personally prefer
if(conditiona && conditionb && conditionc &&conditiond)
{
//do something
}
it is shorter and more clear to me
not sure about performance, but I guess "if(conditiona && conditionb &&
conditionc &&conditiond)" should produce better native code
On Thu, Nov 19, 2015 at 2:16 PM, H
There’s a coding pattern that I like to use which I picked up from the InDesign
SDK. When there’s some code which needs a lot of conditions to be executed,
it’s hard to write the conditions in a way that’s easily human readable.
You can either do:
if(conditiona && conditionb && conditionc &&cond
i try to install apache flex js 0.5.0, but:
Installer version 3.2.0 (windows)
Using Locale: it_IT
Fetched the SDK download mirror URL from the CGI.
SDK version Apache FlexJS 0.5.0
AIR version 19.0
Flash Player version 19.0
Creating Apache FlexJS home
Creating temporary directory
Downloading Apache
15 matches
Mail list logo