Posted by: vinoddanims on: November 11, 2009
With thousands of Flash Components, Files and Templates, Getria.net is the largest library of stock Flash online. Starting at just $5 and by a huge community of customers! visit this site www.getria.net
screen-2
Posted by: vinoddanims on: November 1, 2009
hi..
Iam going to explain you how to integrate multiple amount in palypal via flex 3.
Its easy,
1.copy this code to your flex allication
2.<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:Script>
<![CDATA[
import flash.net.URLRequest
public function makePayment():void{
var url:String = "https://www.paypal.com/cgi-bin/webscr";
var request:URLRequest = new URLRequest(url);
var variables:URLVariables = new URLVariables();
variables.cmd="_xclick";
variables.currency_code="USD";
variables.business="vinod_danims@yahoo.com";
variables.item_number = "001";
variables.item_name = "GET RIA";
variables.amount= amount.text;
variables.quantity = 1;
variables.tax = '';
request.data = variables;
request.method = URLRequestMethod.POST;
navigateToURL(request,"_parent");
}
]]>
</mx:Script>
<mx:Image source=”../src/img3.jpg” click=”makePayment();” width=”207″ height=”126″/>
<mx:TextInput x=”47″ y=”248″ id=”amount”/>
</mx:Application>
3.run the application
4.Thats it
Posted by: vinoddanims on: September 30, 2009
What are Robots.txt files ?
Robots.txt file is a text file (yea, the ones on notepad) that resides on your server, and controls a whole lot of features on your website (whatever platform it is built on). It’s a simple text file in which there are a few lines of text, but it’s very powerful that it can even decide whether your website should be shown on Google or not, what part of your website should be shown to the search engines (like Google, Yahoo and MSN).
What is a Robots.txt file technically?
In order to understand what robots.txt files are, you have to first understand what a Robot (the web one) is.
A robot – is technically a program from search engines like Google, Yahoo and MSN that are set out on the internet to do the job of finding out new websites, indexing them and gathering the right information about the website. They are sometime called “spiders”, “crawlers” and even “bots”.
Where do the Robots come from?
Robots are commonly set out by search engines like Google, Yahoo, MSN, Altavista, Ask.com and others. Mainly, these are web servers of the search engines, that are on the constant look out of information on the internet. And they gather information (which ultimately goes to the search engines index) by visiting new websites, gathering up new information from them, following links and calculating and analyzing a whole lot of information from them.
What do Robots do?
Robots mainly performs four types of tasks.
* Site Indexing – Which is more like taking a copy of a new website it finds and storing it in some location at the search engines servers. This is accomplished by scanning the documents on a website and mirroring them to temporary servers.
* Validates the site code – Which is more like comparing the website code to W3C standards and grading them according to accuracy.
* Link Checks – Which includes tracing all possible links (incoming and outgoing) from indexed websites, and calculating the sites grading factors such as authority, relevance etc.
What does a Robots.txt file do?
Robots.txt file gives commands to the visiting robots (on the website) to help them index and collect relevant information about the website.
It’s more like the helpdesk, which will give all information, guidance and help to the visitors at an event about how to reach the venue, important places, time schedule, map etc.
The commands on the robots.txt file is completely configurable by the webmaster.
Using the right commands, a webmaster can decide everything related to search engines like what search engines are allowed into the website, what is the information available to them, what are the documents that are not available for the search engines and even pass information like how often are pages added to the website and how often should the robots visit them.
Where to spot the Robots.txt file?
The Robots.txt file is located at the root folder of your website. This is most often the _public-html or the http-docs folder. Root folder means the top most directory on the website that is accessible to the public.
It is critical to place the Robots.txt file in the root folder. Placing it elsewhere will not make it functional.
Why is Robots.txt file and Robots important to a webmaster?
Well, for a webmaster Robots.txt should be important because, it helps ensure better indexing of their websites, which means more information passed to search engines and thereby better search engine ranks for them.
It is possible for the webmaster to decide how their websites should be crawled, indexed and ranked by the search engines by the use of well-written Robots.txt files. So, it gives them complete (well almost) control over how a search engine “sees” their websites, which is very crucial.
How does a Robots.txt file look like?
User-agent: *
Allow: /searchhistory/
Disallow: /search
Disallow: /groups
Disallow: /images
Disallow: /catalogs
Disallow: /catalogues
Disallow: /news
Disallow: /nwshp
Allow: /news?btcid=
Disallow: /news?btcid=*&
Allow: /news?btaid=
Disallow: /news?btaid=*&
Disallow: /setnewsprefs?
Disallow: /index.html?
Disallow: /?
Disallow: /addurl/image?
Disallow: /pagead/
Disallow: /relpage/
If you like to see more Robots.txt files, just type in the domain name followed by the /robots.txt filename in the browser of any website you like, and if they are using a Robots.txt file, then it would show up.(Ex: www.google.com/robots.txt, www.yahoo.com/robots.txt)
Posted by: vinoddanims on: September 21, 2009
Hi!my name is vinod.for last 1week Iam doing this JOB PORTAL application for the JOBSEEKERS. somewat i completed this site and its visabling you.currently iam doing my company project so i cant concentrate please update this project.Iam giving you the Full source code for this project.
Good Luck!!!
1>Registration field:
*1min to register/login
*This all your information will save in database and retrieving from there in factor of seconds.
2>Welcome screen
*here you can get about details of “HOW TO GET A JOB” in pdf
*And details about us
*Full source code of this project
*Photos
3>Links
*Links about all flex details
please Improve it
Thanks reg,
vinod.D
Posted by: vinoddanims on: September 19, 2009
This is login registration made in FLEX and PHP now few easy steps to connect FLEX with database i have read more tutorial to make this watch demo here.
I planed to brief this application with your help.
how to run this application?:
- userid – Int(10) with auto-increment & primary key.
- name – varchar .
- username – varchar .
- password – varchar .
- email – varchar .
- Now open database.php in the Folder “php”.
- Change the username and password for database. You can also change the database name if you want from here.
- Now import the Source Folder as a project in Flex.
- After it is imported. You will have to change two things to make it run. You will have to change the url of the php folder. If it is uploaded on the net then you can give it like “www.yoursite.com/php/login.php” (or) “Flex Project/php/login.php”. But if you are working offline. A PHP will be required then the url will be like “http://localhost/php/login.php”.
Thats it now you can run the application
If any doubts post me a commend
![]()
Posted by: vinoddanims on: August 29, 2009
Here is a list of implemented Flex frameworks that can be used for Flex RIA developments.
Open Source Pattern-Based Rich Internet Application (RIA) Framework for the Flash Platform.
Lightweight micro-architecture for Rich Internet Applications built in Flex or AIR. A collaboration of recognized design patterns, Cairngorm exemplifies and encourages best-practices for RIA development advocated by Adobe Consulting, encourages best-practice leverage of the underlying Flex framework, while making it easier for medium to large teams of software engineers deliver medium to large scale, mission-critical Rich Internet Applications.
An ActionScript3 / Flex application framework for building enterprise level RIAs. It uses such design pattern as Controller, Factory, Command, etc. High efficiency, simplicity and practicality were set as its mandatory design features.
An ActionScript 3 / Java framework designed for Flex applications development. Its design is based on several design patterns, and includes tools built to resolve some of the recurrent Flex2 / Flex3 development issues : Model-View sync, screen-browsing, Access-Control Lists (currently in development), localization and labels externalization, etc. originally, we (ServeBox) created it to respond to our customers development needs. It is now available as an open-source project under Apache-style license, so you can use it for commercial and/or open-source projects.
An ease of use programming framework to provide ordered and scalable Flex applications.
Life cycle of guasax framework is based in the MVC pattern to take on our program actions
It brings implicit invocation, Model-View-Controller design, and cleaner, less repetitive integration with backend services to Flex 2.0 and AIR applications.
A lightweight framework for creating applications based upon the classic Model-View-Controller design meta-pattern
Some more tools like Adobe FAST, EasyMVCand Joeberkovitz’s framework are worth to try. There also a few other none-UI frameworks and tools to help out Flex developers, FlexLib , AS3CoreLib, FlexUnit and Granite DS.
Thanks,
vinod.D
Posted by: vinoddanims on: August 29, 2009
Since the public release of the Facebook API there has been a huge rush of developers building Facebook applications. There are official PHP and Java libraries available via the developer resources pages, but no official ActionScript library as of this writing. Tim Whitman has created a great (unofficial) ActionScript 2 library for people developing in Flash.
If you are looking to create a Flex application that connects to Facebook, the AS2 library won’t help much since Flex is based on ActionScript 3.
Luckily there has been some great work by a few ActionScript developers on Facebook. This tutorial demonstrates how to get up and running using Jason Crist’s AS3 Facebook Library.
The application you will build in this tutorial will simply list all of your Facebook albums inside a Flex component. This should be enough to get you started and give you a taste of how to connect to the Facebook API.
Step 1: Add the Facebook Developer Application
The first thing you need to do is add the Facebook Developer Application. Once you add this application to your Facebook profile you will be able to create new applications and access other developer resources.
Step 2: Apply for a Facebook API Key
After adding the Developer application, click on the “Create one” link to create a new application.
Type in your application name and click the agree box if you accept the terms and conditions. Under the Optional Fields tab, you need to set the callback URL. This will normally point to a file on your web server, but for this simple demo we can put “http://example.com/”.
When you click submit you will see a new application listed:

