[jira] [Updated] (FLEX-33426) SDK Installer UI/UX: Checkbox Improvement Request

2013-03-10 Thread Sean Novak (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sean Novak updated FLEX-33426:
--

Attachment: flex-install-disabled.jpg

 SDK Installer UI/UX: Checkbox Improvement Request
 -

 Key: FLEX-33426
 URL: https://issues.apache.org/jira/browse/FLEX-33426
 Project: Apache Flex
  Issue Type: Improvement
  Components: Installer
Affects Versions: Adobe Flex SDK 2.0.1 (Release)
 Environment: OSX 10.8.2
Reporter: Sean Novak
Priority: Minor
 Attachments: flex-install-disabled.jpg


 During the install process, specifically where you accept the license 
 agreements; I completely missed the fact that the red boxes are checkboxes.  
 I'm an dolt for missing this.  However, there are many of us on the planet.  
 And, I humbly request that UX caters to us morons.  
 Some suggestions:
 * frame the checkboxes with the tell tale embossed border.
 * Simply add some text to: Check the checkboxes.   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33426) SDK Installer UI/UX: Checkbox Improvement Request

2013-03-10 Thread Philippe Mouawad (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598261#comment-13598261
 ] 

Philippe Mouawad commented on FLEX-33426:
-

I second that as I had to scratch my head for 5 minutes to find what to do.
I am under Mac OSX 10.6.8

 SDK Installer UI/UX: Checkbox Improvement Request
 -

 Key: FLEX-33426
 URL: https://issues.apache.org/jira/browse/FLEX-33426
 Project: Apache Flex
  Issue Type: Improvement
  Components: Installer
Affects Versions: Adobe Flex SDK 2.0.1 (Release)
 Environment: OSX 10.8.2
Reporter: Sean Novak
Priority: Minor
 Attachments: flex-install-disabled.jpg


 During the install process, specifically where you accept the license 
 agreements; I completely missed the fact that the red boxes are checkboxes.  
 I'm an dolt for missing this.  However, there are many of us on the planet.  
 And, I humbly request that UX caters to us morons.  
 Some suggestions:
 * frame the checkboxes with the tell tale embossed border.
 * Simply add some text to: Check the checkboxes.   

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: Spark Accordion

2013-03-10 Thread Cyrill Zadra
 I guess it should be 2 first, then 1 if you want to move them to the spark
 lib otherwize I guess, it's preferable to move them to the experimental lib
 as we did with the Bogdan's components, btw, there's also a thread A
 guideline for adding new components to the Apache Flex SDK? where we can
 talk about it, what do you think ?


Yes sorry.. first 2 then 1 ;-).


Re: Apache Flex SDK Installer - 2.5 release?

2013-03-10 Thread Justin Mclean
HI,

 I would like to add the SDK version number that is going to be downloaded 
 somewhere, probably in the title, actually, the user doesn't know which SDK 
 is going to download, what do you think ?
Good idea I think. Users can currently see the version number in the static 
message log file and on the stasis line, but unless you use the install badge 
from a web page it can be unclear what version is being installed.

Thanks,
Justin

Re: Apache Flex SDK Installer - 2.5 release?

2013-03-10 Thread Justin Mclean
Hi,

 True, the point is, using the installer, before the installation, you don't 
 know the version, you need to install it first to know, that's my point.
 Anyway, it's not difficult to add the version in xml and get it back into the 
 app.
Take a look at how the badge installer does it - the work has probably already 
been done.

Justin

Re: Apache Flex SDK Installer - 2.5 release?

2013-03-10 Thread Om
On Mar 10, 2013 2:23 PM, Justin Mclean jus...@classsoftware.com wrote:

 Hi,

  True, the point is, using the installer, before the installation, you
don't know the version, you need to install it first to know, that's my
point.
  Anyway, it's not difficult to add the version in xml and get it back
into the app.
 Take a look at how the badge installer does it - the work has probably
already been done.

 Justin

Yes, I was going to suggest that as well.

Will respond to Fred's other questions soon.

Thanks,
Om


[jira] [Resolved] (FLEX-33405) TitleWindow with TextInput throws exception on close using mobile skins

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33405?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33405.
--

   Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0

Fixed in check in 1454924. Related Mustella tests TitleWindow and PopupManager 
pass.

 TitleWindow with TextInput throws exception on close using mobile skins
 ---

 Key: FLEX-33405
 URL: https://issues.apache.org/jira/browse/FLEX-33405
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: TitleWindow
Affects Versions: Apache Flex 4.9.0
 Environment: mobile
Reporter: Jozef Chutka
Assignee: Justin Mclean
Priority: Critical
  Labels: CloseEvent, PopUpEvent, TextInput, TitleWindow, 
 exception, mobile
 Fix For: Apache Flex 4.10.0


 reproduce:
 1. create a mobile flex project and run on mobile device
 2. create TitleWindow with TextInput child
 3. open popup using PopUpManager
 4. try to close the popup using close button
 5. see the exception
 Main Thread (Suspended: TypeError: Error #1034: Type Coercion failed: cannot 
 convert mx.events::CloseEvent@6a1699d1 to spark.events.PopUpEvent.)  
   flash.events::EventDispatcher/dispatchEventFunction [no source] 
   flash.events::EventDispatcher/dispatchEvent [no source] 
   mx.core::UIComponent/dispatchEvent  
   spark.components::TitleWindow/closeButton_clickHandler  
 reason:
 my best guess is it is somehow mobile skin related
 possible fix:
 extend TitleWindow and do
 override protected function closeButton_clickHandler(event:MouseEvent):void
 {
 dispatchEvent(new PopUpEvent(PopUpEvent.CLOSE));
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


FLEX-26912 Clean up commented out Mustella tests

2013-03-10 Thread Justin Mclean
Hi,

Any know status of this:
https://issues.apache.org/jira/browse/FLEX-26912

Justin


Apache Flex Update Meeting in Chicago

2013-03-10 Thread Nicholas Kwiatkowski
Just a heads up -- I will be doing a presentation next week (March 18th) in
Chicago on the status of Flex, and all the happenings in the last year.
 Additionally, Mike Labriola will be doing a presentation on the Randori
Project.

The Eventbright link to attend the meeting is here :
http://randori_with_apache_flex.eventbrite.com/

It is my hope that we will be recording (at least my section) the meeting.
 I will post the link should that happen.

-Nick


[jira] [Resolved] (FLEX-33346) Can only target Flash Player 11.1 in Flash Builder

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33346?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33346.
--

Resolution: Not A Problem

Flash player version can be changed by hand or via scripts in the die directory.

 Can only target Flash Player 11.1 in Flash Builder
 --

 Key: FLEX-33346
 URL: https://issues.apache.org/jira/browse/FLEX-33346
 Project: Apache Flex
  Issue Type: Bug
  Components: Versioning
Affects Versions: Apache Flex 4.9.0
 Environment: Windows 7 x64 - Flash Builder 4.7
Reporter: Joseph Labrecque

 I've installed Apache Flex 4.9 for use within Flash Builder 4.7 and cannot 
 specify any target Flash player version below 11.1:
 The currently selected Flex SDK requires minimum Adobe Flash Player version 
 11.1.0.
 I know that this is a new feature of this SDK (to target 10.2-11.5) but 
 cannot seem to do it through this software. If there is something that needs 
 to be modified, I do not see instructions in the release notes.
 Requested by Frédéric THOMAS.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (FLEX-33315) selectedItem returns [] after setting it to [], and selecting an item

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean reassigned FLEX-33315:


Assignee: Justin Mclean

 selectedItem returns [] after setting it to [], and selecting an item
 -

 Key: FLEX-33315
 URL: https://issues.apache.org/jira/browse/FLEX-33315
 Project: Apache Flex
  Issue Type: Bug
  Components: Advanced Data Grid
Affects Versions: Adobe Flex SDK 4.6 (Release)
 Environment: ALL
Reporter: Ryan
Assignee: Justin Mclean
 Attachments: testProj.mxml


 Setting AdvancedDataGrid's selectedItems to [] in the grid's creation 
 complete handler causes it to never update it's selected items array (if the 
 dataprovider is initially empty).
   
 Expected:   selectedItems has the selectedItems that are visually represented 
 by the grid.
 Results:  selectedItems is always empty.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33314) framework/build_framework.xml has not been kept up-to-date with new swcs and bundles

2013-03-10 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33314?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598432#comment-13598432
 ] 

Justin Mclean commented on FLEX-33314:
--

