Questions tagged [flex-mx]

MX is a standard library for skinning components in Adobe Flex.

MX (sometimes referred to as Halo) is a standard library for skinning components in Adobe Flex.

MX is being superseded by .

46 questions
0
votes
1 answer

Issue with PDF displaying correctly in Flex mx:HTML control in Windows / Reader X

I'm having an issue with the PDF displaying outside the viewable area of the mx:HTML control in Flex. When the application starts up - the mx:HTML is set to a certain size, but can be enlarged if the application is maximized. These are the following…
Neal Hudson
  • 231
  • 1
  • 5
  • 17
0
votes
1 answer

Custom ContextMenu not displaying in MX TextArea

Been tearing my hair out for ages trying to get my custom ContextMenu to apply to a TextArea, It will just display the default (copy, paste ect...). import mx.events.FlexEvent; public var nm:NativeMenu = new NativeMenu(); …
bigtallbill
  • 621
  • 6
  • 12
0
votes
1 answer

Set Flex MX ComboBox background color using CSS

Is there a way using CSS, to set a mx.controls.ComboBox's background color. This would be the background color of each row when the ComboBox is clicked (expanded). I've tried backgroundColor, fillColors and backgroundGradientColors without…
Steve Kuo
  • 61,876
  • 75
  • 195
  • 257
0
votes
4 answers

How to implement drag and drop in Flex Grid control?

I have a simple Grid control with some buttons that I want to be able to move around. The code below does work, but it takes a lot of effort to actually do the drag&drop and it is not clear where the drop will happen. I have to move the mouse around…
Bogdan
  • 1,150
  • 3
  • 11
  • 17
0
votes
1 answer

Where is Border component in Flex/mx library?

I have an old Flex app build with the Halo library. Now that Halo was changed to mx library, it makes the old Border component stop working and I'm unable to build the project anymore. Even when I try to change the library to MX, the Border cannot…
thethanghn
  • 319
  • 2
  • 5
  • 21
0
votes
1 answer

flex: how to Make two resize effect at the same time

Hy, Is it possible to resize the application at the same moment when the Accordion size change, to make effect resize og the last one synchronised with resize of Application ? In my code,, the Application is resized after the resize of Accordion is…
123quatre
  • 1
  • 1
0
votes
2 answers

Change flex disclosure icon

At mx:Tree the folders has a folder icon and a disclosure icon(grey arrow in default style). I can easily set different folder icons with iconFunction. How can I change the disclosure icons? (I want to set different icon to each folders).
user1552545
  • 1,233
  • 3
  • 15
  • 33
0
votes
1 answer

Flex reset mx:TitleWindow close button skin

Hi I loaded a css to change my TitleWindow close button using TitleWindow { close-button-skin:Embed("/../img/close_up.png"); close-button-over-skin:Embed("/../img/close_over.png"); …
Sonny G
  • 5
  • 1
0
votes
1 answer

Change sort arrow position in flex grid

Currently when sorting in a flex grid, the sort arrow that shows whether the column is sorted ascending or descending is right aligned to the column. Is there anyway to change the position of the sort arrow, such as applying padding?
Ben
  • 784
  • 3
  • 12
  • 32
0
votes
1 answer

flex grid scrollbar pushing all columns to the left

I have a flex grid where I have the verticalScrollPolicy="auto". But every time when the scrollbar appears all the columns get pushed to the left, making the columns not align as they should. I tried setting minWidth on all the columns to prevent…
jon
  • 5
  • 3
0
votes
1 answer

how to embed image into flex grid column

Is there an easy way to embed an image into a flex grid column? Something similar to:
jon
  • 5
  • 3
0
votes
1 answer

applying paddingRight to flex grid column not to grid header

Whenever I add paddingRight to a column in the flex grid, it adds the padding to the header as well. Is anyone familiar with how I can add paddingRight just to the column and not to the header? Below is the column code where I was specifying the…
Ben
  • 784
  • 3
  • 12
  • 32
0
votes
2 answers

Remove gridheader rollover in flex

Is there a way to remove the grid header rollover in flex while still maintaining a sortable header?
jon
  • 3
  • 1
0
votes
1 answer

How to customize flex tree icon programatically

I can modify the icons of mx.controls.Tree component using…
manjs
  • 187
  • 1
  • 16
0
votes
1 answer

Is it possible to set specific border side color of GridItem in ActionScript?

What I would like to achieve is for GridItem , I would like to set left/right/top/bottom border side with specific color. For instance,like the css: border-left:solid red 3px; border-right:solid violet 4px; border-top:solid blue…
minly
  • 1
  • 1