by Ezhil

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

by Ezhil

Create XML of a Database using flex.

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.

img1 Create XML of a Database using flex.

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

img2 Create XML of a Database using flex.Then create an application using the data.

img11 Create XML of a Database using flex.

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

img3 Create XML of a Database using flex.

mention the connection name.

img4 Create XML of a Database using flex.click next

img5 Create XML of a Database using flex.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..

img6 Create XML of a Database using flex.

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..

img7 Create XML of a Database using flex.

now create a simple flex application like this to call the Xml..

<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute” creationComplete=”service.send()”>
<mx:HTTPService id=”service” url=”http://localhost/testphp-debug/eztable.php?method=FindAll”/>
<mx:DataGrid dataProvider=”{service.lastResult.response.data.row}”/>
</mx:Application>

by Ezhil

statusnet bug solved

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

by Ezhil

wordpress with flex

September 29, 2009 in flex by Ezhil

we can combine wordpress and flex together to make more meaning clinet side which is ver appealing and feals good…

jud blog

jud blog

by Ezhil

dynamic photo gallery in flex

September 4, 2009 in flex, flex widgets by Ezhil

photo dynamic photo gallery in flexgallery1 dynamic photo gallery in flexThis is a simple photo gallery which generates images dynamically through a xml file.

Source Code

by Ezhil

g map in flex

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.ScreenshotSource code

by Ezhil

usage of components

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.