0
votes
1answer
18 views

Button click on viewnavigator in flex 4 Mobile?

ViewNavigator is basically used for navigating around different views, but is there a easier way to just restrict switching to any view and do some operation instead? eg: I am viewing a product ...
0
votes
1answer
20 views

Adobe flex copy paste htmlText into a text area

I've a textArea1, i'm copying htmlText from a different textArea2 to the current text area, it bring the formatting of the textArea2, that is ok, when I clear the textArea1 text, when I start typing, ...
0
votes
0answers
11 views

Call Siteminder protected restful service in AIR

I'm working on a AIR application which needs to call a Restfull service protected by siteminder. I've no clue to do that. Can someone out there throw some light on how to do that? var ...
0
votes
1answer
26 views

Flex HttpService authorization to obtain xml feed

im trying to obtain a xml feed from my cpanel though API. I have tried several methods (see below) to pass the authorization to obtain the xml feed. In my browser i can get the feed through the ...
1
vote
0answers
56 views

CSV regex with any digit

I am trying to looking for regex which allows any comma separated values. Like this. 23,23,23 233-2-3,23,23 23/23/2333,22-22-2222,23 I have tried couple of things but nothing fits 100%. [^,;]+ ...
0
votes
1answer
21 views

replace doublebackslash with single slash

How do I replace doublebackslash with single slash? couldnt find an example anywhere. ie. "c:\\this\\is\\a\\folder\\myfile.jpg" to "c:\this\is\a\folder\myfile.jpg"
0
votes
2answers
44 views

AS3/Flex : Interface extends interface

In AS3/Flex, is it possible for me that one interface extends another interface ? I have created interface A. Now I want to create another Interface B which extends interface A. I google a lot but ...
1
vote
1answer
26 views

Flex event bubbling/capturing mode

can some one pls give a simple example where we can use flex event capturing mode rather than bubbling mode? Most of the time we are using bubbling mode and we keep use_capture to false ...
0
votes
0answers
24 views

Binding issues when migrating from Flex 3 to 4.6