Do we still need build_framework.xml?

 framework/build_framework.xml has not been kept up-to-date with new swcs and 
 bundles
 

 Key: FLEX-33314
 URL: https://issues.apache.org/jira/browse/FLEX-33314
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex Next
Reporter: Carol Frampton

 build_framework.xml is renamed to build.xml in the binary kit
 Traditionally this file has been there to allow the swcs to be built for 
 debugging
 Either this file should go away and be removed from the kit or it should be 
 kept up-to-date.
 If kept, I see that apache.swc and the bundles for apache and experimental 
 are missing.  The file should be reviewed in total to see if anything else is 
 missing and the build commands are still correct.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33249) I wish as a new developer in training that the SQL light database could be easier to create and manipulate

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33249?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33249.
--

   Resolution: Fixed
Fix Version/s: (was: Apache Flex 4.9.0)

IT can be frustrating at time. Not a bug.

 I wish as a new developer in training that the SQL light database could be 
 easier to create and manipulate
 --

 Key: FLEX-33249
 URL: https://issues.apache.org/jira/browse/FLEX-33249
 Project: Apache Flex
  Issue Type: Wish
  Components: Mobile: MobileApplication
Affects Versions: Apache Flex Next
 Environment: Windows, android, mac, ios, 
Reporter: John Mayo
  Labels: newbie
   Original Estimate: 8,736h
  Remaining Estimate: 8,736h

 I am a Developer in training trying to do everything self taught with over 2k 
 invested in books, training videos Video2brain.com  I realize that im not 
 the expert on anything and am finding it very tidious to try and learn how to 
 develop.  I worked a little with java then choose to buy the cs6 suite and 
 take that approach cause i see it is going to be the future of all 
 development.   However i find it hard to locate how to do things in flex like 
 make a database that multiple views can access.  IT is a real struggle for 
 me.  I have tried stackoverflow and have been provided solutions that simply 
 dont work or look like they are best practice.   IT would be amazing if 
 apache would listen to a novice up and coming developer and help streamline 
 some of the development activites Like Click this button add this database  
 Import a table to the database ect.   It would also help the quality of apps 
 come up by standardizing something that is chaotic.   I would also like to 
 see a better resource for finding code examples and learning how to do new 
 things.   I cannot describe how frustrating it is to not be able to easily 
 find information about something so top notch.
 sincerely 
 John Mayo

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33197) title window

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33197.
--

Resolution: Won't Fix

 title window
 

 Key: FLEX-33197
 URL: https://issues.apache.org/jira/browse/FLEX-33197
 Project: Apache Flex
  Issue Type: Bug
  Components: mx: TitleWindow
Affects Versions: Adobe Flex SDK 4.5 (Release)
 Environment: flash builder
Reporter: shankar waghmare
   Original Estimate: 5h
  Remaining Estimate: 5h

 unable to move the titlewindow out side of the  application. it should be 
 move all over the screen i.e browser

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


FLEX-33190 GridEvent.GRID_DOUBLE_CLICK is dispatched even when two different cells are clicked

2013-03-10 Thread Justin Mclean
Hi,

This JiRA issue has a quite useful suggestion (+ code) to add a double click 
mode for grid, row, column or cell. This fixes an existing bug and is a useful 
enhancement.

Does any existing committer have some time to work on this?
 
https://issues.apache.org/jira/browse/FLEX-33190

Thanks,
Justin

FLEX-33183 Revisit Mustella Tests

2013-03-10 Thread Justin Mclean
Hi,

I assume this has been resolved?
FLEX-33183 Revisit Mustella Tests

https://issues.apache.org/jira/browse/FLEX-33183

Thanks,
Justin


[jira] [Resolved] (FLEX-33092) Add NOTICE file to root

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33092.
--

Resolution: Fixed

NOTICE is no longer required as we now a top level project

 Add NOTICE file to root
 ---

 Key: FLEX-33092
 URL: https://issues.apache.org/jira/browse/FLEX-33092
 Project: Apache Flex
  Issue Type: Task
Reporter: Christophe Herreman
 Attachments: NOTICE


 Some of the build scripts for the jars were updated to include the LICENSE 
 and NOTICE files. These are copied from the root dir, but the NOTICE file is 
 missing. This results in a failing build.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33083) Flash builder report An internal build error has occurred. See the error log for more information.

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33083?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33083:
-

Labels: easyfix  (was: )

 Flash builder report An internal build error has occurred. See the error log 
 for more information. 
 -

 Key: FLEX-33083
 URL: https://issues.apache.org/jira/browse/FLEX-33083
 Project: Apache Flex
  Issue Type: Bug
  Components: Project Management
 Environment: Flash builder 4.6  , sdk 4.8.0  
Reporter: Alex Harui
  Labels: easyfix

 1. download the source kit from 
 https://svn.apache.org/repos/asf/incubator/flex/trunk
 2. run ant release 
 3. extract apache-flex-sdk-4.8.0-incubating-bin.zip to new folder 
 4. extract AIR Integration Kit.zip to folder 
 5 copy additional files for Flash Ide ( frameworks/libs\player\* and 
 frameworks\*-config.xm)
 6.create a simple project with reference to RemoteObject  
 private var remote:RemoteObject;
 remote = new RemoteObject;
 flash builder log file :
 !ENTRY com.adobe.flexbuilder.project 4 43 2012-06-08 18:27:39.112
 !MESSAGE Uncaught exception in compiler
 !STACK 0
 java.lang.NullPointerException
   at flex2.compiler.CompilerAPI.getMessagingClasses(CompilerAPI.java:1730)
   at flex2.compiler.CompilerAPI.compile(CompilerAPI.java:1538)
   at flex2.tools.oem.Application.compile(Application.java:1357)
   at flex2.tools.oem.Application.recompile(Application.java:1295)
   at flex2.tools.oem.Application.compile(Application.java:894)
   at 
 flex2.tools.flexbuilder.BuilderApplication.compile(BuilderApplication.java:367)
   at 
 com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder$MyBuilder.mybuild(ASApplicationBuilder.java:319)
   at 
 com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder.build(ASApplicationBuilder.java:129)
   at 
 com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.build(ASBuilder.java:198)
   at 
 com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.build(ASItemBuilder.java:70)
   at 
 com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.buildItem(FlexProjectBuilder.java:607)
   at 
 com.adobe.flexbuilder.project.compiler.internal.FlexProjectBuilder.build(FlexProjectBuilder.java:382)
   at 
 com.adobe.flexbuilder.project.compiler.internal.FlexIncrementalBuilder.build(FlexIncrementalBuilder.java:187)
   at 
 org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728)
   at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
   at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199)
   at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239)
   at 
 org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292)
   at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
   at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295)
   at 
 org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351)
   at 
 org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374)
   at 
 org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143)
   at 
 org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241)
   at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33071) DropdownList items dupplication = virtualLayout

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33071?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33071.
--

Resolution: Cannot Reproduce

Item renderers get reused with virtual layout is set to true, issue is likely 
to do with the item render code not the SDK. If you believe this is still an 
issue please reopen and supply some sample code.

 DropdownList items dupplication = virtualLayout
 

 Key: FLEX-33071
 URL: https://issues.apache.org/jira/browse/FLEX-33071
 Project: Apache Flex
  Issue Type: Bug
 Environment: Flex 4.5.1
Reporter: Alex Harui

 I use skinned dropdown lists with a XMLListCollection as dataprovider
 If I display 10 element from a list of 50 items when scrolling I will see all 
 my items randomly mixed and repeated.
 When I set useVirtualLayout to false the problem is resolved.
 It may be a problem of cache management ?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33070) Mustella build file issues

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33070.
--

Resolution: Fixed

 Mustella build file issues
 --

 Key: FLEX-33070
 URL: https://issues.apache.org/jira/browse/FLEX-33070
 Project: Apache Flex
  Issue Type: Bug
Reporter: Christophe Herreman

 Two issues in this report:
  - the Mustella build file currently references compc.exe and mxmlc.exe. This 
 should be changed so that the *.bat files are referenced instead. See the 
 setup_windows task.
  - the env.properties file is not included in the build script.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Maven JIRA issues

2013-03-10 Thread Justin Mclean
Hi,