Take note of the API key and secret key. You will need to put these strings into your Flex code shortly.
3. Download the Library
Visit the Facebook ActionScript API Google Code Project, then click on Downloads and download the “facebook_as3_api_v0.1.zip” file.
Thanks to Jason Crist of Terralever for providing this library to the development community.
Create a new “FacebookTest” folder on your desktop and extract the “com” folder of the ZIP file there.
4. Create The Flex Application
Start Flex Builder and create a new Flex project called “FacebookTest”. Don’t name your MXML file Facebook.mxml as it will conflict with classes in the library.
Set the path to the “FacebookTest” folder you created on the desktop.
Notice the com folder is in the project from when you extracted it earlier.
Paste this code into your MXML file:
< ?xml version="1.0" encoding="utf-8"?>
<mx :Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();">
</mx><mx :Script>
< ![CDATA[
import com.terralever.facebook.Facebook;
import com.terralever.facebook.data.photos.FacebookAlbum;
import com.terralever.facebook.delegates.photos.GetAlbums_delegate;
[Bindable] private var facebook:Facebook;
[Bindable] private var photoAlbums:Array;
private var api_key:String = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
private var secret:String = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
private function init():void {
facebook = new Facebook();
facebook.addEventListener("ready", onFacebookReady);
facebook.startDesktopSession(api_key, secret);
}
private function onFacebookReady(event:Event):void {
showAlbumsButton.enabled = true;
}
private function getAlbumsReply(event:Event):void {
var delegate:GetAlbums_delegate = event.target as GetAlbums_delegate;
photoAlbums = delegate.albums;
}
private function getAlbums():void {
facebook.photos_getAlbums(facebook.user, getAlbumsReply);
}
]]>
</mx>
<mx :Button x="10" y="10" label="Start using Facebook API" click="facebook.validateDesktopSession();" id="startButton" width="166"/>
<mx
ataGrid x="10" y="87" dataProvider="{photoAlbums}" width="166" height="170">
</mx><mx :columns>
<mx
ataGridColumn headerText="Album Name" dataField="name"/>
</mx>
<mx :Button x="10" y="40" label="Show Albums" id="showAlbumsButton" click="getAlbums()" enabled="false" width="166"/>
<pre>
Replace the API and secret key with the keys specific to your own Facebook application.
5. Testing
To make sure that everything is working properly follow these directions:
6. Conclusion
Since an SWF can be decompiled and your secret key exposed, this is not the recommended way to build an application for public use. This example is meant for personal testing and to get an idea of the basics of creating a Flex-based Facebook application.
Download the code for this tutorial – Facebook-Flex-Example-1.zip (30KB).
Hopefully you found this tutorial to be a quick and easy way to get a Flex application connecting to the Facebook API. If you have any problems or questions please leave a comment below.
Posted by: vinoddanims on: August 12, 2009
note–First try in IE still the error occurs The only way to make it works is to go adding the arguments to compiler (via Properties – Flex Compiler) :
-use-network=false
This error appears to occur when the url or file is blocked or not found by HTTPService call. For me, this error appeared when I had typed in the incorrect url in the HTTPService url property. Specifying the correct URL fixed it. To check this you can check your URL for typos or try to access the URL outside of your app to make sure it is there. Use Service Capture, Charles or Firebug to inspect the response from the server. If the file is not found the server still sends a response back (html or xhtml (xml)). Note: Additional tips and use cases are mentioned in the comments.
This error is also caused by a swf trying to access a file across a restricted domain. It’s not going to get the file if it is not allowed to access it. This behavior then generates the error. The fix in is to add a cross-domain policy file to the domain where the page is located at. The cross-domain file must specify that your domain (or any other domains) can access that URL. You can also use a proxy on your server to get the file (I have heard that there are issues with this approach with caching in certain situations).
Another cause for this error in certain browsers is caching. Use JabbyPanda’s technique to prevent caching in IE6 or set the response headers in your server side page to prevent caching.
Check out the error portal Click here
If you run into this using URLLoader, listen for the:
flash.events.HTTPStatusEvent.HTTP_STATUS
and in AIR :
flash.events.HTTPStatusEvent.HTTP_RESPONSE_STATUS
It should give you some more information (such as the status code being returned from the server).
After reading this please post your comments to help future visitors.
Posted by: vinoddanims on: July 24, 2009
Download the source and past in to ur flex builder so that u can view the application here is the down loadable file Click here
Screen shot:
Post me a commends
Thankyou
vinod.D
Recent Comments