Html 1.0 in flex 3 application
November 28, 2009 in flex by Ezhil
You can use html codes in flex upto a certain limit.html 1.0 is supported in
November 28, 2009 in flex by Ezhil
You can use html codes in flex upto a certain limit.html 1.0 is supported in
November 12, 2009 in flex by Ezhil
You can create an xml of a database using flex.All you need is a database created in Phpmyadmin.
First create a flex project with php as server type.

Then mention the server webroot(in xampp it is htdocs, in wamp it is www) and the root url (mostly http://localhost) . click finish .
Then create an application using the data.

Select the project from list and create a new connection name.

mention the connection name.
click next
Mention the database name you created and username and password of your phpmyadmin(mostly username=root,password in none).
Test the connection.
if the connection is successful then hit next to every other tab opened, you can mention your filtering option.
Note:possible error in this part is you need to start your xampp or wamp server.correctly specify the database name.
after that flex would create a automatic file with your table name.mxml
run the project and you will find the output like this..

this is a complete application with which you can do operation like
1)FindAll
2)Insert
3)Update
4)Delete
5)Count
According to this post i would use the “FindAll” function to display the content.
copy the url of the output when you run the flex application
(i.e) http://localhost/testphp-debug/eztable.html
modify the address to
http://localhost/testphp-debug/eztable.php?method=FindAll
which would display an XML file like this..

now create a simple flex application like this to call the Xml..
October 20, 2009 in opensource by Ezhil
status.net in an open source microblog, which offers free source code.
we just tried to run statusnet 0.8.1 in XAMPP 1.7.2 in ubuntu but their were lot of errors.
Solution:
we should run it in XAMPP 1.7.1 then it works.
In 1.7.2 the php version 5.3.0 is not supported in ubuntu. so try running it in 5.2.9 which is in XAMPP version 1.7.1 amd enjoy
September 4, 2009 in flex, flex widgets by Ezhil
August 29, 2009 in flex, flex widgets by Ezhil
we can bring gmap in flex by adding their library files to your flex project and calling the suitable function you need.
i have created a custom gmap in which all types can be seen in a single page.
Source code
July 30, 2009 in flex by Ezhil
Today i studied about components in flex. i was following lynda.com video series for reference. it was really interesting to create a custom component and use it for later use.
lam now sure that i can create a custom component and use it.it also introduced the concept of timer to me.