There's about a dozen or so outstanding Maven issues. Can someone more familiar 
with Maven (I don't use it) take a look and see if any of the JIRA issues can 
be resolved and/or clarify what the progress is.

https://issues.apache.org/jira/issues/?jql=project%20%3D%20FLEX%20AND%20text%20~%20maven%20and%20status%20!%3D%20%22closed%22%20and%20status%20!%3D%20%22resolved%22

Thanks,
Justin

[jira] [Updated] (FLEX-33413) HTML wrapper ANT task fails to write playerProductInstall.swf to disk

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33413?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33413:
-

Labels: easy fix  (was: )

 HTML wrapper ANT task fails to write playerProductInstall.swf to disk
 -

 Key: FLEX-33413
 URL: https://issues.apache.org/jira/browse/FLEX-33413
 Project: Apache Flex
  Issue Type: Bug
  Components: Ant Tasks
Affects Versions: Apache Flex 4.9.0
 Environment: windows 7 (32-bit), Java 7 (32-bit)
Reporter: Maxime Cowez
Priority: Minor
  Labels: easy, fix

 When running the html-wrapper ANT task with no specific arguments, the task 
 writes the following output:
 [ant:html-wrapper] Error outputting resource: playerProductInstall.swf
 [ant:html-wrapper] java.io.IOException: Stream closed
 The result of the task is that all files have correctly been generated except 
 for 'playerProductInstall.swf', which is there, but has no content (0 Kb).
 This seems to be a regression bug. I have run the same task on the same 
 project against Adobe Flex 4.6, which works as expected.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33413) HTML wrapper ANT task fails to write playerProductInstall.swf to disk

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33413?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33413:
-

Labels: easyfix  (was: easy fix)

 HTML wrapper ANT task fails to write playerProductInstall.swf to disk
 -

 Key: FLEX-33413
 URL: https://issues.apache.org/jira/browse/FLEX-33413
 Project: Apache Flex
  Issue Type: Bug
  Components: Ant Tasks
Affects Versions: Apache Flex 4.9.0
 Environment: windows 7 (32-bit), Java 7 (32-bit)
Reporter: Maxime Cowez
Priority: Minor
  Labels: easyfix

 When running the html-wrapper ANT task with no specific arguments, the task 
 writes the following output:
 [ant:html-wrapper] Error outputting resource: playerProductInstall.swf
 [ant:html-wrapper] java.io.IOException: Stream closed
 The result of the task is that all files have correctly been generated except 
 for 'playerProductInstall.swf', which is there, but has no content (0 Kb).
 This seems to be a regression bug. I have run the same task on the same 
 project against Adobe Flex 4.6, which works as expected.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33395) Select specific AIR SDK and playerglobal versions

2013-03-10 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598446#comment-13598446
 ] 

Justin Mclean commented on FLEX-33395:
--

Any progress and/or do you need any help? People are working on releasing 2.5 
of the installer would be nice to include this as a feature.

 Select specific AIR SDK and playerglobal versions
 -

 Key: FLEX-33395
 URL: https://issues.apache.org/jira/browse/FLEX-33395
 Project: Apache Flex
  Issue Type: New Feature
  Components: InstallApacheFlex, Installer
Affects Versions: InstalApacheFlex 1.0, InstallApacheFlex 1.1
Reporter: Lee Burrows
Priority: Minor
 Fix For: InstallApacheFlex 1.1

   Original Estimate: 168h
  Remaining Estimate: 168h

 Allow user to choose which versions of AIR SDK and playerglobal to use in 
 framework.
 Requires controls for user to make selections.
 Requires modification of config files to match selections.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33386?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33386:
-

Labels: Performance easyfix  (was: Performance)

 Style Declaration Matching Tuning - Inlining
 

 Key: FLEX-33386
 URL: https://issues.apache.org/jira/browse/FLEX-33386
 Project: Apache Flex
  Issue Type: Improvement
  Components: Styles
Reporter: RJ Camarillo
Assignee: Frédéric THOMAS
Priority: Minor
  Labels: Performance, easyfix
 Fix For: Adobe Flex SDK Next

 Attachments: mx.styles - inlined.zip


 One of the most executed calls during the lifetime of a Flex UIComponent is 
 the matching of style declarations (i.e. state change, component 
 initialization, etc).
 As such, it is one that the community has monkey-patched often in order to 
 attain speed-ups even for just a little.
 This is one of the improvements done to achieve that end. Instead of doing 
 method calls to the different style classes (i.e. CSSCondition, CSSSelector, 
 CSSStyleDeclaration), the StyleProtoChain class has been modified to perform 
 matching inline as much as possible.
 The implementation is not perfect and I'm sure it can be improved further 
 with the help of the bigger community. For example, the 
 matchingDecls.sortOn(selectorIndex, Array.NUMERIC) call could be improve to 
 use one of the faster sort algorithms out there. There are also some methods 
 calls that are not inlined.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33370) max drag rate in SliderBase should not be a Constant

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33370:
-

Labels: easyfix  (was: )

 max drag rate in SliderBase should not be a Constant
 

 Key: FLEX-33370
 URL: https://issues.apache.org/jira/browse/FLEX-33370
 Project: Apache Flex
  Issue Type: Improvement
  Components: Spark: Slider
Reporter: Jan
Priority: Minor
  Labels: easyfix

 The fixed value of 30 Update per Second feels very inconsistent if the rest 
 of the application runs with smooth 60 FPS.
 File: 
 \frameworks\projects\spark\src\spark\components\supportClasses\SliderBase.as 
 (1 hits)
 Line 288: private static const MAX_DRAG_RATE:Number = 30;
 Solutions:
  - let the User define the max drag rate via property
  or
  - bind it to the global framerate (Event.ENTER_FRAME  instead of a Timer)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33350) CallOutButton for Web (desktop / not AIR)

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33350:
-

Priority: Major  (was: Minor)

 CallOutButton for Web (desktop / not AIR)
 -

 Key: FLEX-33350
 URL: https://issues.apache.org/jira/browse/FLEX-33350
 Project: Apache Flex
  Issue Type: New Feature
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Marcus Fritze
 Attachments: CallOutButton.fxpl, CallOutButtonTest.fxp, 
 CallOutButtonTest.zip, CallOutButton.zip


 based on the code provided by Maxime Cowez 
 https://github.com/RIAstar/CallOutFx and the original CallOutButton (AIR 
 version), I developed a CallOutButton for Web (desktop).
 Attachments:
 - CallOutButton (library project)
 - CallOutButtonTest (example project)
 Sorry, I am not a contributor and therefore I have no access to whiteboard 
 for uploading an example. Maybe, if someone (a contributor) think this would 
 be a nice component for Apache Flex, you can use it and upload it.
 Feedback is welcome!
 (Warning: there is a lot of commented-out source-code in the Callout.as)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Web callout component

2013-03-10 Thread Justin Mclean
Hi,

This issue contains a new component but hasn't been integrated into the SDK - 
anyone want to give a go on adding it the the experimental swc?

https://issues.apache.org/jira/browse/FLEX-33350

Thanks,
Justin



[jira] [Commented] (FLEX-33345) The file frameworks\projects\apache\bundles\pt_PT\apache.properties contains no entries

2013-03-10 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598450#comment-13598450
 ] 

Justin Mclean commented on FLEX-33345:
--

Files are missing entries for pt_PT (and other locales) as no one has supplied 
the needed translations.

The english strings are:
invalidCharPostcodeError=The postcode contains invalid characters.
wrongLengthPostcodeError=The postcode is the wrong length.
wrongFormatPostcodeError=The postcode is the wrong format.
incorrectFormatPostcodeError=The postcode format string is incorrect.

 The file frameworks\projects\apache\bundles\pt_PT\apache.properties contains 
 no entries
 ---

 Key: FLEX-33345
 URL: https://issues.apache.org/jira/browse/FLEX-33345
 Project: Apache Flex
  Issue Type: Improvement
  Components: i18n : Bundle Support
Affects Versions: Apache Flex 4.9.0
Reporter: Wilson Silva
Priority: Minor
 Fix For: Apache Flex Next

 Attachments: apache.properties


 I've attached the translation. Also, I'm going through all the pt_PT resource 
 files to see what's missing and what may be wrong and I see that there is 
 still some work that needs to be done. Is there a better way to contribute 
 these translations, instead of opening issues on Jira?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Missing locales for apache.swc - can anyone supply translations?

2013-03-10 Thread Justin Mclean
Hi,

We're missing a few translation of error messages for the postcode componets. 

In English they are:
invalidCharPostcodeError=The postcode contains invalid characters.
wrongLengthPostcodeError=The postcode is the wrong length.
wrongFormatPostcodeError=The postcode is the wrong format.
incorrectFormatPostcodeError=The postcode format string is incorrect.

