var contextMenu:ContextMenu = new ContextMenu();
contextMenu.hideBuiltInItems();
var contactList : ContextMenuItem = new ContextMenuItem("Add to Existing List");
contactList.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, doStaticListCommand);
var newContactList : ContextMenuItem = new ContextMe...
How do i use http://flare.prefuse.org/ with Flash CS3 in AS3. I don't intend to use Flex.
Please tell me the simplest way to do that. I am just a novice in Flash
Thanks!
...
I wahnt to change button appearance when it was clicked.
<?xml version="1.0" encoding="utf-8"?>
<s:Button xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="init()">
<fx:Script>
<![CDATA[
...
I am generating an areachart and i need to mark the nodes where values exists at corresponding x and y , but the data tip should not appear. Only presence of mark to indicate the value exists at that particular point is enough, how can it be done?
...
Hello,
I am doing this simple project using Flex 4 SDK and I got stuck with this simple problem: I have turned sortable property for AdvancedDataGridColumn to false, but the column header is still rendered as:
As You can see, my label for this header is "06", but the column header is divided and it keeps the place for sort arrow.
How...
I've been looking into the P2P support in Flash 10, using Adobe Stratus service. I have successfully been able to send data from one user to another, put my problem is that I haven't figured out how to send data back in some easy way (or as some kind of response to the first call).
What I'm currently doing;
First set up a connection w...
So, it's been about 3 years since I wrote and went live with my company's main internet facing website. Originally written in php, I've since just been making minor changes here and there to progress the site as we've needed to.
I've wanted to rewrite it from the ground up in the last year or so and now, we want to add some major featur...
How can I add an MXML component as a child of the main application using ActionScript. It's not possible to instatiate it, is it? Assuming that behind every mxml file stands an actionscrpt3 class, I tried to import it but id didn't show up.
...
am having a problem with placing buttons in a horizontal list and having them not resize correctly (by width) when they are buttons of differing size. I am bringing them in dynamically through an xml file.
<mx:HorizontalList selectionColor="0x00ffffff" borderAlpha="0" contentBackgroundAlpha="0" id="extrasList" styleName="extraList" dat...
Hi,
Using CSS, i can set the corner radius of the top corners of a tab in a tabnavigator:
<mx:Style>
.tabstyle
{
corner-radius: 10;
}
</mx:Style>
<mx:TabNavigator tabStyleName="tabstyle" />
However, I also want the bottom corners to have a radius. Does anyone know how to do that??
...
I am using a List with an ArrayCollection as a DataProvider. The list uses ComboBox as Item Renderer
itemRenderer="mx.controls.CheckBox"
I would like to bind the values in the List.
You have a list with several comboboxes, and those values are loaded dinamically from an ArrayCollection.
The ArrayCollection contains Objects with a ...
Within an Air application, can I take a screenshot of a website WITHOUT rendering it visible to the user? If yes, is it limited to the resolution of the user's desktop?
...
[Bindable]public var xmlData:Object = new Object();
[Bindable]public var headingData:Object = new Object();
private function getHeadings(evt:ResultEvent):void{
//xmlData = ObjectUtil.toString(evt.result);
//ObjectUtil.toString(evt.result)
xmlData = evt.result;
headingData = xmlData.root....
I am creating a custom TextInput component that will define an "error" state. I have extended the TextInput class to change the state to "error" if the errorString property's length is greater than 0. In the skin class, I have defined an "error" state, and added some logic to detect the size and position of the error icon. However, if...
I am in the process of building a rails/flex application which requires audio to be recorded and then stored in our amazon s3 account. I have found no alternative to using some form of RTMP server for recording audio through flash, but our hosting environment will not allow us to install anything like FMS, Red5, etc.
Is there any existi...
Is there any way I can play a video using flex in slow motion?
...
I have a chart that the user is able to zoom into an area by setting the min and max of LinearAxis for the vertical and horizontal axis. When you are zoomed in and you want to view or hide one of the series the chart zooms out to the max and then back in. How do I get the chart to not zoom out when setting the visibility of the series?...
I have a JSON decoded array of Projects which contain a nested array of Milestones. I'm trying to display the Milestones one at a time inside a Datagrid. However, it seem Datagrid can't handle more than 1 level of data. Following is a simple diagram of what I'm trying to do.
[Project Name [0]] [Milestone[0]]
[Project Name [1]] [Mile...
I can successfully add a validator on an item in my datagrid, by passing in the particular element in the dataProvider to the validator, but I can't get the red border to show up around the cell if the validation fails.
I have stepped through the validator, and confirmed that it is passing back a failure, but I can't figure out why the...
I want to implement horizontal image transition while changing image in slide show? HOw can it be done?
...