It looks like the "cornerRadius" property of a Panel only changes the top corners and bottom if using a ControlBar. I'd like to specify a corner radius for each of the corners individual.
I know Degrafa can do this but I'd like to avoid if possible. Thanks!
...
Scenario:
Flex application utilizing an @font-face declaration for embedding the font. (Embedded fonts are required to be able to rotate text.)
The application was originally developed as an English application, but during localization it became necessary to locate a unicode font capable of displaying Asian characters. The original im...
Hi all,
I'm quite new to flex/actionscript and I was wondering if there is an equivalent for php's (and other languages) FILE and LINE identifiers?
Basicly I want to do some custom error logging and would like to something like:
var mymessage:String = 'Oops, a hiccup occured at ' + __FILE__ + ', line: ' + __LINE__;
Where file and ...
I think i am lost with basics itself. What is the difference between these two. String object is an instance of String Class.
var guru:Object = new Object();
var guru:String = new String();
...
I've seen a number of examples, e.g. here, where people are including locale resource bundles by referencing the locale attribute in the element. For some reason this doesn't work for me. Here's what I have for the task:
<compc output="${deploy.dir}/myfrmwrk.swc" locale="en_US">
<source-path path-element="${basedir}/src/main/fle...
How good is a Flex app in handling large amount of data (say, for a reporting kind of application)
Are there any memory management issues that need to be kept in mind while developing for such an app
Are there any issues in running a Flex app on a Mac?
...
Hi,
I just wrote a simple Flex app which records something from the mic and then stores in wowza.
Basically I built a NetConnection and then a NetStream, and attached a microphone to the stream.
My question would be: if the user wants to discard what was just recorded, how to delete it from the server?
...
Is it possible to receive custom generic typed objects through AMF? I'm trying to integrate a flex app with an existing C# service but flex is choking on custom generic typed objects. As far as I can tell Flex doesn't even support generics, but I'd like to be able to even just read in the object and cast its members as necessary. I basic...
There is flex app accessing dot net web service (WCF) . Both are hosted in the same machine(Server). The web service wsdl is accessible via browser. Tried accessing the service thru dot net application it works perfect , but when I try accessing the service using the flex applicationI get a error .
(FaultEvent fault=[RPC Fault faultS...
Hi,
I want to display a real time activity bar for the microphone in flex. This is similar to the vertical bar one can see when flash settings dialog's microphone settings tab is displayed.
Any built in component or link would help.
Thanks
...
Hi Friends,
I have a html page with 4 iframes out of these 4 one is a static html page and other 3 are html generated by flex. I have a button and list in one of the flex applications and the list will be populated on click of the button. Now what I want is to have a custom busy cursor to appear on the top of the whole html page until t...
HI
I have a collapsable Title window that has scroll bars on it. When i try to scroll by clicking and dragging the scrollbar, the entire window moves. How can i stop this?....
Thanks
...
How do I set the color of the text in the header of the TitleWindow? I've changed the color of the header itself by using 'header-colors', but I haven't figured out how to change the color of the text in the header.
edit: some code:
My css file:
.popupWindow
{
border-color: #000000;
border-alpha: 1;
header-colors: #000000,...
I am trying to connect to a socket server from flex.
I read, on adobe's documentation, the client automatically sends a "request-policy-file" xml element to the socket before allowing it to be opened, and should receive a policy file.
The client sends the xml element as expected, My server receives it (on the port I want to use, port 6...
Hi, can I use cookie information in flex? Suppose a user logs in first time in login form (designed in flex) and when he logs in again I need to show users name in dropdown from cookies, is it possible in flex? Is there any way I can do please suggest me Thanks in Advance.
...
I have a List of items which is based on the contents of the "category" that a user selects
When the user changes selection, I change the dataProvider of the list be be the contents of the current category.
Sometimes the list contains items, sometimes it does not
Is there a way of hiding the list when it has no items?
I know that I c...
When I put some value (123 for example) the numberValidator work well.
When I put "123." works fine too.
But when I put 123.0 (or any number) the text NULL appear, as an error message.
What I have wrong?
This is my validator:
var validator:NumberValidator = new NumberValidator();
validator.allowNegative = false;
validator.re...
Hello everybody.
I am bussy with a Flex Project with a data services. Flash builder installed Zend Framework with Zend_Amf.
When i run the project i get the error NetConnection.Call.Failed: HTTP: Failed. With chalers i say that Zend_Amf give the error: AMF data is incomplete (0 bytes of 0 bytes). Please check the recording limits in th...
Hi Guys
Just wondering if anyone know a good flex tutorial website besides Adobe. Appreciate the helps.
...
Hey All,
I am a little stuck and need some advice/help.
I have a progress bar:
<mx:ProgressBar id="appProgress" mode="manual" width="300" label="{appProgressMsg}" minimum="0" maximum="100"/>
I have two listener functions, one sets the progress, and one sets the appProgressMsg:
public function incProgress(e:TEvent):void {
var p...