[jira] [Commented] (FLEX-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-14 Thread Erik de Bruin (JIRA)

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

Erik de Bruin commented on FLEX-33542:
--

This is how far I've come:

- this is not related to any specific component, seems to be originating way 
deep in the SDK, or it may even be a compiler artefact...
- when the component uses a cursor provided in 'Assets.swf' (which is 
apparently embedded in the SDK) AND there is another SWF embedded in the 
application somewhere, that second SWF is ALSO used as a cursor (overlaid, as 
it were)
- I've created a custom component (CursorButton.as, attached) that reproduces 
the issue (using the animation provided in the original example)
- I hit a dead end in 'CursorManager::get impl()' where it says: 
Singleton.getInstance(mx.managers::ICursorManager); my brain went 'whoosh' 
and threw an error ;-)

So, to the brave soul that takes it from here: Godspeed!

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
Assignee: Alex Harui
 Attachments: AdvDataGridBugTest.zip, CursorButton.as


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-14 Thread Edward Trochim (JIRA)

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

Edward Trochim commented on FLEX-33542:
---

This is the workaround I am using in my application.

I pulled the CursorStretch.fxg file from the SDK source into my project. I then 
set stretchCursor={CursorStretch} for each DataGrid and AdvancedDataGrid in 
my project. You can also set advDataGrid.setStyle(stretchCursor, 
CursorStretch); both work equally well.

What is interesting is what I discovered while coming up with this workaround. 
If you set stretchCursor to the CursorStretch class via CSS then the issue will 
present itself. However, if you set stretchCursor to an embedded image in CSS 
then the issue will go away. I did not use this method though because this 
caused the cursor to be left aligned instead of center aligned, causing the 
cursor to appear directly to the right of the separator.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
Assignee: Alex Harui
 Attachments: AdvDataGridBugTest.zip, CursorButton.as


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-14 Thread Edward Trochim (JIRA)

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

Edward Trochim commented on FLEX-33542:
---

I edited my previous comment. I tried reproducing it again by applying the FXG 
component via CSS and it worked this time. I must have been seeing something 
different. Using CSS is an easier workaround.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
Assignee: Alex Harui
 Attachments: AdvDataGridBugTest.zip, CursorButton.as


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Justin Mclean (JIRA)

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

Justin Mclean commented on FLEX-33542:
--

Can you provide a sample code showing this issue? It will be easier to fix if 
we have code to look at.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim

 The mx:AdvancedDataGrid control in Flex 4.9.1 is interacting very oddly when 
 the application has an embedded SWF. When a user mouses over the header 
 column separators in the AdvancedDataGrid the SWF will display on top of the 
 mouse cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Edward Trochim (JIRA)

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

Edward Trochim commented on FLEX-33542:
---

I attached the Flex Builder project I created to test this bug but you can also 
right click - view source from the link above.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
 Attachments: AdvDataGridBugTest.zip


 The mx:AdvancedDataGrid control in Flex 4.9.1 is interacting very oddly when 
 the application has an embedded SWF. When a user mouses over the header 
 column separators in the AdvancedDataGrid the SWF will display on top of the 
 mouse cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Justin Mclean (JIRA)

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

Justin Mclean commented on FLEX-33542:
--

Confirmed - doesn't happen in Adobe Flex 4.6 either.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
 Attachments: AdvDataGridBugTest.zip


 The mx:AdvancedDataGrid control in Flex 4.9.1 is interacting very oddly when 
 the application has an embedded SWF. When a user mouses over the header 
 column separators in the AdvancedDataGrid the SWF will display on top of the 
 mouse cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Justin Mclean (JIRA)

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

Justin Mclean commented on FLEX-33542:
--

Also happens with mx:Datagrid.

mx:DataGrid 
width=100% height=100%
dataProvider={dpADG}
mx:columns
mx:DataGridColumn dataField=Artist /
mx:DataGridColumn dataField=Album /
mx:DataGridColumn dataField=Price /
/mx:columns
/mx:DataGrid 

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
 Attachments: AdvDataGridBugTest.zip


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Justin Mclean (JIRA)

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

Justin Mclean commented on FLEX-33542:
--

And also spark data grid - so more likely an issue with Cursors or SWFLoader?

s:DataGrid
width=100% height=100%
dataProvider={dpADG}

s:columns
s:ArrayList
s:GridColumn dataField=Artist /
s:GridColumn dataField=Album /
s:GridColumn dataField=Price /
/s:ArrayList
/s:columns

/s:DataGrid

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
 Attachments: AdvDataGridBugTest.zip


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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-33542) mx:AdvancedDataGrid header column separators display embedded SWF on mouseover

2013-05-07 Thread Justin Mclean (JIRA)

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

Justin Mclean commented on FLEX-33542:
--

And also with s:Image (inside or outside a declaration block) rather than 
mx:SWFLoader.

 mx:AdvancedDataGrid header column separators display embedded SWF on mouseover
 --

 Key: FLEX-33542
 URL: https://issues.apache.org/jira/browse/FLEX-33542
 Project: Apache Flex
  Issue Type: Bug
  Components: .Unspecified - Framework
Affects Versions: Apache Flex 4.9.0
Reporter: Edward Trochim
 Attachments: AdvDataGridBugTest.zip


 The mx:AdvancedDataGrid control in Flex 4.9.1 is acting very oddly when the 
 application has an embedded SWF. When a user mouses over the header column 
 separators in the AdvancedDataGrid the SWF will display on top of the mouse 
 cursor. A demonstration of this behavior can be found here: 
 https://dl.dropboxusercontent.com/u/11780410/AdvDataGridBugTest/AdvDataGridBugTest.html

--
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