Can someone provide translation for this in the following languages:
da_DK - Danish
de_DE - German
el_GR - Greek
fi_FL - Finnish
ja_JP - Japanese
ko_KR - Korean 
nb_NO - Norwegian
nl_NL - Duch
pt_BR - Portuguese (Brazil) 
pt_PT - Portuguese  (Portugal)
ru_RU - Russian
sw_SE - Sweedish
zh_CN - Chinese
zh_TW - Chinese

Thanks,
Justin

[jira] [Created] (FLEX-33427) Missing translation for postcode components

2013-03-10 Thread Justin Mclean (JIRA)
Justin Mclean created FLEX-33427:


 Summary: Missing translation for postcode components
 Key: FLEX-33427
 URL: https://issues.apache.org/jira/browse/FLEX-33427
 Project: Apache Flex
  Issue Type: Bug
Affects Versions: Apache Flex 4.9.0
Reporter: Justin Mclean
Priority: Trivial


Missing translation of error messages for the postcode componets. 

In English they are:
invalidCharPostcodeError=The postcode contains invalid characters.
wrongLengthPostcodeError=The postcode is the wrong length.
wrongFormatPostcodeError=The postcode is the wrong format.
incorrectFormatPostcodeError=The postcode format string is incorrect.

Can someone provide translation for this in the following languages:
da_DK - Danish
de_DE - German
el_GR - Greek
fi_FL - Finnish
ja_JP - Japanese
ko_KR - Korean 
nb_NO - Norwegian
nl_NL - Duch
pt_BR - Portuguese (Brazil) 
pt_PT - Portuguese  (Portugal)
ru_RU - Russian
sw_SE - Sweedish
zh_CN - Chinese
zh_TW - Chinese

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33337) Create a NumericInput component

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-7?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-7:
-

Labels: easy fix  (was: )

 Create a NumericInput component
 ---

 Key: FLEX-7
 URL: https://issues.apache.org/jira/browse/FLEX-7
 Project: Apache Flex
  Issue Type: New Feature
  Components: Spark Components
Reporter: Christofer Dutz
Priority: Minor
  Labels: easy, fix
 Attachments: NumericInput.as


 In a lot of projects it would be good to have a NumericInput component that 
 behaves like a TextInput, but optimized for editing Numeric values including 
 fractionals, while respecting a current locales formatting.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33337) Create a NumericInput component

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-7?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-7:
-

Labels:   (was: easy fix)

 Create a NumericInput component
 ---

 Key: FLEX-7
 URL: https://issues.apache.org/jira/browse/FLEX-7
 Project: Apache Flex
  Issue Type: New Feature
  Components: Spark Components
Reporter: Christofer Dutz
Priority: Minor
 Attachments: NumericInput.as


 In a lot of projects it would be good to have a NumericInput component that 
 behaves like a TextInput, but optimized for editing Numeric values including 
 fractionals, while respecting a current locales formatting.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


New numeric Input component

2013-03-10 Thread Justin Mclean
Hi,

We have a donated numeric import component, it may need a little work to add to 
the experimental project, anyone willing to have a go at this?

https://issues.apache.org/jira/browse/FLEX-7

I can see a couple of issues with it (eg not locale aware) but will a small 
amount of work it sounds like a useful addition to the SDK.

Thanks,
Justin

[jira] [Resolved] (FLEX-33330) An easier way of managing the locales for the InstallApache application

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-0?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-0.
--

Resolution: Fixed

Has been donated.

 An easier way of managing the locales for the InstallApache application
 ---

 Key: FLEX-0
 URL: https://issues.apache.org/jira/browse/FLEX-0
 Project: Apache Flex
  Issue Type: Improvement
  Components: InstallApacheFlex
Reporter: Roland Zwaga
Priority: Minor
  Labels: InstallApacheFlex, utility
 Fix For: InstallApacheFlex 1.1

 Attachments: ApacheFlexInstallerLocaleEditor-v1.0.1.zip, 
 RuntimeLocale.as


 Right now updating the translation for an existing locale, or creating a new 
 locale for the InstallApache application involves quite a bit of 
 copy/pasting. While the list of locales grows this problem will grow with it, 
 IMHO.
 To try and combat this complexity I've created a small AIR application which 
 is capable of loading, parsing and editing the RuntimeLocale.as (which 
 contains all of the locale data) file of the InstallApache project.
 I'll attach both an FXP export of the FlashBuilder project as well as an AIR 
 installer for the application.
 Should folks find the app useful I'll be happy to donate the code to Apache 
 Flex.
 A huge credit goes out to Michael Schmalle who created the asblocks library 
 (https://github.com/teotigraphix/as3-commons-asblocks) which takes care of 
 the parsing and editing of actionscript source files.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33237) UIComponent#resourceManager_changeHandler() should be protected scope.

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33237:
-

Labels: easyfix  (was: )

 UIComponent#resourceManager_changeHandler() should be protected scope.
 --

 Key: FLEX-33237
 URL: https://issues.apache.org/jira/browse/FLEX-33237
 Project: Apache Flex
  Issue Type: Bug
  Components: Profiler
Affects Versions: Apache Flex 4.8 (parity release)
Reporter: Shigeru Nakagaki
Priority: Minor
  Labels: easyfix

 UIComponent add event listener at constructor with weak reference. So it may 
 be cleared sometime.
 But in profiling mode, it still exists. It is a real garbage. And it is 
 annoying to me.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: Apache Flex SDK Installer - 2.5 release?

2013-03-10 Thread Justin Mclean
Hi,

You might also want to take a look at this and see if anything mentioned should 
be a part of the 2.5 release.
https://issues.apache.org/jira/browse/FLEX-33202

Thanks,
Justin




[jira] [Updated] (FLEX-33131) rendererDescriptionMap is private, should be made protected to allow customizing the grid for conditional spanning rows and columns

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33131?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33131:
-

Labels: easyfix features  (was: features)

 rendererDescriptionMap is private, should be made protected to allow 
 customizing the grid for conditional spanning rows and columns
 ---

 Key: FLEX-33131
 URL: https://issues.apache.org/jira/browse/FLEX-33131
 Project: Apache Flex
  Issue Type: New Feature
  Components: ADG:ColumnSpanning, Advanced Data Grid
Affects Versions: Adobe Flex SDK 4.6 (Release), Apache Flex Next
 Environment: All Operating Systems, General Hardware
Reporter: Ashish Desai
Priority: Minor
  Labels: easyfix, features
 Fix For: Adobe Flex SDK Next

 Attachments: LabelRenderer.as

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 rendererDescriptionMap is a private property maintaining an internal copy of 
 the renderer descriptions in addition to the renderer provider. Making this 
 property protected can allow users to inherit this property and allow 
 conditional row and column spanning. ItemRenderers in the rendererProvider 
 Array can then use this property to conditionally set the row span or column 
 span for individual rows  columns respectively. Attached is the sample of a 
 renderer for a hacked data grid.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33120) Please check support for ExactValue initializer

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33120:
-

Labels: easyfix  (was: )

 Please check support for ExactValue initializer
 ---

 Key: FLEX-33120
 URL: https://issues.apache.org/jira/browse/FLEX-33120
 Project: Apache Flex
  Issue Type: Improvement
Reporter: Alex Harui
Priority: Minor
  Labels: easyfix
 Attachments: exactValue.patch


 I've done my own improvement for MXML to support any values for property 
 initializer WITHOUT bindings, for example:
 Was:
 TextField xmlns=flash.text.* autoSize={TextFieldAutoSize.CENTER} /
 is generated into:
 private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
 {
 var temp : flash.text.TextField = new flash.text.TextField();
 _MyOwnFlexFrameworkTest_TextField1 = temp;
 mx.binding.BindingManager.executeBindings(this, 
 _MyOwnFlexFrameworkTest_TextField1, _MyOwnFlexFrameworkTest_TextField1);
 return temp;
 }
 //  binding mgmt
 private function _MyOwnFlexFrameworkTest_bindingsSetup():Array
 {
 var result:Array = [];
 result[0] = new mx.binding.Binding(this,
 function():String
 {
 var result:* = (TextFieldAutoSize.CENTER);
 return (result == undefined ? null : String(result));
 },
 null,
 _MyOwnFlexFrameworkTest_TextField1.autoSize
 );
 return result;
 }
 now:
 TextField xmlns=flash.text.* autoSize=${TextFieldAutoSize.CENTER} /
 give us such result:
 private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
 {
 var temp : flash.text.TextField = new flash.text.TextField();
 temp.autoSize = TextFieldAutoSize.CENTER;
 _MyOwnFlexFrameworkTest_TextField1 = temp;
 mx.binding.BindingManager.executeBindings(this, 
 _MyOwnFlexFrameworkTest_TextField1, _MyOwnFlexFrameworkTest_TextField1);
 return temp;
 }
 this implementation is similar to twoWay bindings and written in the same way.
 btw, sorry for my English, I'm Russian.
 Thanks

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33117) Removing dependency to a contrib library in the MXML download/build script

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33117?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33117.
--

