RE: Feedback on SDK 4.10 Callout component

2013-07-31 Thread Maurice Amsellem
Thank you Justin for the quick answer, and  the consideration.

I have raised a JIRA per your request: 
https://issues.apache.org/jira/browse/FLEX-33642

Regards,

Maurice 

-Message d'origine-
De : Justin Mclean [mailto:jus...@classsoftware.com] 
Envoyé : jeudi 1 août 2013 02:06
À : users@flex.apache.org
Objet : Re: Feedback on SDK 4.10 Callout component

Hi,

Thanks for the feedback.

> -  Leaves a lot of trace statements in debug mode.  Maybe this is on 
> purpose as it's an experimental component, but it's rather annoying.
Annoying no more - I've just commented them out.

> -  Is not part of spark manifest (s), or any one manifest, so it 
> creates "components" namespace pointing to "spark.components.*".  I was used 
> to short namespaces for core flex components. Once again, maybe this was done 
> on purpose.
It should really be part of the experimental name space/manifest, we'll see if 
we can clean that up for the next release.

> -  The callout frame and arrow are displayed in black by default, and 
> changing the application's chrome-color does not affect it.   Other spark 
> components have dark gray outlines by default.  So maybe it was on purpose, 
> or maybe it's because of the mobile origin of the Callout component.
Mind raising a JIRA issue for this.

Thanks,
Justin


Re: Feedback on SDK 4.10 Callout component

2013-07-31 Thread Justin Mclean
Hi,

Thanks for the feedback.

> -  Leaves a lot of trace statements in debug mode.  Maybe this is on 
> purpose as it's an experimental component, but it's rather annoying.
Annoying no more - I've just commented them out.

> -  Is not part of spark manifest (s), or any one manifest, so it 
> creates "components" namespace pointing to "spark.components.*".  I was used 
> to short namespaces for core flex components. Once again, maybe this was done 
> on purpose.
It should really be part of the experimental name space/manifest, we'll see if 
we can clean that up for the next release.

> -  The callout frame and arrow are displayed in black by default, and 
> changing the application's chrome-color does not affect it.   Other spark 
> components have dark gray outlines by default.  So maybe it was on purpose, 
> or maybe it's because of the mobile origin of the Callout component.
Mind raising a JIRA issue for this.

Thanks,
Justin

Feedback on SDK 4.10 Callout component

2013-07-31 Thread Maurice Amsellem
Hi,

A few remarks on the new Callout component:

First off all, congratulations.  The component renders beautifully on desktop 
apps.

Some minor issues:

-  Leaves a lot of trace statements in debug mode.  Maybe this is on 
purpose as it's an experimental component, but it's rather annoying.



-  Is not part of spark manifest (s), or any one manifest, so it 
creates "components" namespace pointing to "spark.components.*".  I was used to 
short namespaces for core flex components. Once again, maybe this was done on 
purpose.



-  The callout frame and arrow are displayed in black by default, and 
changing the application's chrome-color does not affect it.   Other spark 
components have dark gray outlines by default.  So maybe it was on purpose, or 
maybe it's because of the mobile origin of the Callout component.



maybe Callout should have a "borderColor" style like spark Panel, so that we 
can change it easily without redefining the whole skin.



That's my two cents.



Maurice







RE: Problem with PopupManager

2013-07-31 Thread Maurice Amsellem
Thanks Alex for the code snippet. 

Actually, the example given below was simplied for the sake of readability.

In real, I need a generic solution because there are many popups, all driven by 
Parsley,  and I don't know where the popups will be lying. 
I would like also to use the new experimental Callout of SDK 4.10, managed by 
Parsley.

I will work on combining PopupAnchor, Callout and Parsley's 
CairngormPopupSupport so that they can work  together.

Thanks again.

Maurice

-Message d'origine-
De : Alex Harui [mailto:aha...@adobe.com] 
Envoyé : jeudi 1 août 2013 00:16
À : users@flex.apache.org
Objet : Re: Problem with PopupManager

I think all I would add is popup.x = Math.min(popup.x, 
systemManager.screen.right - popup.width);

On 7/31/13 12:22 PM, "Maurice Amsellem" 
wrote:

>Thanks,  I will raise a feature request for that.
>
>In the meantime, I intend to adapt some of the logic from PopupAnchor 
>(functions calculatePopUpPosition():Point and determinePosition) into 
>PopupWrapper subclass.
>
>Do you think it's a good idea ?
>
>Maurice
>
>-Message d'origine-
>De : Alex Harui [mailto:aha...@adobe.com] Envoyé : mercredi 31 juillet 
>2013 21:13 À : users@flex.apache.org Objet : Re: Problem with 
>PopupManager
>
>There is to right side bounds checking in PopUpManager.  Probably a 
>good feature to request.
>
>-Alex
>
>From: Maurice Amsellem
>mailto:maurice.amsel...@systar.com>>
>Reply-To: "users@flex.apache.org"
>mailto:users@flex.apache.org>>
>Date: Wednesday, July 31, 2013 9:52 AM
>To: "users@flex.apache.org"
>mailto:users@flex.apache.org>>
>Subject: Problem with PopupManager
>
>http://ns.adobe.com/mxml/2009";
>xmlns:s="library://ns.adobe.com/flex/spark">
>click="btPopup2_clickHandler(event)"/>
>
>
>



RE: Building Spark DataGrid dynamically

2013-07-31 Thread Oleg Konovalov
Prabhu,

That was very useful.

Also how can I do Validation on some of these dynamic fields,
like user should not be able to enter Alphanumeric if that is an Integer
field.

Please advice.

TIA,
Oleg
On Jul 26, 2013 2:15 AM, "Prabu Moorthy" 
wrote:

