Opening for Adobe AIR developer with fluency in as3 in kolkata (India)

There is a job opening, requiring action script developer with knowledge in Adobe air for mobile development.  Please contact at the provided contact number for more info. Developer must have some experience in working with Adobe AIR on mobile devices.  Developers preferred in Kolkata (India) only.

(more…)

last comments
Rachana Dhabalia
Rachana Dhabalia

Oh great news. My one of the friend is qualified for your job opportunity. I will surely tell him this…

Pantel T-Pad WS802C 2G – Beating expectations in the tablet market !!

Indian telecom company BSNL has recently released a cool tablet based on android ice cream sandwich. If you are expecting another cheap tablet with mediocre specs here you are really going be shocked. Its something really different than whats coming to the market at similar price range.

 

Highlights (courtesy of  pantel.in)

The 8-inch multi-touch capacitive screen Penta T-Pad WS802C -2G with voice calling has been designed to best suit the needs of avid tech–savvy youngsters, business environments, multi-tasking homemakers and the student fraternity alike. It is endowed with 1GHz Cortex A8 processor,  powerful 1GB DDRIII RAM and 8GB internal memory, which is expandable upto 32GB. The Tablet PC apart from 2G SIM connectivity also supports 3G through a dongle and Wi-Fi for connectivity needs. Extra care has been taken to design this influential machine including features like Bluetooth, 3D enabled and pre-installed education content to keep up with the desirability for one and all.

The device comes with a full complement of ports, including Mini and Host USB, SD Card, and HDMI to simplify the exploitation of additional peripherals. Penta T-Pad WS802C-2G further comes engineered with a 5000 mAh battery, which can give users browsing time of approximately 5-6 hours..

(more…)

Free P2P live broadcasting on android platform – Android Broadcaster Beta !!

Presenting the complete P2P combo package for everyone out there for free non commercial usage. Experience next generation broadcasting technology between mobile devices and desktops with ANDROID BROADCASTER and WATCHMYPEER.COM. Contact support[at]flashvisions.com for any business or technical (more…)

last comments
Chris
Chris

I have been looking for something like this to stream my storm chasing adventures to a FMS server. Works good…

NetworkInfo native extension for android – Access connectivity status, availability, detailed network state and more…

With Adobe AIR native extensions, it is extremely easy to read the Network info like , connectivity status, network availability etc on your android device from within your AIR application. This extension intends to fill up the missing gaps in the built in NetworkInfo class provided in AIR SDK  Here is how to get going…

1. Download the free version of our native extension – NetworkInfo – from:

https://flashvisions.com/goodies/air-android-extensions/networkinfo-extension/

 

2.  Create  a instance of  NetworkInfo :

import com.flashvisions.mobile.android.extensions.net.NetworkInfo;

var networkInfo:NetworkInfo = new NetworkInfo();

 

3. Request information through public functions

trace(networkInfo.getCoarseState());
trace(networkInfo.getDetailedState());
trace(networkInfo.isNetworkConnected());
trace(networkInfo.isNetworkAvailable());

 

Return values for getDetailedState() and getCoarseState() are CONSTANT names from thr original Android API, NetworkInfo.DetailedState and NetworkInfo.State respectively.

http://developer.android.com/reference/android/net/NetworkInfo.DetailedState.html
http://developer.android.com/reference/android/net/NetworkInfo.State.html

 

Download Native Extension