Resolution: Fixed

 Removing dependency to a contrib library in the MXML download/build script
 --

 Key: FLEX-33117
 URL: https://issues.apache.org/jira/browse/FLEX-33117
 Project: Apache Flex
  Issue Type: Improvement
 Environment: All systems, I guess.
Reporter: Alex Harui
Priority: Minor
  Labels: Ant,Build
 Attachments: build.patch


 the modules/downloads.xml Ant build script is relying on a contrib library 
 for performing some trivial tasks. I suggest removing this dependency because 
 less dependencies is better then more dependencies :) It complicates somewhat 
 the build process (users are requested to download and set up a contrib 
 library, which is nor automatic neither straight-forward.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33107) ValidateAll method of Validator class should return a Vector, not an array

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33107:
-

Labels: easyfix  (was: )

 ValidateAll method of Validator class should return a Vector, not an array
 --

 Key: FLEX-33107
 URL: https://issues.apache.org/jira/browse/FLEX-33107
 Project: Apache Flex
  Issue Type: Improvement
  Components: Project Management
Reporter: jeff tapper
Priority: Minor
  Labels: easyfix
   Original Estimate: 0.5h
  Remaining Estimate: 0.5h



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33420) poppedViewReturnedObject destroyed too early

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33420?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33420:
-

Labels: easyfix poppedViewReturnedObject viewActivate  (was: 
poppedViewReturnedObject viewActivate)

 poppedViewReturnedObject destroyed too early
 

 Key: FLEX-33420
 URL: https://issues.apache.org/jira/browse/FLEX-33420
 Project: Apache Flex
  Issue Type: Bug
  Components: Mobile: ViewNavigator
Affects Versions: Adobe Flex SDK 4.6 (Release)
 Environment: general
