Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Vertically align text next to an image
Hey Readers!
Web pages are incomplete without images. Images add visual appeal to our websites.
There are situations when we want to put lines of text right next to an image. The text might be some sort of description of the image, or anyth...
How to make Bootstrap columns all the same height?
Hello Readers!
Bootstrap is the most amazing HTML and CSS framework by far. Also, the grid system is near to perfect.
It has columns and rows to keep our content just in place perfectly. But everything has its weak point.
Bootstrap has i...
How to convert .AIR file to .EXE?
Hi Developers,
How to convert .AIR to .EXE?, How to silently install the .AIR file on windows desktop when the system does not have pre-install Adobe AIR?, it's a basic problem faced by every flash developers when working on windows deskto...
Overview of Flex box CSS3 with demo
It is so called the new layout which is given by CSS3.
It is an improved version of our native block model in which we uses float properties.
It mainly consists of two main thing.
1. Flex container
2. Fex items
1. Flex container - ...
Debugging in AS3
AS3 OVERVIEW
Action Script is a Object Oriented programming language which is used for developing the websites and software which uses Adobe Flash Platform as their medium. For the Flash designer or the animator this language has a great scope...
Guide to Flexbox
pre{padding:4px;margin:5px 0;border-radius:0;color:#fff;background:#333;border:none;}
Introduction :
The flexible box called as flexbox is an powerful idea to give the container ability to alter their items
You can adjust child eleme...
Full Screen on Flex
Some time we need to apply the full screen in swf. The following code can be used for full screen.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns....
Singleton Class in flex
SINGLETON CLASS
In object-oriented programming , a singleton class is a class that can have only one object (an instance of the class) at a time.
It's good when you only want one object across the whole of your application
It is usually used...
Loading 3d Model with Away3d
When working with Away3D youll eventually need to load a complex model.
The code for loading a 3D model into Away3D is fairly easy.
It is almost as simple as loading a plane, cube, or cone.
this code is about loading a 3d stadium.
1.Load ...
How to know the device capabilities using as3 using flex
Capabilites of a device can be known by using Capabilities class.
1.Capabilities class is used to determine in which environment swf is running.
2.By using Capabilities class we can know the resolution of the users system, language of the u...
Loading an external SWF file and Instantiate Class From a swf in flex using as3
SWF files are loaded using the Loader class:
1.Create a new URLRequest object with the url of the file.
2.Create a new Loader object.
3.Call the Loader object's load() method, passing the URLRequest instance as a parameter.
4.Call the addChil...