> Below code render datagrid columns in original order,
>
> var colArr:ArrayList = new ArrayList();
> var colNames:Array=//Assign list of Datagrid column names
> var len:int = colNames.length;
> for(var i:int=0;i {
> var gc:GridColumn = new GridColumn(colNames [i]);
> colArr.addItem(gc);
> }
> dg.columns = colArr; //dg is mxml datagrid id
> dg.dataProvider = dgAC;//Assign Datagrid arrayCollection data
>
>
> Thanks & Regards
> M.Prabhu
>
> -Original Message-
> From: Oleg Konovalov [mailto:oleg...@gmail.com]
> Sent: Friday, July 26, 2013 6:51 AM
> To: users@flex.apache.org
> Subject: Re: Building Spark DataGrid dynamically
>
> Yes, it fixed that exception:   arrCol.source=new Array( { "" : ""} );
>
> Any suggestions how to resolve items 2 & 3 (show columns in original order
> and implement VDividerBox when second datagrid populated dynamically) ?
>
>
> On Thu, Jul 25, 2013 at 2:21 PM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > Here is a possible workaround:
> >
> > Instead of clearing the DG (which anyway wouldn't look very nice), what
> > about setting it to one single empty column ( that is : GridColumn
> > headerText= " " and dataField="_nonExistingField_" ) .
> > That way, it still looks like a datagrid, although empty and it probably
> > won't break.
> >
> > What do you think?
> >
> > Maurice
> >
> >
> > -Message d'origine-
> > De : Oleg Konovalov [mailto:oleg...@gmail.com]
> > Envoyé : jeudi 25 juillet 2013 20:12
> > À : users@flex.apache.org
> > Objet : Re: Building Spark DataGrid dynamically
> >
> > No, it is Clients code, I can't post it. I am getting data dynamically
> via
> > SOAP, convert it to Vector of Objects, then to ArrayCollection, and pass
> it
> > to Spark DG dataprovider. Datagrid is declared in MXML without any
> columns.
> > That's it. But as I said, can't clear that AC. Any idea how to avoid that
> > Null Reference?
> > On Jul 25, 2013 8:16 AM, "Martin Miko"  wrote:
> >
> > > Could you post a code sample? I've seen many strange things, but you
> > > must be doing something really funny there.
> > >
> > >
> > > On Thu, Jul 25, 2013 at 1:39 PM, Oleg Konovalov 
> > wrote:
> > >
> > > > Full exception trace with numbers:
> > > >
> > > > TypeError: Error #1009: Cannot access a property or method of a null
> > > object
> > > > reference.
> > > >
> > > >   at
> > > > spark.components.gridClasses::GridLayout/updateTypicalCellSizes()[E:
> > > > \
> > > > dev\4.5.1\frameworks\projects\spark\src\spark\components\gridClasses
> > > > \G
> > > > ridLayout.as:867]
> > > >
> > > >   at
> > > > spark.components.gridClasses::GridLayout/measure()[E:\dev\4.5.1\fram
> > > > e
> > > > works\projects\spark\src\spark\components\gridClasses\GridLayout.as:
> > > > 44 4]
> > > >
> > > >   at
> > > > spark.components.supportClasses::GroupBase/measure()[E:\dev\4.5.1\fr
> > > > a
> > > > meworks\projects\spark\src\spark\components\supportClasses\GroupBase
> > > > .a
> > > > s:1148]
> > > >
> > > >   at
> > > > mx.core::UIComponent/measureSizes()[E:\dev\4.5.1\frameworks\projects
> > > > \ framework\src\mx\core\UIComponent.as:8496]
> > > >
> > > >   at
> > > > mx.core::UIComponent/validateSize()[E:\dev\4.5.1\frameworks\projects
> > > > \ framework\src\mx\core\UIComponent.as:8420]
> > > >
> > > >   at
> > > > spark.components::Group/validateSize()[E:\dev\4.5.1\frameworks\proje
> > > > c ts\spark\src\spark\components\Group.as:1012]
> > > >
> > > >   at
> > > > mx.managers::LayoutManager/validateSize()[E:\dev\4.5.1\frameworks\pr
> > > > o jects\framework\src\mx\managers\LayoutManager.as:665]
> > > >
> > > >   at
> > > > mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.5.1\fram
> > > > e works\projects\framework\src\mx\managers\LayoutManager.as:816]
> > > >
> > > >   at
> > > > mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.
> > > > 5
> > > > .1\frameworks\projects\framework\src\mx\managers\LayoutManager.as:11
> > > > 80 ]
> > > >
> > > >
> > > > On Thu, Jul 25, 2013 at 12:17 AM, OmPrakash Muppirala
> > > > wrote:
> > > >
> > > > > Moving topic to "users" list.
> > > > >
> > > > > Oleg, you will get a better response in this forum for questions
> > > > > like these.  Please make sure you are subscribed to
> > > > > users@flex.apache.orgto see further responses.  You could do so by
> > > > > sending an email to users-subscr...@flex.apache.org.
> > > > >
> > > > > Thanks,
> > > > > Om
> > > > >
> > > > >
> > > > > On Wed, Jul 24, 2013 at 9:12 PM, Oleg Konovalov
> > > > > 
> > > > wrote:
> > > > >
> > > > >> Hi,
> > > > >>
> > > > >> I am building a screen with one Static DataGrid and one Dynamic
> > > > >> (data comes thro

Re: Problem with PopupManager

2013-07-31 Thread Alex Harui
I think all I would add is popup.x = Math.min(popup.x,
systemManager.screen.right - popup.width);

On 7/31/13 12:22 PM, "Maurice Amsellem" 
wrote:

>Thanks,  I will raise a feature request for that.
>
>In the meantime, I intend to adapt some of the logic from PopupAnchor
>(functions calculatePopUpPosition():Point and determinePosition) into
>PopupWrapper subclass.
>
>Do you think it's a good idea ?
>
>Maurice 
>
>-Message d'origine-
>De : Alex Harui [mailto:aha...@adobe.com]
>Envoyé : mercredi 31 juillet 2013 21:13
>À : users@flex.apache.org
>Objet : Re: Problem with PopupManager
>
>There is to right side bounds checking in PopUpManager.  Probably a good
>feature to request.
>
>-Alex
>
>From: Maurice Amsellem
>mailto:maurice.amsel...@systar.com>>
>Reply-To: "users@flex.apache.org"
>mailto:users@flex.apache.org>>
>Date: Wednesday, July 31, 2013 9:52 AM
>To: "users@flex.apache.org"
>mailto:users@flex.apache.org>>
>Subject: Problem with PopupManager
>
>http://ns.adobe.com/mxml/2009";
>xmlns:s="library://ns.adobe.com/flex/spark">
>click="btPopup2_clickHandler(event)"/>
>
>
>



Re: Flash Builder: Can't export apps to Android 4.3 device

2013-07-31 Thread OmPrakash Muppirala
Jerry,

The Adobe AIR development forum might be the best place for this question.
 It is available here: http://forums.adobe.com/community/air/development

Thanks,
Om

On Wed, Jul 31, 2013 at 12:24 PM, Jerry Hamby  wrote:

> Don't know really who to turn for this problem, I'm hoping you guys can
> point me in the  right direction.
>
> Problem: Can't export apps to my Android device now that it was upgrade to
> Android 4.3
> I just installed Android 4.3 and all the problems started. Everything was
> working great with 4.2.2.
> Is this a know issue?
>
> Also some of my previously installed Flex apps will not run on my 4.3
> device. Some old apps do
> run and this is very confusing as I have no clue why they all where
> created with Flash Builder 4.7 and Air 3.7.
>
> My system:
> Mac Flash Builder 4.7 with Air 3.7
>


Flash Builder: Can't export apps to Android 4.3 device

2013-07-31 Thread Jerry Hamby
Don't know really who to turn for this problem, I'm hoping you guys can point 
me in the  right direction.

Problem: Can't export apps to my Android device now that it was upgrade to 
Android 4.3
I just installed Android 4.3 and all the problems started. Everything was 
working great with 4.2.2.
Is this a know issue?

Also some of my previously installed Flex apps will not run on my 4.3 device. 
Some old apps do
run and this is very confusing as I have no clue why they all where created 
with Flash Builder 4.7 and Air 3.7.

My system:
Mac Flash Builder 4.7 with Air 3.7

RE: Problem with PopupManager

2013-07-31 Thread Maurice Amsellem
Thanks,  I will raise a feature request for that.

In the meantime, I intend to adapt some of the logic from PopupAnchor 
(functions calculatePopUpPosition():Point and determinePosition) into 
PopupWrapper subclass.

Do you think it's a good idea ? 

Maurice 

-Message d'origine-
De : Alex Harui [mailto:aha...@adobe.com] 
Envoyé : mercredi 31 juillet 2013 21:13
À : users@flex.apache.org
Objet : Re: Problem with PopupManager

There is to right side bounds checking in PopUpManager.  Probably a good 
feature to request.

-Alex

From: Maurice Amsellem 
mailto:maurice.amsel...@systar.com>>
Reply-To: "users@flex.apache.org" 
mailto:users@flex.apache.org>>
Date: Wednesday, July 31, 2013 9:52 AM
To: "users@flex.apache.org" 
mailto:users@flex.apache.org>>
Subject: Problem with PopupManager

http://ns.adobe.com/mxml/2009"; 
xmlns:s="library://ns.adobe.com/flex/spark">






Flash Builder: Can't export apps to Android 4.3 device

2013-07-31 Thread Jerry Hamby
Don't know really who to turn for this problem, I'm hoping you guys can point 
me in the  right direction.

Problem: Can't export apps to my Android device now that it was upgrade to 
Android 4.3
I just installed Android 4.3 and all the problems started. Everything was 
working great with 4.2.2.
Is this a know issue?

Also some of my previously installed Flex apps will not run on my 4.3 device. 
Some old apps do
run and this is very confusing as I have no clue why they all where created 
with Flash Builder 4.7 and Air 3.7.

My system:
Mac Flash Builder 4.7 with Air 3.7

Re: Problem with PopupManager

2013-07-31 Thread Alex Harui
There is to right side bounds checking in PopUpManager.  Probably a good 
feature to request.

-Alex

From: Maurice Amsellem 
mailto:maurice.amsel...@systar.com>>
Reply-To: "users@flex.apache.org" 
mailto:users@flex.apache.org>>
Date: Wednesday, July 31, 2013 9:52 AM
To: "users@flex.apache.org" 
mailto:users@flex.apache.org>>
Subject: Problem with PopupManager

http://ns.adobe.com/mxml/2009"; 
xmlns:s="library://ns.adobe.com/flex/spark">






RE: Apache Flex 4.10 Release Candidate

2013-07-31 Thread Maurice Amsellem
Thanks, I will raise a JIRA for that.

FYI, the installation went well with the latest install. All files downloaded 
properly.
I will now compile with the new SDK. 

Regards,

Maurice 

-Message d'origine-
De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash 
Muppirala
Envoyé : mercredi 31 juillet 2013 20:55
À : users@flex.apache.org
Objet : Re: Apache Flex 4.10 Release Candidate

On Wed, Jul 31, 2013 at 11:45 AM, Maurice Amsellem < 
maurice.amsel...@systar.com> wrote:

> Hi,
>
> " The key is that in your shared code, you need to make sure that you 
> use the runtime features from the lower swf-version.".
> Thanks for the advice. I guess that's what I am doing already,  the 
> features from AIR 3.X are in non-shared, mobile-only code.
>
> " Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version 
> that is different from FP 10.2.  We tied the AIR/FP versions with same 
> swf-versions together so that users don't get into trouble.".
>
> I understand, but this is not only for 3.8 and 10.2. All FP Versions 
> have a minimum AIR version, and you can't go beyond.  So what does "Yes it 
> does"
> mean?
>

Sorry, the "yes it does" was for your question: "Does this make sense to you?" 
:-)


