In my project we needed to make the scollbars look like Windows scrollbars.
Therefore I have a thumbIcon on the thumb of a vertical scrollbar, but if I get too many items in the combobox, the scrollbar gets fiddly. This is because the margin between the thumbIcon and the border of the thumbSkin is too small.
Is there a way to set the m...
Hi Guys.
I have this datagrid which dataProvider is a ArrayCollection of 2 different types of objects (FolderVO and FileVO).
I have a size column which in the case of the FolderVO is populated by an attribute called contentSize and in the case of the FileVO it is populated by the size attribute (the difference is handled by a itemrender...
I'm trying to write some code to an animated images of squares on a Flex Canvas. There's something wrong with my code below because it becomes progressively slower. I assume I'm supposed to clear the old squares or something.
What am I doing wrong below?:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.ado...
Is there a way to get an image from a usb scanner (on Windows primarily, cross-platform solution would be best) and post the image together to a form in browser with Flex or Java applet?
thx!
...
I have a skin for a scrollbar thumb that I want to be able to style or set properties dynamically.
<mx:Panel
verticalScrollBarStyleName="verticalScrollBarNoArrows">
</mx:Panel>
style.css
.verticalScrollBarNoArrows
{
upArrowSkin: ClassReference(null);
downArrowSkin: ClassReference(null);
trackSkin: ClassRefere...
Hi
Can anyone tell me what is and isn't recommended when it comes to mixing in classes from the mx package in an Actionscript only project?
Specifically I want to use AsyncToken, IResponder and HTTPService classes in the mx package in an Actionscript project.
...
In my project the swf file is embedded in a c# winform, the swf and the winform project are both built by myself, is it possible to set a breakpoint in the swf file using Flash Builder? I think the scenario is quite similar to embed a swf file into a complicated html file and still need to debug the swf file, thanks!
The problem has bee...
Hi,
I am new to flex, and do not know how to add an image (or other ui component) to canvas, so user can select it (and see that it's selected), also I want to add a possibility for example to click backspace and remove selected image from scene. How to do that?
Maybe you can point me to a doc to read?
...
Very weird problem, I am new to AS, but I have to say it's hard to comprehend AS is a modern language:
private function completed():void
{
trace("completed.");
var player:Object = (loader.content as SystemManager).application as Object;
player.playVideo();
player.setSize(200,300);
}...
Hi all,
I am using text layout framework in my application. I am using textflow as editor to my application. As text layout framework supports multiple languages. I a m able to see the text in multiple languages.
Now my doubt is, can I type in different languages?
For example: As in word if we choose the font as Hindi then whatever we...
I am showing the web service data into flex application using datgrid.
I need to show this data scrolling automatically in continuous manner.
Anyone knows how to do this stuff?
...
Hello!
I know this is somehow trivial, but I couldn't find appropriate solution so please help me :)
I am using bulkLoader to load dozens of SWFs into my Flex app, and all of SWFs are static (1 frame only). 'Everything' works fine, however, I'm not sure how to handle data from bulkLoader... I am getting MovieClip types for all of my SWF...
Hi,
I have a panel with several canvases and buttons on it. I want to implement a feature:
when I click next button I want the whole Panel and canvases to be copied and placed below the current one. Also I want to make it possible to do this operation several times.
How do I dynamically generate UI elements? (and maybe I will need some...
Hi,
I was wondering what people are using for externally configuring logging in a Flex app. Are there any ready baked solutions out there, similar to Log4J's configuration via properties files for instance?
If there are, do these work directly with the Flex logging API or are they part of a separate logging library?
...
Hi.
i have several flash projects and i have common classes. is there a way to share these classes between the project so i won't need to copy it to all the project when ever i modify something?
...
Hi,
What is the Difference between ItemRenderer and ItemEditor?
And When ItemRenderer is initializing and loading?
Regards,
Ravi
...
Hi all,
Let's refer to the listing of the method "validateProperties" from mx.core.UIComponent class from Flex 3 (Flex 4) SDK
public function validateProperties():void
{
if (invalidatePropertiesFlag)
{
commitProperties();
invalidatePropertiesFlag = false;
}
}
My question is:
Why dirty flag invalidatePro...
My flex app has various Custom components. I want the tooltips for all of them to show at the top-right corner.
Is there a Application setting that I can do this with? Or do I have to do this at the component level.
Either ways, how will it be done?
...
Hi all,
I was trying to retrieve binary data over HTTP for my Flex application, and was running into some stumbling blocks. HTTPService did not seem to deal with binary data well, people said to use URLLoader. But URLLoader does not have the nice AsyncToken/IResponder interface that HTTPService provides.
So, I did some searching and ...
I can change the color of the label in Flex Builder, I can even BIND the color to a variable and that works, but I can't find the Color PROPERTY in order to change or reference it programatically! What is the ActionScript 3.0 code to change the font or color of a piece of text in a Flex RIA - or is caring in what color your text appears...