Posts filed under 'Macromedia Tips'
If you're new here, you may want to subscribe to my RSS feed. If you like my site, consider linking back. I prefer text "Free Flash Tutorials" to http://blog.franto.com
Thanks for visiting my site! If you need anything just contacting through Contact page or Gtalk widget
Friend on mine has following problem:
Hi Franto,
I have installed Adobe Flash CS3 Professional Trial Version on my machine having Windows XP - English Version. The Software(CS3) get installed but it is showing Menu Bar,Title Bar,Tool Bar and other Korean text as a Junk Character.
I have also installed Korean Fonts on my machine, but the problem is still same.
I am attaching the screenshots for you
Please help me out.
Thanks in Advance.
I don’t have Korean version of Flash CS3, nor Korean fonts (I will not able to read them), so if anyone has similar problem and solve it, please let my friend know by submitting comment with your solution. Maybe if someone from Adobe listen, try help him as well, please
And here are screenshots:
Adobe, Application, bug, Flash, macromedia, Macromedia Tips
May 28th, 2008
Add to your FavLinks
My Flash Player 10 Collection is growing. Is not 24 hours from publishing and there are almost 30 links to various information and resources about Flash Player 10, PixelBender, different Flash tutorials how do stuff for Flash Player 10. So if you want to have all information in 1 place, watch for Flash Player 10 Collection.
If you want to be informed about new links, follow me on Twitter: Franto
3D, ActionScript, Adobe, AIR, Beta, Collections, Flash, Flash Player 10, Flash Tutorials, Flex, Macromedia Tips, software, Tutorial, tutorials, Useful links
May 21st, 2008
Add to your FavLinks
It seems that my site got some problem with traffic and is so slow (at least for me), so I want to do anything with that. Change webhost provider, or change it to dedicated server and then provide Flex, AIR, Flash tutorials for anyone who want to learn new Adobe technology. Because this costs money, I’ve create Franto.com Supporters page, when I will list all supportes for my site (PR7). So if you wish support it and let me try to do anything to speed up this site and provide good free tutorials for anyone you can just support this site.
Thanks in advance.
AIR, AirTips, Flash, Flex, FlexTips, Free Tutorials, Macromedia Tips, Paypal, tutorials, Useful links
April 29th, 2008
Add to your FavLinks
This is new post in my DataGrid Series Flex Tutorials. This tutorial shows you how to filter rows for searched keyword. It's quite easy, since dataProvider for DataGrid is ArrayCollection, and ArrayCollection has variable filterFunction. It simple expect function which will filter correct rows for you. So basically, you have Datagrid and dataProvider is defined like this
Actionscript:
-
[Bindable] public var dpRows:ArrayCollection;
then you can create filter function in this simple way:
Actionscript:
-
public function filterResults():void
-
{
-
dpRows.filterFunction = _sortRows;
-
dpRows.refresh();
-
}
and finally function, which filters results. It returns true for row, which will be visible, and false for row which will be hiden.
Actionscript:
-
private function _sortRows(item:Object):Boolean
-
{
-
var col:String = cmbCol.selectedItem.data as String;
-
var key:String = keyword.text;
-
-
key = key.toLowerCase();
-
-
if (key != "")
-
{
-
if (col != "any")
-
{
-
var value:String = item[col];
-
value = value.toLowerCase();
-
-
if (value.indexOf(key)>= 0)
-
{
-
return true;
-
}
-
} else {
-
for (var o:String in item)
-
{
-
value = item[o];
-
value = value.toLowerCase();
-
if (value.indexOf(key)>= 0)
-
{
-
return true;
-
}
-
}
-
}
-
} else {
-
return true;
-
}
-
-
return false;
-
}
It's quite simple tutorial. Here you can see source code for example which follows.

In next tutorial for DataGrid I will show you how you can add Button into cell. We will use custom itemRenderer for DataGridColumn.
If you have any questions, or suggestions for tutorial, please let me know...
Enjoy.
AIR, AirTips, Flash, Flex, FlexTips, Macromedia Tips, Tutorial, tutorials
April 29th, 2008
Add to your FavLinks