I need a simple rainbow trajectory motion in Flex builder.
We have 2 points [(x1, y1); (x2, y2)], we need to animate object from one to another over some simple rainbow trajectory like in this picture in 10 seconds
What libs could you suggest for such an operation?
...
Hi All.
I'm a newbie in flex, right now I want to create a panel docking to a pop up panel in my flex app, like Winamp's playlist window can dock to main window. but I didn't find any useful on docking in flex, someone can give me some suggestions?
I've traced the PopUpManager, but I didn't find any available interfaces or events about ...
User inputs a comma separated string and i d like to make a an associative array out of it as follows :
Input : 4,3,3,2,2
Output : Array{"0"=>4,"1"="3","2"=>3,"3"=>2,"4"=>2}
I can create an array by input.text.split(",");
But I d like to make it an associative array as above, how to do this?
Thanks.
...
In Flex, how can I set the selectedItem of a ComboBox to the selectedItem of a grid (name,mobile,category)? If I select one row in the grid(category), that selected item (category item) must be selected item in categories ComboBox.
<mx:DataGrid id="dg" width="425" height="328" rowCount="5"
dataProvider="{contactList}" cornerRadius="3...
I need Action Script3 / Pixel Bender blur filter with mapping capability’s.
We have such image, we want to apply such blur map to get such result
Its also known as Compound Blur effect.
Has anyone seen it done with AS3/ Pixel Bender?
Does Anyone know where to download such effect with source?
...
I have an an fla file, and I'm sure that it has some action script. I do ctrl+enter and it runs, it does stuff, but I can't find the code, I don't see any frame with the letter 'a' on it, where could it be ?
How to find it ?
...
Hey,
I would like to take advantage of Adobe's Runtime Shared Library system for swc's, but I'm not sure how it ACTUALLY works, like the programming behind it. I understand that it allows you to load SWCs at runtime, but how does it do that?
I'm asking because I would like to try to mimic something like the Signed RSL "swz" system Ado...
What is the configuration and code required to use mysql within a BlazeDS turnkey environment?
...
I have a Flash applet which I want to embed in a Flex file this loads a panorama file inside a SWF player (Immervision's PurePlayer)- I am using the following code:
<mx:SWFLoader id="mapLoader"
width="740"
height="588"
source="../bin-debug/PurePlayer.swf?flashvars='panorama=../bin-debug/untitled.ivp'" />
The applet load...
I have to change the "Yes" and "No" buttons in an Alert.show(..), to another language (Dutch, for instance).
Is there a (easy) way to do that?
I forgot to mention - I have a -locale nl_NL in my compiler options, but it is still Yes/No
...
Hi there ..
i have a greyscale image and i want to scan the pixels out of the Image and this is what i get :
var i:int;
var j:int;
for (i = 0; i < img.contentWidth ; i++)
{
for(j = 0; j < img.contentHeight; j++){
pixeldaten.addItem({x:i,y:j,pixel:bmd.getPixel(i,j)});
}
}
but the table doesn't look like ...
Hi,
Can someone lead me to SHIFT an element in an ArrayCollection in flex?
I have an ArrayCollection of sorted objects.
Now i need to move a row to the end of the ArrayCollection.
To illustrate,
arrayCollection = ["Cars","Other","Trucks"];
This ArrayCollection is sorted. Now i need to move 'Other' to the end of the ArrayCollect...
Hello all
I am using Flex 3.4 and Cairngorm 2.2 and Zend_AMF for server side. I am having problem in setting up RemoteObjects.
I am getting the infamous Channel disconnected error.
[RPC Fault faultString="Channel disconnected" faultCode="Client.Error.DeliveryInDoubt" faultDetail="Channel disconnected before an acknowledgement was rec...
Hi,
I am working in air application , i need to know how to add event listener when any object is updated, how can i implement this.
Example: i have Class name Vehicle, and child class are Car,Bus,Bikes,Scooter,..etc, child class also have many properties like color,model no,....etc
I have array collection and AddChild() method in V...
I have a ButtonSkin (Flex 4 Skin) with a Rect, a Label, and a Group, the Group masking the Rect. On rollOver, I animate the Label's x to this.width, and on rollOut, back to the original position. The problem is, when I rollOut, if I roll to the right (where the label is hiding behind the mask), it doesn't register rollOut, until I go p...
Hi,
Is there a way to synthesize getters/setters in AS3? It's very common that you have a class with lots of variables, especially in math calculations (Model in MVC pattern), that you'd like to expose. Is there something like synthesize property in Objective-C, that allows to generate getters/setters?
Thanks,
Nava
...
I've been struggling with this problem for far to long now, and I'm guessing the solution is quite easy.
In my Flex application, I've got a component that extends UIComponent where I'm loading images at runtime and try to display them. I've tried lots of different approaches (using beginBitmapFill(), using different containers), but I ...
Is there a good place that has an overview of how Flex layout stuff is managed?
I'm trying to create some user-resizeable "windows" in Flex, but I'm having some trouble getting the layout calculations for the contents correct.
Right now I'm just trying to get a good understanding of how Flex calculates its layouts, but I haven't found ...
I'm trying to create a Flex application that automates a web browser to perform certain tasks. I would use the application to login to a site, parse data out of the HTML, and send it to a jsp page for processing.
I currently have an application written in WPF that does that exact thing, but it needs to be ported to flex. Any known w...
I'm trying to understand and really pinpoint when to use progressive download vs. rtmp in flex/flash. It seems that the main point is that rtmp is not served with http, whereas progressive download is. Since it's not rtmp, the resource is protected since there is no way to connect to the rtmp server from outside the swf.
Even if the us...