Reporter: Morten Gorm Madsen
Priority: Trivial
  Labels: easyfix, poppedViewReturnedObject, viewActivate

 Description of poppedViewReturnedObject:
 This object is guaranteed to be valid when the new view receives the 
 codeadd/code event, and is destroyed after the view receives a 
 codeviewActivate/code event./p
 The last part is wrong - poppedViewReturnedObject is destroyed BEFORE the 
 viewActivate event occurs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: [jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread Frédéric THOMAS
Not so easy, many things to do but, yes, too long time on my list, I'll see 
that this week


-Message d'origine- 
From: Justin Mclean (JIRA)

Sent: Monday, March 11, 2013 1:33 AM
To: dev@flex.apache.org
Subject: [jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - 
Inlining



[ 
https://issues.apache.org/jira/browse/FLEX-33386?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel 
]


Justin Mclean updated FLEX-33386:
-

   Labels: Performance easyfix  (was: Performance)


Style Declaration Matching Tuning - Inlining


Key: FLEX-33386
URL: https://issues.apache.org/jira/browse/FLEX-33386
Project: Apache Flex
 Issue Type: Improvement
 Components: Styles
   Reporter: RJ Camarillo
   Assignee: Frédéric THOMAS
   Priority: Minor
 Labels: Performance, easyfix
Fix For: Adobe Flex SDK Next

Attachments: mx.styles - inlined.zip


One of the most executed calls during the lifetime of a Flex UIComponent 
is the matching of style declarations (i.e. state change, component 
initialization, etc).
As such, it is one that the community has monkey-patched often in order to 
attain speed-ups even for just a little.
This is one of the improvements done to achieve that end. Instead of doing 
method calls to the different style classes (i.e. CSSCondition, 
CSSSelector, CSSStyleDeclaration), the StyleProtoChain class has been 
modified to perform matching inline as much as possible.
The implementation is not perfect and I'm sure it can be improved further 
with the help of the bigger community. For example, the 
matchingDecls.sortOn(selectorIndex, Array.NUMERIC) call could be improve 
to use one of the faster sort algorithms out there. There are also some 
methods calls that are not inlined.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA 
administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira 



[jira] [Resolved] (FLEX-33084) Packages

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33084.
--

Resolution: Fixed

 Packages
 

 Key: FLEX-33084
 URL: https://issues.apache.org/jira/browse/FLEX-33084
 Project: Apache Flex
  Issue Type: Question
  Components: Project Management
 Environment: SDKS
Reporter: Fernando
Priority: Trivial
   Original Estimate: 1h
  Remaining Estimate: 1h

 all packages of flex will change name?
 ex: mx.managers to org.apache.flex.managers ?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: [jira] [Commented] (FLEX-33395) Select specific AIR SDK and playerglobal versions

2013-03-10 Thread Frédéric THOMAS

I'll have a look to see if I include it in the 2.5

-Message d'origine- 
From: Lee Burrows (JIRA)

Sent: Monday, March 11, 2013 1:55 AM
To: dev@flex.apache.org
Subject: [jira] [Commented] (FLEX-33395) Select specific AIR SDK and 
playerglobal versions



   [ 
https://issues.apache.org/jira/browse/FLEX-33395?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598454#comment-13598454 
]


Lee Burrows commented on FLEX-33395:


I havent had a chance to work on it yet - i was hoping to get started in a 
week or so, if work commitments allow. No problem if anybody wants to jump 
in sooner



Select specific AIR SDK and playerglobal versions
-

Key: FLEX-33395
URL: https://issues.apache.org/jira/browse/FLEX-33395
Project: Apache Flex
 Issue Type: New Feature
 Components: InstallApacheFlex, Installer
   Affects Versions: InstalApacheFlex 1.0, InstallApacheFlex 1.1
   Reporter: Lee Burrows
   Priority: Minor
Fix For: InstallApacheFlex 1.1

  Original Estimate: 168h
 Remaining Estimate: 168h

Allow user to choose which versions of AIR SDK and playerglobal to use in 
framework.

Requires controls for user to make selections.
Requires modification of config files to match selections.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA 
administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira 



[jira] [Commented] (FLEX-33237) UIComponent#resourceManager_changeHandler() should be protected scope.

2013-03-10 Thread JIRA

[ 
https://issues.apache.org/jira/browse/FLEX-33237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598466#comment-13598466
 ] 

Frédéric THOMAS commented on FLEX-33237:


Hi,

I can't rely the description with the fact it is not protected, can you provide 
a simple example where it creates problem pls.
Note: If you need to do some clean up, you can override protected function 
resourcesChanged():void as it called by the changeHandler

 UIComponent#resourceManager_changeHandler() should be protected scope.
 --

 Key: FLEX-33237
 URL: https://issues.apache.org/jira/browse/FLEX-33237
 Project: Apache Flex
  Issue Type: Bug
  Components: Profiler
Affects Versions: Apache Flex 4.8 (parity release)
Reporter: Shigeru Nakagaki
Priority: Minor
  Labels: easyfix

 UIComponent add event listener at constructor with weak reference. So it may 
 be cleared sometime.
 But in profiling mode, it still exists. It is a real garbage. And it is 
 annoying to me.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: [jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread Justin Mclean
Hi

 Not so easy, many things to do but, yes, too long time on my list, I'll see 
 that this week

Only if you have time, we need to spread the load a little. I believe in this 
case a fix has been provided it just needs to be applied.

Thanks,
Justin

Fwd: [ANNOUNCE] Apache Ant 1.9.0 Released

2013-03-10 Thread Justin Mclean
Hi,

Noticed that new version of ANT is out and one of the improvements was  zip and 
tar tasks improved. I recall running into a few issue along these lines in out 
build scripts, perhaps this could be a fix?

Thanks,
Justin

 From: anto...@apache.org (Antoine Levy-Lambert)
 Subject: [ANNOUNCE] Apache Ant 1.9.0 Released
 Date: 11 March 2013 11:37:18 AM AEDT
 To: annou...@apache.org
 
 Hi,
 
 I am pleased to announce the release of Apache Ant 1.9.0.
 
 
 Apache Ant is a Java based build tool.
 
 - Version 1.9.0 is the first Ant release which requires at least Java 1.5.
 - support for @Ignore annotation and requirement of JUnit 4.11
 - the zip, bzip2 and tar are improved
 - removal of the Perforce Ant tasks; users of these tasks can use the tasks 
 supplied by Perforce Inc. instead, which contain more functionality and 
 connect natively to the Perforce servers
 - numerous bug fixes and improvements as documented in Bugzilla and in the 
 release notes
 
 
 
 Source and binary distributions are available from the Apache Ant
 download site:
 
 http://ant.apache.org/bindownload.cgi
 
 and
 
 http://ant.apache.org/srcdownload.cgi
 
 Please verify signatures using the KEYS file available at the above
 location when downloading the release.
 
 For complete information on Ant, including instructions on how to submit
 bug reports, patches, or suggestions for improvement, see the Apache Ant
 website:
 
 http://ant.apache.org/index.html
 
 Antoine Levy-Lambert, on behalf of the Apache Ant community



Re: [jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread Frédéric THOMAS
Not only, first, it's not a patch and it is based on the 4.6, IIRC and I 
really have to check if there's no errors, good logic, if the perfs are 
improved and the all tests passes


-Message d'origine- 
From: Justin Mclean

Sent: Monday, March 11, 2013 2:25 AM
To: dev@flex.apache.org
Subject: Re: [jira] [Updated] (FLEX-33386) Style Declaration Matching 
Tuning - Inlining


Hi

Not so easy, many things to do but, yes, too long time on my list, I'll 
see that this week


Only if you have time, we need to spread the load a little. I believe in 
this case a fix has been provided it just needs to be applied.


Thanks,
Justin 



Re: [jira] [Updated] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread Justin Mclean
Hi,

 That's 5 classes, I have to check line by line to have the all logic in mind, 
 I would have already done it if a it was a patch provided instead of complete 
 classes.
Then ask them to supply a patch especially for than number of class.

Justin



[jira] [Commented] (FLEX-33386) Style Declaration Matching Tuning - Inlining

2013-03-10 Thread JIRA

[ 
https://issues.apache.org/jira/browse/FLEX-33386?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598476#comment-13598476
 ] 

Frédéric THOMAS commented on FLEX-33386:


Hi,

Sorry for the delay but it would have been done already if you provided a patch 
instead of the complete class, can you please provided it, you'll make my life 
easier.

Thanks,
Fred

 Style Declaration Matching Tuning - Inlining
 

 Key: FLEX-33386
 URL: https://issues.apache.org/jira/browse/FLEX-33386
 Project: Apache Flex
  Issue Type: Improvement
  Components: Styles
Reporter: RJ Camarillo
Assignee: Frédéric THOMAS
Priority: Minor
  Labels: Performance, easyfix
 Fix For: Adobe Flex SDK Next

 Attachments: mx.styles - inlined.zip


 One of the most executed calls during the lifetime of a Flex UIComponent is 
 the matching of style declarations (i.e. state change, component 
 initialization, etc).
 As such, it is one that the community has monkey-patched often in order to 
 attain speed-ups even for just a little.
 This is one of the improvements done to achieve that end. Instead of doing 
 method calls to the different style classes (i.e. CSSCondition, CSSSelector, 
 CSSStyleDeclaration), the StyleProtoChain class has been modified to perform 
 matching inline as much as possible.
 The implementation is not perfect and I'm sure it can be improved further 
 with the help of the bigger community. For example, the 
 matchingDecls.sortOn(selectorIndex, Array.NUMERIC) call could be improve to 
 use one of the faster sort algorithms out there. There are also some methods 
 calls that are not inlined.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33237) UIComponent#resourceManager_changeHandler() should be protected scope.

2013-03-10 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598487#comment-13598487
 ] 

Justin Mclean commented on FLEX-33237:
--

Perhaps in removedFromStageHandler the event listener could be removed, after 
that point I don't think the component cares if the resources are changed or 
not.

 UIComponent#resourceManager_changeHandler() should be protected scope.
 --

 Key: FLEX-33237
 URL: https://issues.apache.org/jira/browse/FLEX-33237
 Project: Apache Flex
  Issue Type: Bug
  Components: Profiler
Affects Versions: Apache Flex 4.8 (parity release)
Reporter: Shigeru Nakagaki
Priority: Minor
  Labels: easyfix

 UIComponent add event listener at constructor with weak reference. So it may 
 be cleared sometime.
 But in profiling mode, it still exists. It is a real garbage. And it is 
 annoying to me.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


UIComponent and week reference to resource manager change handler

2013-03-10 Thread Justin Mclean
Hi,

A week references to an event handler is being created in the UIComponent. 

// Register as a weak listener for change events from ResourceManager.
// If UIComponents registered as a strong listener,
// they wouldn't get garbage collected.
resourceManager.addEventListener(
Event.CHANGE, resourceManager_changeHandler, false, 0, true);

Do we care that this is never removed? Being a week reference it should be 
garbage collected at some point but perhaps it safer if we explicitly removed 
it at a guess in the removed from stage handler? Anyone have any other thoughts?

Also see:
https://issues.apache.org/jira/browse/FLEX-33237

There a few other components that do the exact same thing.

Thanks,
Justin

FLEX-28688 spark view stack issue

2013-03-10 Thread Justin Mclean
Hi,

In FLEX-28688 it states Looks like a regression from Alex's change in 22843. 
Alex can you add anything to this? It's marked as a critical issue.

https://issues.apache.org/jira/browse/FLEX-28688

Thanks,
Justin



Re: FLEX-26912 Clean up commented out Mustella tests

2013-03-10 Thread Alex Harui
Subtasks links didn't survive the import very well.  Probably best to just
close it.

There are commented out Mustella tests that we should probably deal with
some day, but maybe we need a new JIRA issue to track it.


On 3/10/13 2:54 PM, Justin Mclean jus...@classsoftware.com wrote:

 Hi,
 
 Any know status of this:
 https://issues.apache.org/jira/browse/FLEX-26912
 
 Justin

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



Re: JIRA issues with SDK that are simple to fix

2013-03-10 Thread Nicholas Kwiatkowski
I can take a look at them.  I didn't troll those Easy to fix in hopes
that some other community members might take them on, but it's probably
best to get them out the door.

-Nick

On Sun, Mar 10, 2013 at 8:54 PM, Justin Mclean jus...@classsoftware.comwrote:

 Hi,

 We have a fair number of issue that are relatively easy to fix.
 https://issues.apache.org/jira/issues/?filter=12322826

 There are about 16 issues that are currently unassigned. Anyone we wiling
 to take any of these on?

 Thanks,
 Justin


Re: Apache Flex Update Meeting in Chicago

2013-03-10 Thread Alex Harui
Are you going to demo FlexJS?  Let me know if you need help getting it up
and running.


On 3/10/13 3:49 PM, Nicholas Kwiatkowski nicho...@spoon.as wrote:

 Just a heads up -- I will be doing a presentation next week (March 18th) in
 Chicago on the status of Flex, and all the happenings in the last year.
  Additionally, Mike Labriola will be doing a presentation on the Randori
 Project.
 
 The Eventbright link to attend the meeting is here :
 http://randori_with_apache_flex.eventbrite.com/
 
 It is my hope that we will be recording (at least my section) the meeting.
  I will post the link should that happen.
 
 -Nick

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



Re: FLEX-33074 Build script requires sh on Windows

2013-03-10 Thread Nicholas Kwiatkowski
I'm on Windows and don't have shar (or bash) installed.  I've been able to
build with no issues.

-Nick

On Sun, Mar 10, 2013 at 8:03 PM, Justin Mclean jus...@classsoftware.comwrote:

 Hi,

 Can a someone (committer or otherwise) confirm that this is no longer an
 issue on Windows:
 https://issues.apache.org/jira/browse/FLEX-33074

 Thanks,
 Justin


Re: Apache Flex Update Meeting in Chicago

2013-03-10 Thread Nicholas Kwiatkowski
I'd love to demo it.  I haven't had a chance to build it in the last two
months (well, since the initial announcement).  I'll try it this week and
ping you if I become lost.

Are any of the other frameworks/compilers demo-able yet?

-Nick

On Sun, Mar 10, 2013 at 11:37 PM, Alex Harui aha...@adobe.com wrote:

 Are you going to demo FlexJS?  Let me know if you need help getting it up
 and running.


 On 3/10/13 3:49 PM, Nicholas Kwiatkowski nicho...@spoon.as wrote:

  Just a heads up -- I will be doing a presentation next week (March 18th)
 in
  Chicago on the status of Flex, and all the happenings in the last year.
   Additionally, Mike Labriola will be doing a presentation on the Randori
  Project.
 
  The Eventbright link to attend the meeting is here :
  http://randori_with_apache_flex.eventbrite.com/
 
  It is my hope that we will be recording (at least my section) the
 meeting.
   I will post the link should that happen.
 
  -Nick

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




Re: FLEX-33183 Revisit Mustella Tests

2013-03-10 Thread Alex Harui
Nope, haven't spent any time on it.


On 3/10/13 4:38 PM, Justin Mclean jus...@classsoftware.com wrote:

 Hi,
 
 I assume this has been resolved?
 FLEX-33183 Revisit Mustella Tests
 
 https://issues.apache.org/jira/browse/FLEX-33183
 
 Thanks,
 Justin

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



Re: [ANNOUNCE] Apache Ant 1.9.0 Released

2013-03-10 Thread Justin Mclean
Hi,

 Do we want to require ANT 1.9 right away?  This might break things for
 people who depends on those scripts to work within IDEs (like myself).

No but it get around an issue re zipping/taring when making a release. Was was 
this may be of interest rather than let go and do this.

Thanks,
Justin

Re: [jira] [Resolved] (FLEX-33092) Add NOTICE file to root

2013-03-10 Thread Alex Harui
You sure about that?  I think it is DISCLAIMER that was required by
Incubator.  NOTICE is still mentioned in the headers isn't it?


On 3/10/13 4:49 PM, Justin Mclean (JIRA) j...@apache.org wrote:

 
  [ 
 https://issues.apache.org/jira/browse/FLEX-33092?page=com.atlassian.jira.plugi
 n.system.issuetabpanels:all-tabpanel ]
 
 Justin Mclean resolved FLEX-33092.
 --
 
 Resolution: Fixed
 
 NOTICE is no longer required as we now a top level project
 
 Add NOTICE file to root
 ---
 
 Key: FLEX-33092
 URL: https://issues.apache.org/jira/browse/FLEX-33092
 Project: Apache Flex
  Issue Type: Task
Reporter: Christophe Herreman
 Attachments: NOTICE
 
 
 Some of the build scripts for the jars were updated to include the LICENSE
 and NOTICE files. These are copied from the root dir, but the NOTICE file is
 missing. This results in a failing build.
 
 --
 This message is automatically generated by JIRA.
 If you think it was sent incorrectly, please contact your JIRA administrators
 For more information on JIRA, see: http://www.atlassian.com/software/jira

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



Re: JIRA issues with SDK that are simple to fix

2013-03-10 Thread Justin Mclean
Hi,

 I can take a look at them.  I didn't troll those Easy to fix in hopes
 that some other community members might take them on, but it's probably
 best to get them out the door.

Yep I was hoping some of the less active committer or people looking to be 
committers would pick them up, but if we want to get a new release out the door 
I think they should be fixed, most have been hanging about for a while.

Thanks,
Justin

Re: FLEX-33074 Build script requires sh on Windows

2013-03-10 Thread Justin Mclean
Hi,

Good enough for me. I close it and if anything still thinks it's an issue can 
reopened it.

Thanks,
Justin

[jira] [Issue Comment Deleted] (FLEX-33092) Add NOTICE file to root

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33092:
-

Comment: was deleted

(was: NOTICE is no longer required as we now a top level project)

 Add NOTICE file to root
 ---

 Key: FLEX-33092
 URL: https://issues.apache.org/jira/browse/FLEX-33092
 Project: Apache Flex
  Issue Type: Task
Reporter: Christophe Herreman
 Attachments: NOTICE


 Some of the build scripts for the jars were updated to include the LICENSE 
 and NOTICE files. These are copied from the root dir, but the NOTICE file is 
 missing. This results in a failing build.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: [jira] [Resolved] (FLEX-33092) Add NOTICE file to root

2013-03-10 Thread Justin Mclean
Hi,

 You sure about that?  I think it is DISCLAIMER that was required by
 Incubator.  
I was incorrect and yes it was the DISCLAIMER that has been removed.

 NOTICE is still mentioned in the headers isn't it?
Yes NOTICE is required and it does exist in the root directory.

Issue can remain closed.

Thanks,
Justin



Re: FLEX-28688 spark view stack issue

2013-03-10 Thread Alex Harui
I don't think I started on this.  I don't have any other information.


On 3/10/13 8:12 PM, Justin Mclean justinmcl...@mac.com wrote:

 Hi,
 
 In FLEX-28688 it states Looks like a regression from Alex's change in 22843.
 Alex can you add anything to this? It's marked as a critical issue.
 
 https://issues.apache.org/jira/browse/FLEX-28688
 
 Thanks,
 Justin
 

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



JIRA issues assigned to Adobe JIRA

2013-03-10 Thread Justin Mclean
Hi,

There a large number of issue assigned to Adobe JIRA. I'm assuming there were 
issue that were assign when the JIRA issue were imported. Who if anyone should 
they be assigned to?

https://issues.apache.org/jira/issues/?jql=project%20%3D%20FLEX%20AND%20resolution%20%3D%20Unresolved%20AND%20assignee%20%3D%20adobejira%20ORDER%20BY%20priority%20DESC

Thanks,
Justin

Re: JIRA issues assigned to Adobe JIRA

2013-03-10 Thread Alex Harui
Not sure why they got assigned.  IMO, unless you are actively working on an
issue, issues should be unassigned.


On 3/10/13 8:56 PM, Justin Mclean jus...@classsoftware.com wrote:

 Hi,
 
 There a large number of issue assigned to Adobe JIRA. I'm assuming there were
 issue that were assign when the JIRA issue were imported. Who if anyone should
 they be assigned to?
 
 https://issues.apache.org/jira/issues/?jql=project%20%3D%20FLEX%20AND%20resolu
 tion%20%3D%20Unresolved%20AND%20assignee%20%3D%20adobejira%20ORDER%20BY%20prio
 rity%20DESC
 
 Thanks,
 Justin

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



[jira] [Updated] (FLEX-22768) Comments and an assertion for calcCheckBits

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-22768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-22768:
-

Assignee: (was: Adobe JIRA)

 Comments and an assertion for calcCheckBits
 ---

 Key: FLEX-22768
 URL: https://issues.apache.org/jira/browse/FLEX-22768
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27388) Flex SDK should support backward compatibility for double-dot releases

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27388?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27388:
-

Assignee: (was: Adobe JIRA)

 Flex SDK should support backward compatibility for double-dot releases
 --

 Key: FLEX-27388
 URL: https://issues.apache.org/jira/browse/FLEX-27388
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25641) Removing (removeChild()) then re-adding (addChild()) a TextArea recalls old formatting bug fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25641?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25641:
-

