flex3

Flex GUI for C++ application, how to do it?

What is the method to create a flex GUI for a c++ API and connect them? what is the procedure to do that? If any one can give me a helloworld example or some example it would be very easy to understand!! Thanks in advance. ...

operation based on alert box

is it any possible to create operation based on the alert box(like yes or no option)? Thank's in advance... ...

Flex Datagrid: Creating a timetable

Hi guys, I have some data passed into the flex via webservices, and want to create a timetable. As of current, I have a timetable but the day is a column, time is a column and so on, by mapping the datafield to those columns. I need to flip this around and have all day columns and one time column, with each day column filter to the day...

Consuming flex3 components in Visual Composer 7.2 using Web Dynpro

Hi All, Is there a way to export Table data to a MIME Resource(Flex3 component) from Web Dynpro? I have a flex3 component(US heat Map) which accepts a arrayCollection (state and value pairs). I need to create a webdynpro wrapper for this to use in Visual Composer 7.2. What I am trying to do is migrate the flex components I made for Vi...

Flex 3 UIComponent width property not working

I have a flex 3 application in which I draw my own UI. It is a player-style app, so it has a bar that fills as the media plays. I do this with this code: bgRect=new UIComponent(); bgRect.graphics.lineStyle(0); bgRect.graphics.beginFill(0xFFFFFF,1); bgRect.graphics.drawRect(0,0,399,20); bgRect.graphics.endFill(); bgRect.addEventListener(...

A newbie question on cairngorm

I am very new to Flex (started learning a couple of days back), I now have some understanding on how to create user interfaces with Flex and how to do MVC with Cairngorm and I really started liking it. But I am still lost with changing views using Cairngorm or entirely in Flex. Being a Java/J2EE developer for more than 10 years, it helps...

scroll tabs in flex 3

Hi, I need to make a tab navigator in flex3. If no. of tabs increases then i need to show scrollbar to navigate over the tabs. I am trying to do this using tabBar. But if no. of tab increases it puts scrollbar around the parent of tabBar and its content. Whereas i need to scroll only tabs not its content like in firefox. Could anybody...

Slow sorting on datagrid column with custom item renderer

We have a Flex DataGrid with 3 columns of which one of them has a custom inline itemrenderer that renders an icon in the cell via an Image component, depending on the data in the row. The problem is now that sorting this column is incredibly slow. It's OK when we only have a few rows of data in there, but as soon as we have a few hundre...

How can I trigger a transition effect when a child control is added or removed in flex?

I've got a custom component that has children components dynamically added and removed to it depending on what button the user clicks. What I would like to do is trigger a transition effect that moves the child component onto the stage when it's added and then moves it off when it's removed. Does anyone have a good example on how to acc...

How do I access the dataGridColumn from it's itemRenderer?

I am using a custom componenet based off of text as an itemRenderer for a dataGrid that is displaying an XMLList. I want to be able to re-use this itemRenderer for multiple columns, how do I access the dataGridColumn so I know which field to assign to the text value? super.data gives me the whole XML item, super.parentDocument gives me ...

Adding Tomcat Plugin to Flex Builder

Is there anyway we can add the tomcat eclipse plugin to Adobe Flex Builder 3? In other words can we add all eclipse plugins to Flex Builder also? ...

date format with adobe flex

Hello, I have a date and I would like to format the date like that: YYYYMMDD HHMMSS so for today it's 20100304 173000 But when I'm doing this: var todayStr:String = today.getFullYear()+today.getMonth()+today.getDay()+today.getHours()+today.getMinutes(); the problem is for March getMonth() sent "3" and I would like "03". There is the ...

How can I implement drag-out-to-delete in Flex?

I have a List component from which I'd like to be able to remove items using drag & drop, but without having a specific target. If you use the mac, the behaviour I'm looking for is something like what the Dock uses; when you drag something out of the bounds of the control it should get an icon that indicates that it'll be deleted (OSX us...

How can I access the implicit event dispatcher of a bindable Flex object?

If I create an object like so: class Foo { [Bindable] public var property: String; } The class Foo has an implicit event dispatcher to handle property change events. How can I access that without making Foo explicitly extend EventDispatcher? ...

How can I reference a nested component via CSS in Flex 3?

Using CSS, how would I reference the Button component? FWIW, I'm using Flex 3.x SDK. <mx:HBox id="myHBox" styleName="myHBox"> <mx:Button label="Test"/> </mx:HBox> ...

Flex Tree doesn't always "highlight" selectedItems...

I have an array of items that should be selected in my tree control. As you can see from my code below, I bind this array to the selectedItems property of the tree. If the selectedItems are toward the top of the tree, then the selection works just fine. However, if the items are toward the bottom of the tree, Flex seems to "ignore" my...

Integrate flex 3.5 projects in flash builder 4 beta 2

Hi I'm currently using Flex Builder 3 and Flex SDK 3.5 for my projects. But I'd like to try out the new Flash Builder 4. So I downloaded and installed the new software, configured all the additional software like subversion, server adapter .. and finally a importet my 2 projects. 1) Main Project (includes a swc generated by the Libra...

Adobe Flex file uploader

Hi! I've been scouring the web to find a tutorial on how to implement a flex uploader, but didn't find any :( Some tutorials just give the code and doesn't explain how to use them(sorry, i'm a newbie to flex) can u geeks suggest some good tutorials? :) thanks. ...

Font not showing bullet points

I have embedded my font using the embed meta tag, along which the entire range of Unicode characters... here is my CustomTextField class: [Embed(source='../assets/fonts/Arial.ttf',fontName='CustomFont',fontWeight='regular', unicodeRange='U+0020-U+0040,U+0041-U+005A,U+005B-U+0060,U+0061-U+007A,U+007B-U+007E,U+0080-U+00FF,U+01...

Compilation of Flex 3.0 Application

How to develop and compile a Flex application without Flex Builder? ...