Create XML of a Database using flex.
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.
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.
We can call any XML data from flex.
We can add Limited Html codes to a flex application.
we can combine wordpress and flex together to make more meaning clinet side which is ver appealing and feals good…
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…
we can bring gmap in flex by adding their library files to your flex project and calling the suitable function you need.
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.
In flex, the video display control lets you play an flv file in to a flex application.
Setting an Icon in a button, in mxml is pretty easy.