Assignee: (was: Adobe JIRA)

 Removing (removeChild()) then re-adding (addChild()) a TextArea recalls old 
 formatting bug fix
 --

 Key: FLEX-25641
 URL: https://issues.apache.org/jira/browse/FLEX-25641
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30458) QTP scripting cannot get value of DataGrid rows when selectable=false

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30458:
-

Assignee: (was: Adobe JIRA)

 QTP scripting cannot get value of DataGrid rows when selectable=false
 -

 Key: FLEX-30458
 URL: https://issues.apache.org/jira/browse/FLEX-30458
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23489) layout.elementRemoved() should get a reference to the item/element removed

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23489?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23489:
-

Assignee: (was: Adobe JIRA)

 layout.elementRemoved() should get a reference to the item/element removed
 --

 Key: FLEX-23489
 URL: https://issues.apache.org/jira/browse/FLEX-23489
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25571) Ability to Draw Cubic Bezier Curves Needed

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25571:
-

Assignee: (was: Adobe JIRA)

 Ability to Draw Cubic Bezier Curves Needed
 --

 Key: FLEX-25571
 URL: https://issues.apache.org/jira/browse/FLEX-25571
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25112) Add the ability to create soft and phantom object references wrap objects

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25112?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25112:
-

Assignee: (was: Adobe JIRA)

 Add the ability to create soft and phantom object references  wrap objects
 ---

 Key: FLEX-25112
 URL: https://issues.apache.org/jira/browse/FLEX-25112
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23457) potential fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23457?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23457:
-

Assignee: (was: Adobe JIRA)

 potential fix
 -

 Key: FLEX-23457
 URL: https://issues.apache.org/jira/browse/FLEX-23457
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23519) potential fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23519?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23519:
-

Assignee: (was: Adobe JIRA)

 potential fix
 -

 Key: FLEX-23519
 URL: https://issues.apache.org/jira/browse/FLEX-23519
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27665) Add the ability to remove the invalidation lifecycle

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27665?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27665:
-

