[jira] [Resolved] (FLEX-20370) DateField do not honor min or maxYear setting.

2013-05-08 Thread Justin Mclean (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-20370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean resolved FLEX-20370. -- Resolution: Fixed Fix Version/s: Apache Flex 4.10.0 Checked into develop branch.

[jira] [Resolved] (FLEX-15087) DateChooser allows selection of dates outside selectable range.

2013-05-08 Thread Justin Mclean (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-15087?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean resolved FLEX-15087. -- Resolution: Cannot Reproduce Fix Version/s: Apache Flex 4.10.0 Fixed in earlier version

Re: [DISCUSS] Github based Whiteboard proposal

2013-05-08 Thread OmPrakash Muppirala
I have added you to the apacheflex github organization. Your whiteboard repo is available at: https://github.com/apacheflex/whiteboard_doublefx You should have received a notification. Let me know if you dint receive anything. There is a CONTRIBUTING.md file at the root of your repo which has

Re: 480 DPI density mobile support

2013-05-08 Thread OmPrakash Muppirala
Any luck with this? If you let me know the related files, I can take a stab at it. Thanks, Om On Sun, May 5, 2013 at 11:24 PM, OmPrakash Muppirala bigosma...@gmail.comwrote: I did a quick test and scaleX=2 scaleY=2 works fine with the examples you provided. I think a scale transform on all

DateCalendar magic numbers

2013-05-08 Thread Justin Mclean
Hi, Just thought I'd share this lovely bit code from CalendarLayout. Anyway want to have a go at rewriting it so that's its human readable? I particular like: - How it possible to get a value of s1 (eg 10) that's not in the switch statement. - There's a check for !startDate first but the

Re: 480 DPI density mobile support

2013-05-08 Thread Justin Mclean
HI, If you let me know the related files, I can take a stab at it. It's everything under frameworks/projects/mobiletheme/src/spark/skins/mobile/mobile480 in the 480dpi branch, files there are just a copy of the the 320 dpi files. Free free to delete everything in that directory and start

RE: [FalconJX] Using RIATest

2013-05-08 Thread Tigran Najaryan
From: Alex Harui [mailto:aha...@adobe.com] You don't have to do the automation scripts for all of these. I was going to try to find time to do one or two myself just to force me to see how this stuff works and make sure it will work on these different flavors of JS UI layers. OK, feel free

Re: DateCalendar magic numbers

2013-05-08 Thread Erik de Bruin
Just because I can't let something like this go... I wasn't able to test this, so mileage may vary ;-) function removeRangeFromSelection(startDate:Date, endDate:Date):void { var n:int, rangeEnd:Date, rangeStart:Date; if (!endDate || endDate startDate) return; for (n = 0; n

Re: [DISCUSS] Github based Whiteboard proposal

2013-05-08 Thread Frédéric THOMAS
Thanks Om, 2 things though: - The email address to add is webdoublefx at gmail dot com - I would rather prefer my repo with the name whiteboard_fthomas_developerToolSuite -Fred -Message d'origine- From: OmPrakash Muppirala Sent: Wednesday, May 08, 2013 9:26 AM To:

Re: Flex SDK Video access via CameraRoll/CameraUI local video access

2013-05-08 Thread Cosma Colanicchia
Sadly, still no news about mobile device video support in AIR 3.8 beta.. ( CameraRoll.browseForVideo(), acquired videos playback, snapshot extraction, ecc.) 2013/4/6 Alex Harui aha...@adobe.com Sounds like an AIR thing. Is what you want possible via PhoneGap/Cordova? We are looking into

Re: DateCalendar magic numbers

2013-05-08 Thread Justin Mclean
Hi, Just because I can't let something like this go... It was particularly special bit of code wasn't it :-) I forgot to mention one of my fav lines: _selectedRanges[n].rangeEnd = incrementDate(startDate,-1); (Which I'm fairly certain is incorrect) I wasn't able to test this, so

Re: Update Apache Flex release notes

2013-05-08 Thread Nicholas Kwiatkowski
I'll take care of it this evening. There are a few grammar corrections I need to make in the README as well. On Tue, May 7, 2013 at 4:03 AM, Justin Mclean jus...@classsoftware.comwrote: Hi, And it also include falcon and other issue that probably shouldn't be there - as far as I can see

Re: Update Apache Flex release notes

2013-05-08 Thread Justin Mclean
Hi, I'll take care of it this evening. There are a few grammar corrections I I'm sure there are - it's a work in progress. Thanks, Justin

Re: DateCalendar magic numbers

2013-05-08 Thread Erik de Bruin
Justin, I think it's correct... it sets the new range end date for the first half of the now split range. As both the start and the end date fall within the range, it needs to be split in two: the first one from the range start to the day before the start date (which is the one we're looking at)

[jira] [Updated] (FLEX-33502) Files missing Apache licence

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33502?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Erik de Bruin updated FLEX-33502: - Assignee: Erik de Bruin Files missing Apache licence

[jira] [Resolved] (FLEX-33502) Files missing Apache licence

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33502?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Erik de Bruin resolved FLEX-33502. -- Resolution: Fixed Fix Version/s: Apache Flex 4.10.0 Rat didn't report the file in

[jira] [Commented] (FLEX-33451) The release build due to the Git migration is broken

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33451?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651848#comment-13651848 ] Erik de Bruin commented on FLEX-33451: -- Justin, can you elaborate on what issues you

Re: DateCalendar magic numbers

2013-05-08 Thread Justin Mclean
Hi, I think it's correct... Including the increment by -1? There is an off by one error in there somewhere. It's reproducible. Thanks, Justin

Re: DateCalendar magic numbers

2013-05-08 Thread Erik de Bruin
As far as I can tell, the -1 increment causes 8640 milliseconds to be subtracted (?) from the time of the date you enter (1 day)... I'm gonna test this now. EdB On Wed, May 8, 2013 at 2:57 PM, Justin Mclean jus...@classsoftware.com wrote: Hi, I think it's correct... Including the

Re: DateCalendar magic numbers

2013-05-08 Thread Erik de Bruin
Yes, the 'incrementDate' method works as expected, AFAICT. The default (+1) adds a day, adding -1 as the second argument subtracts a day. What are the inputs you are testing with? EdB On Wed, May 8, 2013 at 3:03 PM, Erik de Bruin e...@ixsoftware.nl wrote: As far as I can tell, the -1

[jira] [Commented] (FLEX-33508) Ant frameworks fails with TLF_HOME issue

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651871#comment-13651871 ] Erik de Bruin commented on FLEX-33508: -- I'm unable to reproduce this on my Mac (OS X

[jira] [Commented] (FLEX-33506) Ant doc reports build successful when there's an fatal error

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33506?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651894#comment-13651894 ] Erik de Bruin commented on FLEX-33506: -- I looked into this a bit. All the asdoc tasks

[jira] [Commented] (FLEX-33506) Ant doc reports build successful when there's an fatal error

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33506?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651894#comment-13651894 ] Erik de Bruin commented on FLEX-33506: -- I looked into this a bit. All the asdoc tasks

[jira] [Commented] (FLEX-33475) Advanced Data Grid throwing script error

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33475?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651899#comment-13651899 ] Erik de Bruin commented on FLEX-33475: -- Hi, As you have obviously spent some time

[jira] [Commented] (FLEX-33505) value property of NumericStepper does not update on text input

2013-05-08 Thread Erik de Bruin (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33505?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651906#comment-13651906 ] Erik de Bruin commented on FLEX-33505: -- Looks like this might be fixed by calling

[jira] [Commented] (FLEX-33389) The width of the last column header on a horizontally scrolling datagrid

2013-05-08 Thread Koen Weyn (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-33389?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13651944#comment-13651944 ] Koen Weyn commented on FLEX-33389: -- This becomes a bigger problem when you use word wrap

Re: DateCalendar magic numbers

2013-05-08 Thread Justin Mclean
Hi, Yes, the 'incrementDate' method works as expected, AFAICT. It may do but there is still an issue - see this JIRA: https://issues.apache.org/jira/browse/FLEX-13423 (+1) adds a day, adding -1 as the second argument subtracts a day. Sure but my point was that something called increment

In AIR, would WindowedSystemManager not be used no longer?

2013-05-08 Thread Pepe
Hello I checked WindowedApplication#systemManager, it was SystemManager but not WindowedSystemManager. Was this changed? Or WindowedApplication#systemManager was SystemManager since Adobe Flex? thanks Shigeru Nakagaki

Re: DateCalendar magic numbers

2013-05-08 Thread Erik de Bruin
As a non-native English speaker, I'd have used 'shiftDate()' or something along those lines, but that'd probably be subject to comments as well ;-) EdB On Wed, May 8, 2013 at 4:55 PM, Justin Mclean jus...@classsoftware.com wrote: Hi, Yes, the 'incrementDate' method works as expected,

Re: In AIR, would WindowedSystemManager not be used no longer?

2013-05-08 Thread Alex Harui
Adobe Flex is the same way. On 5/8/13 8:52 AM, pepe.f...@gmail.com pepe.f...@gmail.com wrote: Hello I checked WindowedApplication#systemManager, it was SystemManager but not WindowedSystemManager. Was this changed? Or WindowedApplication#systemManager was SystemManager since Adobe

Re: [DISCUSS] Github based Whiteboard proposal

2013-05-08 Thread Alex Harui
I added webdoublefx at gmail dot com. Do we want to have a strict naming convention for the whiteboards and restrict it to whiteboard_apacheid? What would be the pros and cons? Fred, do you want _developerToolSuite added to the name because you may want a different whiteboard for a different

Vacation time again

2013-05-08 Thread Gordon Smith
I won't be committing, or responding on this list, for the next four weeks because I'll be on vacation until June 5. When I come back I plan to work on reducing the errors and warnings that Falcon produces when compiling various SDK SWCs. At the moment 20 of the tests in SDKSWCTests are

Re: Vacation time again

2013-05-08 Thread Erik de Bruin
Have a great time, Gordon! EdB On Wed, May 8, 2013 at 7:31 PM, Gordon Smith gosm...@adobe.com wrote: I won't be committing, or responding on this list, for the next four weeks because I'll be on vacation until June 5. When I come back I plan to work on reducing the errors and warnings

Re: [DISCUSS] Github based Whiteboard proposal

2013-05-08 Thread OmPrakash Muppirala
On Wed, May 8, 2013 at 9:33 AM, Alex Harui aha...@adobe.com wrote: I added webdoublefx at gmail dot com. Do we want to have a strict naming convention for the whiteboards and restrict it to whiteboard_apacheid? What would be the pros and cons? Yes for strict naming convention. No for

Re: [jira] [Updated] (FLEX-16334) VBox: maxVerticalScrollPosition == 0 if VBox has scrollbar and heigth has value in percent

2013-05-08 Thread sujith Reddy
How to unscubscribe from these emails? Thanks, Sujith On Tue, May 7, 2013 at 5:33 AM, Justin Mclean (JIRA) j...@apache.orgwrote: [ https://issues.apache.org/jira/browse/FLEX-16334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel] Justin Mclean updated FLEX-16334:

Re: [jira] [Updated] (FLEX-16334) VBox: maxVerticalScrollPosition == 0 if VBox has scrollbar and heigth has value in percent

2013-05-08 Thread Mark Kessler
The Jira emails are sent to the dev@flex.apache.org list. To unsubscribe from the dev list send a blank email to [1] [1] dev-unsubscr...@flex.apache.org -Mark On Wed, May 8, 2013 at 4:14 PM, sujith Reddy sujith...@gmail.com wrote: How to unscubscribe from these emails? Thanks, Sujith

[jira] [Assigned] (FLEX-11275) When an Image control is sized to a size smaller than the bitmap's dimensions, querying the height and with does not give the correct result

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler reassigned FLEX-11275: --- Assignee: Mark Kessler When an Image control is sized to a size smaller than the

[jira] [Updated] (FLEX-11275) When an Image control is sized to a size smaller than the bitmap's dimensions, querying the height and with does not give the correct result

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler updated FLEX-11275: Attachment: test.png Test image used When an Image control is sized to a size

[jira] [Resolved] (FLEX-11275) When an Image control is sized to a size smaller than the bitmap's dimensions, querying the height and with does not give the correct result

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-11275. - Resolution: Cannot Reproduce Using below test application, was unable to reproduce problem.

[jira] [Commented] (FLEX-11276) When a text field, that not this visible one in a form, receives the focus, it is not visible, the bar of scroll does not move.

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11276?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13652534#comment-13652534 ] Mark Kessler commented on FLEX-11276: - Using modified test application below was able

[jira] [Resolved] (FLEX-11450) Networking ceases to function when the main application window is closed on MS Windows.

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-11450. - Resolution: Incomplete Assignee: Mark Kessler Does not contain test code or example.

[jira] [Closed] (FLEX-11450) Networking ceases to function when the main application window is closed on MS Windows.

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11450?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-11450. --- Networking ceases to function when the main application window is closed on MS Windows.

[jira] [Closed] (FLEX-11275) When an Image control is sized to a size smaller than the bitmap's dimensions, querying the height and with does not give the correct result

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-11275. --- When an Image control is sized to a size smaller than the bitmap's dimensions, querying the

[jira] [Resolved] (FLEX-11456) DataGrid.focusInHandler doesn't work correctly with a button inside a header renderer

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-11456. - Resolution: Cannot Reproduce Assignee: Mark Kessler Using below test application cannot

[jira] [Closed] (FLEX-11456) DataGrid.focusInHandler doesn't work correctly with a button inside a header renderer

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-11456. --- DataGrid.focusInHandler doesn't work correctly with a button inside a header renderer

[jira] [Assigned] (FLEX-11491) Icons In TabNavigator not placed properly when TabNavigator inside a TitleWindow

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler reassigned FLEX-11491: --- Assignee: Mark Kessler Icons In TabNavigator not placed properly when TabNavigator

[jira] [Resolved] (FLEX-11491) Icons In TabNavigator not placed properly when TabNavigator inside a TitleWindow

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler resolved FLEX-11491. - Resolution: Cannot Reproduce Using below test application. Was unable to reproduce issue. Must

[jira] [Closed] (FLEX-11491) Icons In TabNavigator not placed properly when TabNavigator inside a TitleWindow

2013-05-08 Thread Mark Kessler (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-11491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Kessler closed FLEX-11491. --- Icons In TabNavigator not placed properly when TabNavigator inside a TitleWindow

Re: DateCalendar magic numbers

2013-05-08 Thread Justin Mclean
Hi, As a non-native English speaker, I'd have used 'shiftDate()' Lease out the f and you have it right. :-) There's another bug in that code as it doesn't respect daylight saving boundaries. Your suggested changes worked fine btw, I've replaced the method and both the DataChooser and

[jira] [Resolved] (FLEX-12749) DateChooser doesn't handle Daylight Saving Time correctly with multiple selection=on

2013-05-08 Thread Justin Mclean (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-12749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean resolved FLEX-12749. -- Resolution: Fixed Fix Version/s: Apache Flex 4.10.0 Issue occurred in all locales

[jira] [Resolved] (FLEX-13423) DateChooser selectedRanges gives selectedRange start+1 day [if selectedRanges.rangeStart is same as selectableRange.rangeStart]

2013-05-08 Thread Justin Mclean (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-13423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean resolved FLEX-13423. -- Resolution: Fixed Fix Version/s: (was: Adobe Flex SDK 3.0 (Release))

[jira] [Resolved] (FLEX-16676) When setting the date range for the DataPicker,it will not correctly update the datechooser's property selectedranges on the first day

2013-05-08 Thread Justin Mclean (JIRA)
[ https://issues.apache.org/jira/browse/FLEX-16676?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Justin Mclean resolved FLEX-16676. -- Resolution: Fixed Checked into develop branch. When setting the date range