Tag Archives: Flex 4

Flex 4 – cut/Copy/Paste context menus not appearing

The right-click context menu for s:TextArea s:RichTextEditor, s:TextEdit, etc. is an expected feature for any sort of form functionality however a bug in s:Panel breaks this functionality whenever the control is inside an s:Panel item. <s:Application xmlns:fx=”http://ns.adobe.com/mxml/2009″ xmlns:s=”library://ns.adobe.com/flex/spark” xmlns:mx=”library://ns.adobe.com/flex/mx”> … … Continue reading

Posted in Flex, Programming | Tagged , , , | Leave a comment

Flex Itemrenderer content overflow

There seems to be a problem with MXItemRenderer derivative classes resizing percentage-based widths. datagrid:- <mx:DataGrid id=”dataGrid” dataProvider=”{dataProvider}” includeIn=”data” sortableColumns=”false” resizableColumns=”false” draggableColumns=”false” verticalScrollPolicy=”on” wordWrap=”true” variableRowHeight=”true” rowCount=”10″ maxHeight=”500″ width=”100%”> <mx:columns> <mx:DataGridColumn headerText=”new data” itemRenderer=”com.test.NewItemRenderer”/> </mx:columns> </mx:DataGrid> newItemRenderer.mxml:- <s:MXDataGridItemRenderer xmlns:fx=”http://ns.adobe.com/mxml/2009″ xmlns:s=”library://ns.adobe.com/flex/spark” xmlns:mx=”library://ns.adobe.com/flex/mx”  focusEnabled=”true” … Continue reading

Posted in Flex | Tagged , , , , | Leave a comment

Thoughts on Flex 4

I have been working on a Flex 4 project for the past 3 or so months using the Potomac Framework (an OSGi-like framework for flash). We started off with the Flex 4 Beta 2 framework and have now moved to … Continue reading

Posted in Flex, Programming | Tagged , , , , , | Leave a comment