> The check is fine, but it should be possible to manually override.
> So maybe in a future release.
>

We debated this and thought it would be better for users if we kept 
swf-versions straightforward.  Please log a bug about your request so that we 
dont forget it.


>
> Note: regarding the double installation, it's going to take too long, 
> so I will run the installer once to download FP 11.8 and AIR 3.8, and 
> then manually patch FP 10.2 on to it (flex-config.xml, and 
> framework/lib/player).
>

The installer takes care of patching all the config files (air-config.xml, 
airmobile-config.xml and flex-config.xml)  But it is up to you.  I am too lazy 
to do all this manually - which is my primary motivation for building the 
Installer ;-)


>
> Thanks again for the help,
>

You are most welcome!


>
> Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:27 À : 
> users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate 
> (ERROR)
>
> On Wed, Jul 31, 2013 at 11:17 AM, Maurice Amsellem < 
> maurice.amsel...@systar.com> wrote:
>
> > The installer does not allow me to select AIR 3.8 and FlashPlayer 
> > 10.2 at the same time  ( I guess because of dependencies).
> > However in my case, I am using AIR for mobile apps (and needs the 
> > latest
> > version) and FP for Flex browser app (and need 10.2), so there is no 
> > connection between the two.
> > Does this make sense to you?
> >
> > PS: I didn't even notice than the previous installation did it fact 
> > download AIR SDK 2.6 :-(
> >
> >
> Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that 
> is different from FP 10.2.  We tied the AIR/FP versions with same 
> swf-versions together so that users dont get into trouble.
>
> In your case, you can:
>
> 1.  Run the installer twice (one for each combination) 2.  Copy over 
> the correct versions of air-config.xml, airmobile-config.xml and 
> flex-config.xml into one master sdk folder.
> 3.  Copy over the required flash player swc directory ex.
> frameworks/libs/player/10.2 into the master sdk folder
>
> The key is that in your shared code, you need to make sure that you 
> use the runtime features from the lower swf-version.
>
> Hope that helps.
>
> Om
>
>
>
>
>
> >  Maurice
> >
> > -Message d'origine-
> > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:07 À :
> > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate
> > (ERROR)
> >
> > On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem < 
> > maurice.amsel...@systar.com> wrote:
> >
> > > Thanks for fixing so quickly.
> > >
> > > Since the installer log says " Impossible de nettoyer les 
> > > répertoires d'installation temporaires", which means "could not 
> > > delete temp install directories", do I have to delete something 
> > > manually before
> > starting over ?
> > >
> >
> > Yes, you may want to delete the 'temp' directory that was created 
> > during the installation before continuing to install in the same place.
> >
> > Thanks,
> > Om
> >
> >
> > >
> > > Maurice
> > >
> > > -Message d'origine-
> > > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> > > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:01 À :
> > > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release 
> > > Candidate
> > > (ERROR)
> > >
> > > On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem < 
> > > maurice.amsel...@systar.com> wrote:
> > >
> > > > I have tried installing latest Flex SDK 4.10 RC3 using SDK 
> > > > Installer
> > > > 2.6.0
> > > > (Windows) and the installation breaks in 

Re: Apache Flex 4.10 Release Candidate

2013-07-31 Thread OmPrakash Muppirala
On Wed, Jul 31, 2013 at 11:45 AM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> Hi,
>
> " The key is that in your shared code, you need to make sure that you use
> the runtime features from the lower swf-version.".
> Thanks for the advice. I guess that's what I am doing already,  the
> features from AIR 3.X are in non-shared, mobile-only code.
>
> " Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that is
> different from FP 10.2.  We tied the AIR/FP versions with same swf-versions
> together so that users don't get into trouble.".
>
> I understand, but this is not only for 3.8 and 10.2. All FP Versions have
> a minimum AIR version, and you can't go beyond.  So what does "Yes it does"
> mean?
>

Sorry, the "yes it does" was for your question: "Does this make sense to
you?" :-)


> The check is fine, but it should be possible to manually override.
> So maybe in a future release.
>

We debated this and thought it would be better for users if we kept
swf-versions straightforward.  Please log a bug about your request so that
we dont forget it.


>
> Note: regarding the double installation, it's going to take too long, so I
> will run the installer once to download FP 11.8 and AIR 3.8, and then
> manually patch FP 10.2 on to it (flex-config.xml, and framework/lib/player).
>

The installer takes care of patching all the config files (air-config.xml,
airmobile-config.xml and flex-config.xml)  But it is up to you.  I am too
lazy to do all this manually - which is my primary motivation for building
the Installer ;-)


>
> Thanks again for the help,
>

You are most welcome!


