Archive

Archive for the ‘flex’ Category

Create XML of a Database using flex.

November 12, 2009 1 comment

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.

Click here to read the full post………

Xml in flex

November 11, 2009 Leave a comment

We can call any XML data from flex.

Click here to read the full post………

Html in flex application

October 5, 2009 Leave a comment

We can add Limited Html codes to a flex application.

Click here to read the full post………

wordpress with flex

September 29, 2009 3 comments

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

jud blog

jud blog

Categories: flex Tags:

dynamic photo gallery in flex

September 4, 2009 Leave a comment

Flexpress

September 4, 2009 Leave a comment

wordpress blogs can  have good visual by connecting it to  flex. all you need is the database of a wordpress blog.we can covert the database into an xml format accessing it  through a php  file which is generated in flex.But the import thing is that it not safe to create it through database as the usual php function can be missing.It would be better if you have the php middleware of wordpress and just the front end in flex…

Categories: flex Tags: ,

g map in flex

August 29, 2009 Leave a comment

we can bring gmap in flex by adding their library files to your flex project and calling the suitable function you need.

Click here to read the full post………

Custom Components

August 24, 2009 Leave a comment

One of the main uses of MXML components is to extend the functionality of an existing Flex component.

Custom Components are one of the best features of flex.you can create custom components in flex  by creating a new component file

<?xml version="1.0" encoding="utf-8"?>
<mx:ComboBox xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:dataProvider>
        <mx:String>United States</mx:String>
        <mx:String>United Kingdom</mx:String>
        <!-- Add all other countries. -->

    </mx:dataProvider>
</mx:ComboBox>
a custom component may look like this.
you can notice that its not an application file and it is just a
combo box,because it can be written only as an component and can be called
in any part of the main
application.

<?xml version="1.0" encoding="utf-8"?>

<mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:custom="components.*"
    width="220" height="115"
>

    <custom:CountryComboBox/>
</mx:Application>

the main purpose of using a custom components are its reusablity features.

flex video display

August 2, 2009 Leave a comment

In flex, the video display control lets you play an flv file in to a flex application.

Click here to read the full post………

Flex Icon Button

August 1, 2009 Leave a comment

Setting an Icon in a button, in mxml is pretty easy.

Click here to read the full post………