Posts filed under 'Macromedia Tips'

Problem with Adobe Flash CS3 - Korean version

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 Flash CS3 - Korean version - Junk Font Adobe Flash CS3 - Korean version - Junk Font
, , , , ,
AddThis Feed Button

Add comment May 28th, 2008 Add to your FavLinks

Flash Player 10 Collection: 30 links and counting

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

, , , , , , , , , , , , , ,
AddThis Feed Button

Add comment May 21st, 2008 Add to your FavLinks

Support Franto.com

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.

, , , , , , , , ,
AddThis Feed Button

2 comments April 29th, 2008 Add to your FavLinks

“Filter results in DataGrid” Flex Tutorial

Table of contents for DataGrid

  1. Custom header in DataGrid
  2. Custom header in DataGrid - part 2
  3. “Filter results in DataGrid” Flex Tutorial

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:
  1. [Bindable] public var dpRows:ArrayCollection;

then you can create filter function in this simple way:

Actionscript:
  1. public function filterResults():void
  2.  {
  3.     dpRows.filterFunction = _sortRows;
  4.     dpRows.refresh();
  5. }

and finally function, which filters results. It returns true for row, which will be visible, and false for row which will be hiden.

Actionscript:
  1. private function _sortRows(item:Object):Boolean
  2. {
  3.             var col:String = cmbCol.selectedItem.data as String;
  4.             var key:String = keyword.text;
  5.            
  6.             key = key.toLowerCase();
  7.            
  8.             if (key != "")
  9.             {
  10.                 if (col != "any")
  11.                 {
  12.                     var value:String = item[col];
  13.                     value = value.toLowerCase();
  14.                    
  15.                     if (value.indexOf(key)>= 0)
  16.                     {
  17.                         return true;
  18.                     }
  19.                 } else {
  20.                     for (var o:String in item)
  21.                     {
  22.                         value = item[o];
  23.                         value = value.toLowerCase();
  24.                         if (value.indexOf(key)>= 0)
  25.                         {
  26.                             return true;
  27.                         }
  28.                     }
  29.                 }
  30.             } else {
  31.                 return true;
  32.             }
  33.            
  34.             return false;
  35. }

It's quite simple tutorial. Here you can see source code for example which follows.

ArrayCollection filterFunction example screenshot

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.

, , , , , , ,
AddThis Feed Button

2 comments April 29th, 2008 Add to your FavLinks

Real Time Ray Tracing in ActionScript 3

Real Time Ray Tracing iimplemented in ActionScript 3. You will find more description about implementation at site.

Reatime Raytracer in ActionScript 3

, , , , , ,
AddThis Feed Button

1 comment March 22nd, 2008 Add to your FavLinks