>
> Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash
> Muppirala
> Envoyé : mercredi 31 juillet 2013 20:27
> À : users@flex.apache.org
> Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)
>
> On Wed, Jul 31, 2013 at 11:17 AM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > The installer does not allow me to select AIR 3.8 and FlashPlayer 10.2
> > at the same time  ( I guess because of dependencies).
> > However in my case, I am using AIR for mobile apps (and needs the
> > latest
> > version) and FP for Flex browser app (and need 10.2), so there is no
> > connection between the two.
> > Does this make sense to you?
> >
> > PS: I didn't even notice than the previous installation did it fact
> > download AIR SDK 2.6 :-(
> >
> >
> Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that is
> different from FP 10.2.  We tied the AIR/FP versions with same swf-versions
> together so that users dont get into trouble.
>
> In your case, you can:
>
> 1.  Run the installer twice (one for each combination) 2.  Copy over the
> correct versions of air-config.xml, airmobile-config.xml and
> flex-config.xml into one master sdk folder.
> 3.  Copy over the required flash player swc directory ex.
> frameworks/libs/player/10.2 into the master sdk folder
>
> The key is that in your shared code, you need to make sure that you use
> the runtime features from the lower swf-version.
>
> Hope that helps.
>
> Om
>
>
>
>
>
> >  Maurice
> >
> > -Message d'origine-
> > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de
> > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:07 À :
> > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate
> > (ERROR)
> >
> > On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem <
> > maurice.amsel...@systar.com> wrote:
> >
> > > Thanks for fixing so quickly.
> > >
> > > Since the installer log says " Impossible de nettoyer les
> > > répertoires d'installation temporaires", which means "could not
> > > delete temp install directories", do I have to delete something
> > > manually before
> > starting over ?
> > >
> >
> > Yes, you may want to delete the 'temp' directory that was created
> > during the installation before continuing to install in the same place.
> >
> > Thanks,
> > Om
> >
> >
> > >
> > > Maurice
> > >
> > > -Message d'origine-
> > > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de
> > > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:01 À :
> > > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate
> > > (ERROR)
> > >
> > > On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem <
> > > maurice.amsel...@systar.com> wrote:
> > >
> > > > I have tried installing latest Flex SDK 4.10 RC3 using SDK
> > > > Installer
> > > > 2.6.0
> > > > (Windows) and the installation breaks in the middle.
> > > >
> > > > Installation options:
> > > > - SdK 4.10 RC3
> > > > - AIR 3.8
> > > > - FP 10.2
> > > > Language = French
> > > > OS = Windows 7
> > > >
> > > > Installation Error log below  (sorry, it's in French):
> > > >
> > > > I guess the error comes from the missing "/" in the player global
> URL.
> > > >
> > > > Version 2.6.0 (windows)
> > > > L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> > > > AIR version 2.6
> > > > 

RE: Apache Flex 4.10 Release Candidate

2013-07-31 Thread Maurice Amsellem
Hi,

" The key is that in your shared code, you need to make sure that you use the 
runtime features from the lower swf-version.".
Thanks for the advice. I guess that's what I am doing already,  the features 
from AIR 3.X are in non-shared, mobile-only code.

" Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that is 
different from FP 10.2.  We tied the AIR/FP versions with same swf-versions 
together so that users don't get into trouble.". 

I understand, but this is not only for 3.8 and 10.2. All FP Versions have a 
minimum AIR version, and you can't go beyond.  So what does "Yes it does" mean?
The check is fine, but it should be possible to manually override.
So maybe in a future release.

Note: regarding the double installation, it's going to take too long, so I will 
run the installer once to download FP 11.8 and AIR 3.8, and then manually patch 
FP 10.2 on to it (flex-config.xml, and framework/lib/player).

Thanks again for the help,

Maurice 

-Message d'origine-
De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash 
Muppirala
Envoyé : mercredi 31 juillet 2013 20:27
À : users@flex.apache.org
Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)

On Wed, Jul 31, 2013 at 11:17 AM, Maurice Amsellem < 
maurice.amsel...@systar.com> wrote:

> The installer does not allow me to select AIR 3.8 and FlashPlayer 10.2 
> at the same time  ( I guess because of dependencies).
> However in my case, I am using AIR for mobile apps (and needs the 
> latest
> version) and FP for Flex browser app (and need 10.2), so there is no 
> connection between the two.
> Does this make sense to you?
>
> PS: I didn't even notice than the previous installation did it fact 
> download AIR SDK 2.6 :-(
>
>
Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that is 
different from FP 10.2.  We tied the AIR/FP versions with same swf-versions 
together so that users dont get into trouble.

In your case, you can:

1.  Run the installer twice (one for each combination) 2.  Copy over the 
correct versions of air-config.xml, airmobile-config.xml and flex-config.xml 
into one master sdk folder.
3.  Copy over the required flash player swc directory ex.
frameworks/libs/player/10.2 into the master sdk folder

The key is that in your shared code, you need to make sure that you use the 
runtime features from the lower swf-version.

Hope that helps.

Om





>  Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:07 À : 
> users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate 
> (ERROR)
>
> On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem < 
> maurice.amsel...@systar.com> wrote:
>
> > Thanks for fixing so quickly.
> >
> > Since the installer log says " Impossible de nettoyer les 
> > répertoires d'installation temporaires", which means "could not 
> > delete temp install directories", do I have to delete something 
> > manually before
> starting over ?
> >
>
> Yes, you may want to delete the 'temp' directory that was created 
> during the installation before continuing to install in the same place.
>
> Thanks,
> Om
>
>
> >
> > Maurice
> >
> > -Message d'origine-
> > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:01 À :
> > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate
> > (ERROR)
> >
> > On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem < 
> > maurice.amsel...@systar.com> wrote:
> >
> > > I have tried installing latest Flex SDK 4.10 RC3 using SDK 
> > > Installer
> > > 2.6.0
> > > (Windows) and the installation breaks in the middle.
> > >
> > > Installation options:
> > > - SdK 4.10 RC3
> > > - AIR 3.8
> > > - FP 10.2
> > > Language = French
> > > OS = Windows 7
> > >
> > > Installation Error log below  (sorry, it's in French):
> > >
> > > I guess the error comes from the missing "/" in the player global URL.
> > >
> > > Version 2.6.0 (windows)
> > > L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> > > AIR version 2.6
> > > Flash Player version 10.2
> > > Creation du dossier racine d'Apache Flex Création du répertoire 
> > > temporaire Téléchargement d'Apache Flex SDK à partir de:
> > > https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binarie
> > > s/ ap ache-flex-sdk-4.10.0-bin.zip Vérification de la Signature 
> > > Apache Flex SDK MD5 La Signature MD5 des fichiers téléchargés pour 
> > > le SDK Apache Flex correspond à la référence. Le fichier est 
> > > valide.
> > > Décompression: C:\Program Files (x86)\Apache 
> > > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > > Décompression terminée:C:\Program Files (x86)\Apache 
> > > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > > Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> > > http://airdownload.adobe.com/air/win/d

Re: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread OmPrakash Muppirala
On Wed, Jul 31, 2013 at 11:17 AM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> The installer does not allow me to select AIR 3.8 and FlashPlayer 10.2 at
> the same time  ( I guess because of dependencies).
> However in my case, I am using AIR for mobile apps (and needs the latest
> version) and FP for Flex browser app (and need 10.2), so there is no
> connection between the two.
> Does this make sense to you?
>
> PS: I didn't even notice than the previous installation did it fact
> download AIR SDK 2.6 :-(
>
>
Yes, it does.  Unfortunately, the AIR 3.8 requires a swf-version that is
different from FP 10.2.  We tied the AIR/FP versions with same swf-versions
together so that users dont get into trouble.

In your case, you can:

1.  Run the installer twice (one for each combination)
2.  Copy over the correct versions of air-config.xml, airmobile-config.xml
and flex-config.xml into one master sdk folder.
3.  Copy over the required flash player swc directory ex.
frameworks/libs/player/10.2 into the master sdk folder

The key is that in your shared code, you need to make sure that you use the
runtime features from the lower swf-version.

Hope that helps.

Om





>  Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash
> Muppirala
> Envoyé : mercredi 31 juillet 2013 20:07
> À : users@flex.apache.org
> Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)
>
> On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > Thanks for fixing so quickly.
> >
> > Since the installer log says " Impossible de nettoyer les répertoires
> > d'installation temporaires", which means "could not delete temp
> > install directories", do I have to delete something manually before
> starting over ?
> >
>
> Yes, you may want to delete the 'temp' directory that was created during
> the installation before continuing to install in the same place.
>
> Thanks,
> Om
>
>
> >
> > Maurice
> >
> > -Message d'origine-
> > De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de
> > OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:01 À :
> > users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate
> > (ERROR)
> >
> > On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem <
> > maurice.amsel...@systar.com> wrote:
> >
> > > I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer
> > > 2.6.0
> > > (Windows) and the installation breaks in the middle.
> > >
> > > Installation options:
> > > - SdK 4.10 RC3
> > > - AIR 3.8
> > > - FP 10.2
> > > Language = French
> > > OS = Windows 7
> > >
> > > Installation Error log below  (sorry, it's in French):
> > >
> > > I guess the error comes from the missing "/" in the player global URL.
> > >
> > > Version 2.6.0 (windows)
> > > L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> > > AIR version 2.6
> > > Flash Player version 10.2
> > > Creation du dossier racine d'Apache Flex Création du répertoire
> > > temporaire Téléchargement d'Apache Flex SDK à partir de:
> > > https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/
> > > ap ache-flex-sdk-4.10.0-bin.zip Vérification de la Signature Apache
> > > Flex SDK MD5 La Signature MD5 des fichiers téléchargés pour le SDK
> > > Apache Flex correspond à la référence. Le fichier est valide.
> > > Décompression: C:\Program Files (x86)\Apache
> > > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > > Décompression terminée:C:\Program Files (x86)\Apache
> > > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > > Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> > > http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
> > > Décompression: C:\Program Files (x86)\Apache
> > > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > > Décompression terminée:C:\Program Files (x86)\Apache
> > > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > > Installation d'Adobe Flash Player playerglobal.swc à partir de:
> > > http://download.macromedia.com/get/flashplayer/installers/archive/pl
> > > ay erglobalplayerglobal10_2.swc Impossible de télécharger Flash
> > > Player swc Impossible de nettoyer les répertoires d'installation
> > > temporaires Installation interrompue
> > >
> > > Maurice
> > >
> >
> > Maurice,
> >
> > Thanks for catching that!  I have fixed the config file, it should
> > work fine now.  Please try again and verify.  You will need to exit
> > the installer and launch it again for the updated config file to load.
> >
> > Regards,
> > Om
> >
> >
> >
> > >
> > > -Message d'origine-
> > > De : Krüger, Olaf [mailto:okrue...@edscha.com] Envoyé : lundi 29
> > > juillet 2013 10:30 À : users@flex.apache.org Objet : AW: Apache Flex
> > > 4.10 Release Candidate
> > >
> > >
> > > >RC2 is out (it has a couple of minor issues but will give you a
> > > >working
> > > SDK) , but you might want to wait for RC3.
> > > >https://dist

RE: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread Maurice Amsellem
The installer does not allow me to select AIR 3.8 and FlashPlayer 10.2 at the 
same time  ( I guess because of dependencies).
However in my case, I am using AIR for mobile apps (and needs the latest 
version) and FP for Flex browser app (and need 10.2), so there is no connection 
between the two.
Does this make sense to you?

PS: I didn't even notice than the previous installation did it fact download 
AIR SDK 2.6 :-(

Maurice 

-Message d'origine-
De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash 
Muppirala
Envoyé : mercredi 31 juillet 2013 20:07
À : users@flex.apache.org
Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)

On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem < 
maurice.amsel...@systar.com> wrote:

> Thanks for fixing so quickly.
>
> Since the installer log says " Impossible de nettoyer les répertoires 
> d'installation temporaires", which means "could not delete temp 
> install directories", do I have to delete something manually before starting 
> over ?
>

Yes, you may want to delete the 'temp' directory that was created during the 
installation before continuing to install in the same place.

Thanks,
Om


>
> Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de 
> OmPrakash Muppirala Envoyé : mercredi 31 juillet 2013 20:01 À : 
> users@flex.apache.org Objet : Re: Apache Flex 4.10 Release Candidate 
> (ERROR)
>
> On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem < 
> maurice.amsel...@systar.com> wrote:
>
> > I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer
> > 2.6.0
> > (Windows) and the installation breaks in the middle.
> >
> > Installation options:
> > - SdK 4.10 RC3
> > - AIR 3.8
> > - FP 10.2
> > Language = French
> > OS = Windows 7
> >
> > Installation Error log below  (sorry, it's in French):
> >
> > I guess the error comes from the missing "/" in the player global URL.
> >
> > Version 2.6.0 (windows)
> > L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> > AIR version 2.6
> > Flash Player version 10.2
> > Creation du dossier racine d'Apache Flex Création du répertoire 
> > temporaire Téléchargement d'Apache Flex SDK à partir de:
> > https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/
> > ap ache-flex-sdk-4.10.0-bin.zip Vérification de la Signature Apache 
> > Flex SDK MD5 La Signature MD5 des fichiers téléchargés pour le SDK 
> > Apache Flex correspond à la référence. Le fichier est valide.
> > Décompression: C:\Program Files (x86)\Apache 
> > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > Décompression terminée:C:\Program Files (x86)\Apache 
> > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> > http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
> > Décompression: C:\Program Files (x86)\Apache 
> > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > Décompression terminée:C:\Program Files (x86)\Apache 
> > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > Installation d'Adobe Flash Player playerglobal.swc à partir de:
> > http://download.macromedia.com/get/flashplayer/installers/archive/pl
> > ay erglobalplayerglobal10_2.swc Impossible de télécharger Flash 
> > Player swc Impossible de nettoyer les répertoires d'installation 
> > temporaires Installation interrompue
> >
> > Maurice
> >
>
> Maurice,
>
> Thanks for catching that!  I have fixed the config file, it should 
> work fine now.  Please try again and verify.  You will need to exit 
> the installer and launch it again for the updated config file to load.
>
> Regards,
> Om
>
>
>
> >
> > -Message d'origine-
> > De : Krüger, Olaf [mailto:okrue...@edscha.com] Envoyé : lundi 29 
> > juillet 2013 10:30 À : users@flex.apache.org Objet : AW: Apache Flex
> > 4.10 Release Candidate
> >
> >
> > >RC2 is out (it has a couple of minor issues but will give you a 
> > >working
> > SDK) , but you might want to wait for RC3.
> > >https://dist.apache.org/repos/dist/dev/flex/installer/2.6/rc2/
> >
> > Do you mean RC3 of the installer or RC3 of the SDK?
> > Cause I've just started the installer from the link above and it 
> > already provides the SDK 4.10.0 RC3 !?
> >
> > Many thanks!
> > Olaf
> >
> >
> > 
> >
> > Edscha Holding GmbH
> > Sitz der Gesellschaft: Remscheid
> > Registergericht: Wuppertal, HRB 22889
> > Geschäftsführung: Francisco J. Riberas Mera, Juan Maria Riberas 
> > Mera, Francisco López Peña, David Vázquez Pascual, Torsten Greiner, 
> > Mario Eikelmann, Hans-Peter Schulz und Volker Weiss
> >
> > Vertretungsberechtigt sind nur Geschäftsführer und schriftlich 
> > Bevollmächtigte.
> >
> > Solely Managing Directors or employees with a written proxy have got 
> > power of representation.
> >
> > Der Inhalt dieser E-Mail einschließlich etwaiger beigefügter Dateien 
> > ist vertraulich und nur für den Empfänger bestimmt. Sollte

Re: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread OmPrakash Muppirala
On Wed, Jul 31, 2013 at 11:05 AM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> Thanks for fixing so quickly.
>
> Since the installer log says " Impossible de nettoyer les répertoires
> d'installation temporaires", which means "could not delete temp install
> directories", do I have to delete something manually before starting over ?
>

Yes, you may want to delete the 'temp' directory that was created during
the installation before continuing to install in the same place.

Thanks,
Om


>
> Maurice
>
> -Message d'origine-
> De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash
> Muppirala
> Envoyé : mercredi 31 juillet 2013 20:01
> À : users@flex.apache.org
> Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)
>
> On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer
> > 2.6.0
> > (Windows) and the installation breaks in the middle.
> >
> > Installation options:
> > - SdK 4.10 RC3
> > - AIR 3.8
> > - FP 10.2
> > Language = French
> > OS = Windows 7
> >
> > Installation Error log below  (sorry, it's in French):
> >
> > I guess the error comes from the missing "/" in the player global URL.
> >
> > Version 2.6.0 (windows)
> > L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> > AIR version 2.6
> > Flash Player version 10.2
> > Creation du dossier racine d'Apache Flex Création du répertoire
> > temporaire Téléchargement d'Apache Flex SDK à partir de:
> > https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/ap
> > ache-flex-sdk-4.10.0-bin.zip Vérification de la Signature Apache Flex
> > SDK MD5 La Signature MD5 des fichiers téléchargés pour le SDK Apache
> > Flex correspond à la référence. Le fichier est valide.
> > Décompression: C:\Program Files (x86)\Apache
> > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > Décompression terminée:C:\Program Files (x86)\Apache
> > Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> > Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> > http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
> > Décompression: C:\Program Files (x86)\Apache
> > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > Décompression terminée:C:\Program Files (x86)\Apache
> > Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> > Installation d'Adobe Flash Player playerglobal.swc à partir de:
> > http://download.macromedia.com/get/flashplayer/installers/archive/play
> > erglobalplayerglobal10_2.swc Impossible de télécharger Flash Player
> > swc Impossible de nettoyer les répertoires d'installation temporaires
> > Installation interrompue
> >
> > Maurice
> >
>
> Maurice,
>
> Thanks for catching that!  I have fixed the config file, it should work
> fine now.  Please try again and verify.  You will need to exit the
> installer and launch it again for the updated config file to load.
>
> Regards,
> Om
>
>
>
> >
> > -Message d'origine-
> > De : Krüger, Olaf [mailto:okrue...@edscha.com] Envoyé : lundi 29
> > juillet 2013 10:30 À : users@flex.apache.org Objet : AW: Apache Flex
> > 4.10 Release Candidate
> >
> >
> > >RC2 is out (it has a couple of minor issues but will give you a
> > >working
> > SDK) , but you might want to wait for RC3.
> > >https://dist.apache.org/repos/dist/dev/flex/installer/2.6/rc2/
> >
> > Do you mean RC3 of the installer or RC3 of the SDK?
> > Cause I've just started the installer from the link above and it
> > already provides the SDK 4.10.0 RC3 !?
> >
> > Many thanks!
> > Olaf
> >
> >
> > 
> >
> > Edscha Holding GmbH
> > Sitz der Gesellschaft: Remscheid
> > Registergericht: Wuppertal, HRB 22889
> > Geschäftsführung: Francisco J. Riberas Mera, Juan Maria Riberas Mera,
> > Francisco López Peña, David Vázquez Pascual, Torsten Greiner, Mario
> > Eikelmann, Hans-Peter Schulz und Volker Weiss
> >
> > Vertretungsberechtigt sind nur Geschäftsführer und schriftlich
> > Bevollmächtigte.
> >
> > Solely Managing Directors or employees with a written proxy have got
> > power of representation.
> >
> > Der Inhalt dieser E-Mail einschließlich etwaiger beigefügter Dateien
> > ist vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht
> > der bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung,
> > Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte
> > informieren Sie in diesem Fall unverzüglich den Absender und löschen
> > Sie die E-Mail einschließlich etwaiger beigefügter Dateien von Ihrem
> System.
> > Vielen Dank.
> >
> > The contents of this e-mail including any attachments are confidential
> > and may be legally privileged. If you are not the intended recipient,
> > any disclosure, copying, distribution or use of its contents is
> > strictly prohibited, and you should please notify the sender
> > immediately and then delete this e-mail including any attachments from
> y

RE: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread Maurice Amsellem
Thanks for fixing so quickly.

Since the installer log says " Impossible de nettoyer les répertoires 
d'installation temporaires", which means "could not delete temp install 
directories", do I have to delete something manually before starting over ? 

Maurice 

-Message d'origine-
De : omup...@gmail.com [mailto:omup...@gmail.com] De la part de OmPrakash 
Muppirala
Envoyé : mercredi 31 juillet 2013 20:01
À : users@flex.apache.org
Objet : Re: Apache Flex 4.10 Release Candidate (ERROR)

On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem < 
maurice.amsel...@systar.com> wrote:

> I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer 
> 2.6.0
> (Windows) and the installation breaks in the middle.
>
> Installation options:
> - SdK 4.10 RC3
> - AIR 3.8
> - FP 10.2
> Language = French
> OS = Windows 7
>
> Installation Error log below  (sorry, it's in French):
>
> I guess the error comes from the missing "/" in the player global URL.
>
> Version 2.6.0 (windows)
> L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> AIR version 2.6
> Flash Player version 10.2
> Creation du dossier racine d'Apache Flex Création du répertoire 
> temporaire Téléchargement d'Apache Flex SDK à partir de:
> https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/ap
> ache-flex-sdk-4.10.0-bin.zip Vérification de la Signature Apache Flex 
> SDK MD5 La Signature MD5 des fichiers téléchargés pour le SDK Apache 
> Flex correspond à la référence. Le fichier est valide.
> Décompression: C:\Program Files (x86)\Apache 
> Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> Décompression terminée:C:\Program Files (x86)\Apache 
> Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
> Décompression: C:\Program Files (x86)\Apache 
> Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> Décompression terminée:C:\Program Files (x86)\Apache 
> Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> Installation d'Adobe Flash Player playerglobal.swc à partir de:
> http://download.macromedia.com/get/flashplayer/installers/archive/play
> erglobalplayerglobal10_2.swc Impossible de télécharger Flash Player 
> swc Impossible de nettoyer les répertoires d'installation temporaires 
> Installation interrompue
>
> Maurice
>

Maurice,

Thanks for catching that!  I have fixed the config file, it should work fine 
now.  Please try again and verify.  You will need to exit the installer and 
launch it again for the updated config file to load.

Regards,
Om



>
> -Message d'origine-
> De : Krüger, Olaf [mailto:okrue...@edscha.com] Envoyé : lundi 29 
> juillet 2013 10:30 À : users@flex.apache.org Objet : AW: Apache Flex 
> 4.10 Release Candidate
>
>
> >RC2 is out (it has a couple of minor issues but will give you a 
> >working
> SDK) , but you might want to wait for RC3.
> >https://dist.apache.org/repos/dist/dev/flex/installer/2.6/rc2/
>
> Do you mean RC3 of the installer or RC3 of the SDK?
> Cause I've just started the installer from the link above and it 
> already provides the SDK 4.10.0 RC3 !?
>
> Many thanks!
> Olaf
>
>
> 
>
> Edscha Holding GmbH
> Sitz der Gesellschaft: Remscheid
> Registergericht: Wuppertal, HRB 22889
> Geschäftsführung: Francisco J. Riberas Mera, Juan Maria Riberas Mera, 
> Francisco López Peña, David Vázquez Pascual, Torsten Greiner, Mario 
> Eikelmann, Hans-Peter Schulz und Volker Weiss
>
> Vertretungsberechtigt sind nur Geschäftsführer und schriftlich 
> Bevollmächtigte.
>
> Solely Managing Directors or employees with a written proxy have got 
> power of representation.
>
> Der Inhalt dieser E-Mail einschließlich etwaiger beigefügter Dateien 
> ist vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht 
> der bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung, 
> Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte 
> informieren Sie in diesem Fall unverzüglich den Absender und löschen 
> Sie die E-Mail einschließlich etwaiger beigefügter Dateien von Ihrem System.
> Vielen Dank.
>
> The contents of this e-mail including any attachments are confidential 
> and may be legally privileged. If you are not the intended recipient, 
> any disclosure, copying, distribution or use of its contents is 
> strictly prohibited, and you should please notify the sender 
> immediately and then delete this e-mail including any attachments from your 
> system. Thank you.
>


Re: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread OmPrakash Muppirala
On Wed, Jul 31, 2013 at 10:50 AM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer 2.6.0
> (Windows) and the installation breaks in the middle.
>
> Installation options:
> - SdK 4.10 RC3
> - AIR 3.8
> - FP 10.2
> Language = French
> OS = Windows 7
>
> Installation Error log below  (sorry, it's in French):
>
> I guess the error comes from the missing "/" in the player global URL.
>
> Version 2.6.0 (windows)
> L'URL de téléchargement du SDK à été récupéré à partir du CGI.
> AIR version 2.6
> Flash Player version 10.2
> Creation du dossier racine d'Apache Flex
> Création du répertoire temporaire
> Téléchargement d'Apache Flex SDK à partir de:
> https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/apache-flex-sdk-4.10.0-bin.zip
> Vérification de la Signature Apache Flex SDK MD5
> La Signature MD5 des fichiers téléchargés pour le SDK Apache Flex
> correspond à la référence. Le fichier est valide.
> Décompression: C:\Program Files (x86)\Apache
> Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> Décompression terminée:C:\Program Files (x86)\Apache
> Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
> Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de:
> http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
> Décompression: C:\Program Files (x86)\Apache
> Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> Décompression terminée:C:\Program Files (x86)\Apache
> Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
> Installation d'Adobe Flash Player playerglobal.swc à partir de:
> http://download.macromedia.com/get/flashplayer/installers/archive/playerglobalplayerglobal10_2.swc
> Impossible de télécharger Flash Player swc
> Impossible de nettoyer les répertoires d'installation temporaires
> Installation interrompue
>
> Maurice
>

Maurice,

Thanks for catching that!  I have fixed the config file, it should work
fine now.  Please try again and verify.  You will need to exit the
installer and launch it again for the updated config file to load.

Regards,
Om



>
> -Message d'origine-
> De : Krüger, Olaf [mailto:okrue...@edscha.com]
> Envoyé : lundi 29 juillet 2013 10:30
> À : users@flex.apache.org
> Objet : AW: Apache Flex 4.10 Release Candidate
>
>
> >RC2 is out (it has a couple of minor issues but will give you a working
> SDK) , but you might want to wait for RC3.
> >https://dist.apache.org/repos/dist/dev/flex/installer/2.6/rc2/
>
> Do you mean RC3 of the installer or RC3 of the SDK?
> Cause I've just started the installer from the link above and it already
> provides the SDK 4.10.0 RC3 !?
>
> Many thanks!
> Olaf
>
>
> 
>
> Edscha Holding GmbH
> Sitz der Gesellschaft: Remscheid
> Registergericht: Wuppertal, HRB 22889
> Geschäftsführung: Francisco J. Riberas Mera, Juan Maria Riberas Mera,
> Francisco López Peña, David Vázquez Pascual, Torsten Greiner, Mario
> Eikelmann, Hans-Peter Schulz und Volker Weiss
>
> Vertretungsberechtigt sind nur Geschäftsführer und schriftlich
> Bevollmächtigte.
>
> Solely Managing Directors or employees with a written proxy have got power
> of representation.
>
> Der Inhalt dieser E-Mail einschließlich etwaiger beigefügter Dateien ist
> vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der
> bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung,
> Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte
> informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie
> die E-Mail einschließlich etwaiger beigefügter Dateien von Ihrem System.
> Vielen Dank.
>
> The contents of this e-mail including any attachments are confidential and
> may be legally privileged. If you are not the intended recipient, any
> disclosure, copying, distribution or use of its contents is strictly
> prohibited, and you should please notify the sender immediately and then
> delete this e-mail including any attachments from your system. Thank you.
>


RE: Apache Flex 4.10 Release Candidate (ERROR)

2013-07-31 Thread Maurice Amsellem
I have tried installing latest Flex SDK 4.10 RC3 using SDK Installer 2.6.0 
(Windows) and the installation breaks in the middle.

Installation options:
- SdK 4.10 RC3
- AIR 3.8
- FP 10.2
Language = French
OS = Windows 7

Installation Error log below  (sorry, it's in French):

I guess the error comes from the missing "/" in the player global URL.

Version 2.6.0 (windows)
L'URL de téléchargement du SDK à été récupéré à partir du CGI.
AIR version 2.6
Flash Player version 10.2
Creation du dossier racine d'Apache Flex
Création du répertoire temporaire
Téléchargement d'Apache Flex SDK à partir de: 
https://dist.apache.org/repos/dist/dev/flex/sdk/4.10.0/rc3/binaries/apache-flex-sdk-4.10.0-bin.zip
Vérification de la Signature Apache Flex SDK MD5
La Signature MD5 des fichiers téléchargés pour le SDK Apache Flex correspond à 
la référence. Le fichier est valide.
Décompression: C:\Program Files (x86)\Apache 
Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
Décompression terminée:C:\Program Files (x86)\Apache 
Flex\Apache_Flex_SDK_410_RC3\temp\apache-flex-sdk-4.10.0-bin.zip
Téléchargement d'Adobe AIR Runtime Kit pour Windows à partir de: 
http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRSDK.zip
Décompression: C:\Program Files (x86)\Apache 
Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
Décompression terminée:C:\Program Files (x86)\Apache 
Flex\Apache_Flex_SDK_410_RC3\temp\AdobeAIRSDK.zip
Installation d'Adobe Flash Player playerglobal.swc à partir de: 
http://download.macromedia.com/get/flashplayer/installers/archive/playerglobalplayerglobal10_2.swc
Impossible de télécharger Flash Player swc
Impossible de nettoyer les répertoires d'installation temporaires
Installation interrompue

Maurice 

-Message d'origine-
De : Krüger, Olaf [mailto:okrue...@edscha.com] 
Envoyé : lundi 29 juillet 2013 10:30
À : users@flex.apache.org
Objet : AW: Apache Flex 4.10 Release Candidate


>RC2 is out (it has a couple of minor issues but will give you a working SDK) , 
>but you might want to wait for RC3.
>https://dist.apache.org/repos/dist/dev/flex/installer/2.6/rc2/

Do you mean RC3 of the installer or RC3 of the SDK?
Cause I've just started the installer from the link above and it already 
provides the SDK 4.10.0 RC3 !?

Many thanks!
Olaf




Edscha Holding GmbH
Sitz der Gesellschaft: Remscheid
Registergericht: Wuppertal, HRB 22889
Geschäftsführung: Francisco J. Riberas Mera, Juan Maria Riberas Mera, Francisco 
López Peña, David Vázquez Pascual, Torsten Greiner, Mario Eikelmann, Hans-Peter 
Schulz und Volker Weiss

Vertretungsberechtigt sind nur Geschäftsführer und schriftlich Bevollmächtigte.

Solely Managing Directors or employees with a written proxy have got power of 
representation.

Der Inhalt dieser E-Mail einschließlich etwaiger beigefügter Dateien ist 
vertraulich und nur für den Empfänger bestimmt. Sollten Sie nicht der 
bestimmungsgemäße Empfänger sein, ist Ihnen jegliche Offenlegung, 
Vervielfältigung, Weitergabe oder Nutzung des Inhalts untersagt. Bitte 
informieren Sie in diesem Fall unverzüglich den Absender und löschen Sie die 
E-Mail einschließlich etwaiger beigefügter Dateien von Ihrem System. Vielen 
Dank.

The contents of this e-mail including any attachments are confidential and may 
be legally privileged. If you are not the intended recipient, any disclosure, 
copying, distribution or use of its contents is strictly prohibited, and you 
should please notify the sender immediately and then delete this e-mail 
including any attachments from your system. Thank you.


Problem with PopupManager

2013-07-31 Thread Maurice Amsellem
Hi,
I am using PopupManager to display and center a popup around a button.
However, when the button is close to the border of the application, the popup  
is clipped .
The various comments in PopupManagerImpl.as centerPopUp() suggest  that 
off-screen clipping is somehow handled , but it does not seem to have any 
effect in that case.

Note: PopupAnchor does the clipping correctly, but I can't use it, as I am 
using Parsley / Cairngorm PopupWrapper.

Any idea ?

Sample code below:
http://ns.adobe.com/mxml/2009"; 
xmlns:s="library://ns.adobe.com/flex/spark">





Maurice Amsellem
SYSTAR R&D - BusinessBridgeFX
[Description : Telephone:] +33(0)1 49 11 45 62  /  [Description : Mobile 
Phone:] +33(0)6 07 48 95 43



Re: Rules engine

2013-07-31 Thread mark goldin
An interactive design, validation, and output into formats ready for
processing by other parts of Enterprise system.


On Wed, Jul 31, 2013 at 10:58 AM, JP Bader  wrote:

> What are you looking to achieve from a "Rules Engine"?
>
>
> On Wed, Jul 31, 2013 at 11:41 AM, mark goldin 
> wrote:
>
> > I haven't looked into code. Just wanted to run it first. I am referencing
> > C:\Program Files (x86)\Adobe\Adobe Flash Builder
> >
> >
> 4.6\eclipse\plugins\com.adobe.flexbuilder.flexunit_4.6.1.335153\flexunitframework\locale\version4locale
> > in your project.
> >
> >
> > On Wed, Jul 31, 2013 at 10:36 AM, Justin Mclean <
> jus...@classsoftware.com
> > >wrote:
> >
> > > Hi,
> > >
> > > > Getting error:
> > > > 1046: Type was not found or was not a compile-time constant:
> > > > FlexUnitTestRunnerUI. FlexUnitApplication.mxml
> > > > /ActionScript-State-Machine-master/src line 36 Flex Problem
> > >
> > > Sounds like you don't have flex unit correct set up for the project?
> > >
> > > Is the code the sort of thing you were looking for? Happy to answer any
> > > question about it. I've used in several production project so can
> confirm
> > > it does the job.
> > >
> > > Justin
> >
>
>
>
> --
> JP Bader
> Principal
> Zavteq, Inc.
> @lordB8r | j...@zavteq.com
> 608.692.2468
>


Re: Rules engine

2013-07-31 Thread JP Bader
What are you looking to achieve from a "Rules Engine"?


On Wed, Jul 31, 2013 at 11:41 AM, mark goldin  wrote:

> I haven't looked into code. Just wanted to run it first. I am referencing
> C:\Program Files (x86)\Adobe\Adobe Flash Builder
>
> 4.6\eclipse\plugins\com.adobe.flexbuilder.flexunit_4.6.1.335153\flexunitframework\locale\version4locale
> in your project.
>
>
> On Wed, Jul 31, 2013 at 10:36 AM, Justin Mclean  >wrote:
>
> > Hi,
> >
> > > Getting error:
> > > 1046: Type was not found or was not a compile-time constant:
> > > FlexUnitTestRunnerUI. FlexUnitApplication.mxml
> > > /ActionScript-State-Machine-master/src line 36 Flex Problem
> >
> > Sounds like you don't have flex unit correct set up for the project?
> >
> > Is the code the sort of thing you were looking for? Happy to answer any
> > question about it. I've used in several production project so can confirm
> > it does the job.
> >
> > Justin
>



-- 
JP Bader
Principal
Zavteq, Inc.
@lordB8r | j...@zavteq.com
608.692.2468


Re: Rules engine

2013-07-31 Thread mark goldin
I haven't looked into code. Just wanted to run it first. I am referencing
C:\Program Files (x86)\Adobe\Adobe Flash Builder
4.6\eclipse\plugins\com.adobe.flexbuilder.flexunit_4.6.1.335153\flexunitframework\locale\version4locale
in your project.


On Wed, Jul 31, 2013 at 10:36 AM, Justin Mclean wrote:

> Hi,
>
> > Getting error:
> > 1046: Type was not found or was not a compile-time constant:
> > FlexUnitTestRunnerUI. FlexUnitApplication.mxml
> > /ActionScript-State-Machine-master/src line 36 Flex Problem
>
> Sounds like you don't have flex unit correct set up for the project?
>
> Is the code the sort of thing you were looking for? Happy to answer any
> question about it. I've used in several production project so can confirm
> it does the job.
>
> Justin


Re: Rules engine

2013-07-31 Thread Justin Mclean
Hi,

> Getting error:
> 1046: Type was not found or was not a compile-time constant:
> FlexUnitTestRunnerUI. FlexUnitApplication.mxml
> /ActionScript-State-Machine-master/src line 36 Flex Problem

Sounds like you don't have flex unit correct set up for the project?

Is the code the sort of thing you were looking for? Happy to answer any 
question about it. I've used in several production project so can confirm it 
does the job.

Justin

Re: Rules engine

2013-07-31 Thread mark goldin
Getting error:
1046: Type was not found or was not a compile-time constant:
FlexUnitTestRunnerUI. FlexUnitApplication.mxml
/ActionScript-State-Machine-master/src line 36 Flex Problem



On Wed, Jul 31, 2013 at 9:20 AM, Justin Mclean wrote:

> Hi,
>
> Not  100% sure what you want but here's a very flexible state machine I
> wrote a while ago.
>
> https://github.com/justinmclean/ActionScript-State-Machine
>
> Thanks,
> Justin


Re: Rules engine

2013-07-31 Thread Justin Mclean
Hi,

Not  100% sure what you want but here's a very flexible state machine I wrote a 
while ago.

https://github.com/justinmclean/ActionScript-State-Machine

Thanks,
Justin

Re: Rules engine

2013-07-31 Thread mark goldin
Looking for an interactive Rules engine Designer written in Flex.


On Wed, Jul 31, 2013 at 8:41 AM, Carlos Velasco <
carlos.velasco.bla...@gmail.com> wrote:

> Could you elaborate a bit?
>
>
> 2013/7/31 mark goldin 
>
> > Anyone can point to such a component or a complete program written in
> > Flash/Flex?
> >
> > Thanks
> >
>


Re: Rules engine

2013-07-31 Thread Carlos Velasco
Could you elaborate a bit?


2013/7/31 mark goldin 

> Anyone can point to such a component or a complete program written in
> Flash/Flex?
>
> Thanks
>


Rules engine

2013-07-31 Thread mark goldin
Anyone can point to such a component or a complete program written in
Flash/Flex?

Thanks