Assignee: (was: Adobe JIRA)

 Add the ability to remove the invalidation lifecycle
 

 Key: FLEX-27665
 URL: https://issues.apache.org/jira/browse/FLEX-27665
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23679) IFilePromise addition for Socket and FileStream please

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23679:
-

Assignee: (was: Adobe JIRA)

 IFilePromise addition for Socket and FileStream please
 --

 Key: FLEX-23679
 URL: https://issues.apache.org/jira/browse/FLEX-23679
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25344) The MobileIconItemRenderer and MobileItemRenderer should offer variable font sizes and multi-line support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25344:
-

Assignee: (was: Adobe JIRA)

 The MobileIconItemRenderer and MobileItemRenderer should offer variable font 
 sizes and multi-line support
 -

 Key: FLEX-25344
 URL: https://issues.apache.org/jira/browse/FLEX-25344
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27606) UIBackgroundModes support for iOS

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27606:
-

Assignee: (was: Adobe JIRA)

 UIBackgroundModes support for iOS
 -

 Key: FLEX-27606
 URL: https://issues.apache.org/jira/browse/FLEX-27606
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-28034) ListCollectionView internalRefresh not available to extended class

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-28034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-28034:
-

Assignee: (was: Adobe JIRA)

 ListCollectionView internalRefresh not available to extended class
 --

 Key: FLEX-28034
 URL: https://issues.apache.org/jira/browse/FLEX-28034
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-26696) TypeError occured in UpdateDisplayList function of ButtonSkin.as and CheckBoxIcon.as

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-26696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-26696:
-

Assignee: (was: Adobe JIRA)

 TypeError occured in UpdateDisplayList function of ButtonSkin.as and 
 CheckBoxIcon.as
 

 Key: FLEX-26696
 URL: https://issues.apache.org/jira/browse/FLEX-26696
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24281) Remove the private methods in ScrollBarBase unless they are

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24281:
-

Assignee: (was: Adobe JIRA)

 Remove the private methods in ScrollBarBase unless they are
 ---

 Key: FLEX-24281
 URL: https://issues.apache.org/jira/browse/FLEX-24281
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27088) [Localization:Hisoft]:ENU:Core-Function:no check when compiling mxml or as files which include custom metadata tag

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27088:
-

Assignee: (was: Adobe JIRA)

 [Localization:Hisoft]:ENU:Core-Function:no check when compiling mxml or as 
 files which include custom metadata tag
 --

 Key: FLEX-27088
 URL: https://issues.apache.org/jira/browse/FLEX-27088
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24772) AIR SDK and Mac OSX Spaces

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24772:
-

Assignee: (was: Adobe JIRA)

 AIR SDK and Mac OSX Spaces
 --

 Key: FLEX-24772
 URL: https://issues.apache.org/jira/browse/FLEX-24772
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27049) Support for device-width and device-height CSS Media Queries

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27049:
-

Assignee: (was: Adobe JIRA)

 Support for device-width and device-height CSS Media Queries
 

 Key: FLEX-27049
 URL: https://issues.apache.org/jira/browse/FLEX-27049
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-26124) Ability to horizontally scroll a wide TabBar

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-26124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-26124:
-

Assignee: (was: Adobe JIRA)

 Ability to horizontally scroll a wide TabBar
 

 Key: FLEX-26124
 URL: https://issues.apache.org/jira/browse/FLEX-26124
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23648) fixes tab-cycle in non-continuous radio-button layouts

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23648:
-

Assignee: (was: Adobe JIRA)

 fixes tab-cycle in non-continuous radio-button layouts
 --

 Key: FLEX-23648
 URL: https://issues.apache.org/jira/browse/FLEX-23648
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33007) Patch for UID change plus Patch for memory leaks

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33007?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33007:
-

Assignee: (was: Adobe JIRA)

 Patch for UID change plus Patch for memory leaks
 

 Key: FLEX-33007
 URL: https://issues.apache.org/jira/browse/FLEX-33007
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30275) Ability to replay events on invisible objects

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30275:
-

Assignee: (was: Adobe JIRA)

 Ability to replay events on invisible objects
 -

 Key: FLEX-30275
 URL: https://issues.apache.org/jira/browse/FLEX-30275
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30429) More complicated control support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30429?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30429:
-

Assignee: (was: Adobe JIRA)

 More complicated control support
 

 Key: FLEX-30429
 URL: https://issues.apache.org/jira/browse/FLEX-30429
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33036) 16 bits black and white images support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33036?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33036:
-

Assignee: (was: Adobe JIRA)

 16 bits black and white images support
 --

 Key: FLEX-33036
 URL: https://issues.apache.org/jira/browse/FLEX-33036
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-32654) Column Chart // itemClick Event // pushes an error #1034 [INSIST UPDATE to RELEASE]

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-32654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-32654:
-

Assignee: (was: Adobe JIRA)

 Column Chart // itemClick Event // pushes an error #1034 [INSIST UPDATE to 
 RELEASE]
 ---

 Key: FLEX-32654
 URL: https://issues.apache.org/jira/browse/FLEX-32654
 Project: Apache Flex
  Issue Type: Bug
Affects Versions: Adobe Flex SDK Previous
 Environment: Affected OS(s): Windows
 Affected OS(s): Windows XP
 Language Found: English
Reporter: Adobe JIRA

 * Sudhir Manjunath: Please ACTUALLY read the issue BEFORE TAKING ACTION 
 *
 // WHY WAS THIS REACTIVATED? //
 The code snippet below (which handles the 1034 error) also prevents a HSlider 
 event. This means my users can't use the HSLIDER to control the chart's 
 number of viewable months because the error handler prevents the event.
 I found this issue during debug mode, when I was trying to assess why the 
 HSLIDER was not working. Again, it turns out the code snippett 
 (chartErrorHandler1034) below actually prohibits other change events in the 
 chart.
 In other words, the resolution for this matter is not satisfactory since it 
 causes more issues than it resolves.
 // FROM PREVIOUS:
 Found in Version: Flex Builder 3, Version 3, build 3.0.194161
 **I found at least 2 other recorded iterations of this issue within this Bug 
 database. It's unacceptable to me and my customers to rely on a critical flex 
 component and find it's not working. Being able to click on chart columns are 
 an intregal part of this component.
 Steps to reproduce:
 1. Create a Column Chart, connect it to a viable dataprovider
 2. Add the an itemClick event with the chart tag mx:ColumnChart id=myChart 
 itemClick=chartChange(event.hitData.item)/
 3. Complie the chart
 4. Click on the bar
  
  Actual Results:
  Error #1034 is displayed in a dialog box. See error.TXT attachment.
  
  Expected Results:
  This should cause an event trigger and execute a function or declare a 
 variable.
  
  Workaround (if any):
 **The code below is the temporary workaround, but is unacceptable as it 
 prevents other events as well. For instance, the change= event trigger for 
 the HSlider component doesn't work because of the work around below.
 private function chartErrorHandler1034():void
 {
 vbChartCY.addEventListener(ChartItemEvent.CHANGE, chartItemEventChange, true, 
 0, true);
 }
   
 private function chartItemEventChange(event:Event):void
 {
 event.stopImmediatePropagation();
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24354) toRadians/toDegrees helper methods

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24354:
-

Assignee: (was: Adobe JIRA)

 toRadians/toDegrees helper methods
 --

 Key: FLEX-24354
 URL: https://issues.apache.org/jira/browse/FLEX-24354
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24773) SkinParts are public but not as useful as they could be. Make these Bindable.

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24773:
-

Assignee: (was: Adobe JIRA)

 SkinParts are public but not as useful as they could be. Make these Bindable.
 -

 Key: FLEX-24773
 URL: https://issues.apache.org/jira/browse/FLEX-24773
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-28939) Push Notifications in iOS using Flex Mobile

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-28939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-28939:
-

Assignee: (was: Adobe JIRA)

 Push Notifications in iOS using Flex Mobile
 ---

 Key: FLEX-28939
 URL: https://issues.apache.org/jira/browse/FLEX-28939
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25817) file url scheme should always be accessible

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25817?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25817:
-

Assignee: (was: Adobe JIRA)

 file url scheme should always be accessible
 ---

 Key: FLEX-25817
 URL: https://issues.apache.org/jira/browse/FLEX-25817
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33008) Patch for HierarchicalViewCollection used in Tree control

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33008?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33008:
-

Assignee: (was: Adobe JIRA)

 Patch for HierarchicalViewCollection used in Tree control
 -

 Key: FLEX-33008
 URL: https://issues.apache.org/jira/browse/FLEX-33008
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


  1   2   >