Just migrated my application from Flex 3 to Flex 4.6 and found issues with Bindings and ChangeWatchers. Snippet of code: [Bindable] public class Thing { private Boolean aVar = false; public ...
1
vote
0answers
36 views

Flex - change in Timezone only picked up on Minutes Change. Why?

I have a timer running, that every second, checks the systems Date/Time, and updates the date displayed on the application. If I change the system time, the app updates the next second. If I change ...
0
votes
1answer
44 views

How to move a flex page from bottom to top?

I have a Flex component that is very long. I want to add a save button in the bottom of component. when i click on save button i am changing the state where it displays another component. Do anyone ...
0
votes
1answer
19 views

Displaying parts of objects in an Actionscript list

I have an interesting situation where I have a listbox that displays an ArrayList of strings, but I want to be able to associate the strings displayed with some other data which I don't want to ...
1
vote
1answer
45 views

How to get the Full stack trace of all the methods executed while rendering?

In my Flex application i need to get the stack trace of the methods executed from the creation of my application and need to check how much time spend for rendering a particular component or ...
-1
votes
1answer
37 views

Flex update XML

im new to flex development and in need of assistance. I have a xml file that contains data that i would like to update if the user changes anything, the file is saved on his local program files where ...
0
votes
1answer
22 views

Zoom inside of a container with HSlider component

Is there any way to use a HSlider to zoom (with percentage value) inside of a component? I actually have a container: <s:BorderContainer id="suppCont" x="238" y="10" width="710" height="514" ...
0
votes
0answers
33 views

Flex line drawing with cut copy paste functionality

I'm designing a flex application,with that help of this application one can design uml, electronics,er diagrams etc. How to implement line that that connect two object(Display objects) as shown in ...
0
votes
1answer
58 views

How to declare multiple [Bindable] vars on a single line… binding stops working

I am trying to declare multiple Bindable variables in a single line (using a single 'var' call): [Bindable] public var var1:int = -1, var2:int = -1, var3:int = -1, var4:int = -1; I want to use the ...
0
votes
0answers
28 views

FlashBuilder 4.7 I am looking to get the Cairngorm.SWC file from a Maven-Repository

I have no clue what Maven is. I am looking to recode very fast a Flex 3 project in Flex 4.7. I used the Cairngorm.swc before and now I am looking for it for the new SDK 4.6 so I can adapt very fast ...
0
votes
1answer
70 views

Workers in Apache Flex 4.7

has anyone been able to use Workers in AIR Application built with Flex 4.9.1 and AIR 3.7? I wanted to give it a try for a project, but as soon as I include/setup the worker like in the tutorial made ...
0
votes
2answers
80 views

Upload video to YouTube via V3-API with Flex/AS3

I am currently working on an AIR-Application to upload videos to youtube. Since I got the very absurd requirement to upload files up to 80GB (we do not need to discuss this, I also think it´s ...
1
vote
1answer
47 views

How to enable orientation change for some views in Flex Mobile?

I have some views in my mobile app (for both ios and android) whose orientation was fixed to PORTRAIT using <aspectRatio>portrait</aspectRatio><autoOrients>false</autoOrients> ...
0
votes
0answers
58 views

Complex custom drag and drop in Flex for non-list components

I am currently working on the custom drag and drop functionality in Flex, I am quite a beginner in flex and AS3 and therefore I am having problems which might be trivial for more experienced ...
0
votes
1answer
43 views

How to get file in source directory as file object

This could be pretty easy to do but I'm not able figure it out. There is a script file to be executed in my Flex AIR project under src/scripts/myScript.scpt. To execute this file I need to create the ...
1
vote
0answers
39 views

Localizing DateSpinner month names - Flex Mobile

I want to translate Flex Mobile DateSpinner month names into Turkish ones but I couldn't cause of lacking locale support for turkish language, and even when I created a new locale using copylocale ...
1
vote
1answer
103 views

TimerEvent vs. ENTER_FRAME in AS3/Flex games?

I'm trying to write a simple game in AS3 / Flex 4, and I'm trying to find the best way from the get-go to handle timed execution of code. The most natural approach would be to use a bunch of Timer ...
0
votes
1answer
48 views

Adobe Flex Set style for component state

I have a gradient <s:LinearGradient rotation="90"> <s:GradientEntry id="gradient1" color="0xFAFAFA" color.over="0xC7C7C7" color.down="0xBBBBBB" ...
1
vote
1answer
92 views

how to handle external links in HTML component in adobe Air?

I have an AIR Project which has a HTML component. This HTML component Load a URL. Once specified page is loaded, there are some links on the page that need to be open in separate HTML tabs. My ...
2
votes
2answers
78 views

Is there a clever Null Pointer Checker Utility Class for ActionScript/Flex?

Problem involves checking if variables are null before calling methods or variables within them: if(order && order.reference && order.reference.quote) { var length:int = ...
0
votes
1answer
100 views

Flex 4.5 / Apache Flex UI Framework Architecture

Is there any framework for UI development in Flex 4.5 ? Better standard for creating UI view layers using Action script. Also how to create states and state transitions in Action script?
-1
votes
1answer
32 views

customer layout with drag-drop support

Evtim wrote a greate customer FlowLayout, and Maxim also have a nice customer Horizontal Multiline Layout but they don't support drag-drop. When define customer Layout which extends LayoutBase with ...
-1
votes
1answer
98 views

Adding images inside a Tooltip in Flex 4

I am trying to insert images and other html content inside a Tooltip in Flex 4 by making the text htmlText similar to this: http://blogagic.com/190/easy-flex-tooltip-customization-using-html-tags My ...
7
votes
3answers
164 views

Generate Flash objects server-side with .NET

How can I create an array of Flash objects (for instance, Buttons) on the server-side using .NET, then stream them as binaries? In essence, I would like to decrease the time spent on the client ...
0
votes
1answer
79 views

NetStream.seek error Seeking videos

i try to do seek function in NetStream class using Action Script language , The seek is not work correctly . I read about KeyFrames in NetStream , what is the relationship between KeyFrames and seek ...
0
votes
0answers
46 views

Adobe Flex Accessing the 'Feilds' of an Array Collection from php service lastresult

I am stuck at a problem. I am trying to store the lastresult from a php service in a ArrayCollection. Then I am passing that Array Collection to a AS Class. Problem: I need to have the values and the ...
0
votes
2answers
35 views

How to assign click event listener to drawn path in Flex 4

I have a spark path in mxml: <s:Group id="group" click="clickHandler(event)" > <s:Path id="na259" x="385.301" y="140.422" winding="nonZero" data="M2.01562 0.141602 2.32812 ...
1
vote
1answer
109 views

Calling Red5 APIs from oflaDemo

I have been looking, as much as possible, at the source code for Red5's oflaDemo client. I have been trying to figure out how the client accesses the functions provided in the server- side code. I ...
0
votes
0answers
61 views

how change mxml property completion in flashBuilder 4.7

I'm looking for advanced modification of the mxml code completion. for example: completion on the property scrollSnappingMode on a List is managed by the metatag : [Inspectable(category="General", ...
0
votes
1answer
115 views

how to change background color of PopUp window in flex

I have developed a application where it contains few PopUp windows. whenever popup comes the background of the popup is little brighter, is there any way that i can make PopUP Background little ...
1
vote
1answer
36 views

How to make TextField gutter less?

I am looking for a solution to make TextField Object gutter less such that the getBounds() and getColorBounds() give the same rectangle. In short the Rectangle returned by getBounds() must start from ...
-1
votes
1answer
92 views

How to refresh itemrenderer in flex

I have developed a flex application where it contains a itemrenderer which displays list of items. The problem is if i select a item the background gets highlighted and if i go to another page and ...
0
votes
0answers
108 views

MX Scrollbar CSS not applied properly in Flex 4

I am creating one application in which I had two datagrids. I had one global css to apply styles in application. In which I am giving one global style to mx|ScrollBar. But in second datagrid I want ...
0
votes
1answer
13 views

FlexORM self referencing

I wonder if there is someone out there that had used the framework called FlexORM, is pretty useful, but I'm having a problem, I need to create a self referencing association for a parent with ...
1
vote
0answers
62 views

How to define a remote object in flex

Can anyone give me a quick how to when defining a remote object in flex using actionscript. And explain the remoteObject.destination and/or remoteObject.source and how they relate to the cfc and path ...
1
vote
3answers
40 views

Adobe Flex compiler include classes

I'm trying to create and instance of an object by reference the class object of the class using getDefinitionByName() the problem is that if I don't create at least one instance of the class before ...
1
vote
2answers
59 views

List itemRenderer drag over detect

As the pic shows, suppose List1 of item1 drag to List2 of item iv, I want the item iv to detect the drag over state and hightlight itself, so how to implement it?
0
votes
1answer
48 views

Accessing a tab navigator and its child from a child element

my main application mxml I am using a tab navigator,I can access that tab navigator anywhere in the application by following code.. mx.core.FlexGlobals.topLevelApplication.menuOption.selectedIndex=0; ...
0
votes
1answer
76 views

How can I launch notepad++ to open text file in air?

I develop an AIR application. I want when I press the open button it open the text file with notepad++ which I specify as ("C:\Program Files\Notepad++\notepad++.exe") or with any other application I ...
1
vote
2answers
34 views

Filtering Data Without sql query

I am developing a pretty big enterprise level data analysis software based on flex-4. I usually need to filter datagrids based on users selection, that requires to run a query on my database. I am ...
0
votes
1answer
51 views

Flex sizing a component as wrapping the elements in custom layout

I have a custom layout called as NewsLayout: override public function updateDisplayList(width:Number, height:Number) : void { super.updateDisplayList( width, height ); ...
1
vote
2answers
62 views

keyboard Shortcut for a button in adobe air

I want to implement the keyboard Shortcuts for buttons in my adobe air application.. I have four buttons in a screen ..I want to to assign F9,F10,F11,F12 keys to them..How to achieve that..I ...

1 2 3 4 5 23