Adobe AIR sample applications? - air

I just started to learning the Adobe AIR. I think I would learn quite fast by referring the sample applications. Can you let me know any Adobe AIR open source applications?
Thanks for your help.

Over 20 example apps (from Adobe):
http://www.adobe.com/devnet/air/samples_actionscript.html
The following sample applications will help you get started using Adobe AIR. These are basic applications built by Adobe engineers to demonstrate the capabilities of the runtime.

There are 75 air samples here http://code.google.com/p/jsairsamples/

You can thousands of code samples, implementation in the Tour De Flex app. This app is like a documentation and also a component library which shows small code implementation of what the components displayed can do.
You can get it here.

Related

Alternatives to playN

i want to create games for multiple platforms. I want to code my games one against a common API/framework and the framework could compile the game for multiple platforms. I want the game to work as an HTML game in all browsers and also can be complied as a native app for android, iOS.
Based on these requirements i landed up on playN and currently exploring its capabilities but really stuck because of poor documentation and tutorials. though the implemented samples do help.
is there any other such frameworks probably more mature than playN with the above said capabilities.
thanks, responses much appreciated.
libGDX is a Java solution, although the What are some alternatives to PlayN? page shows other alternatives too.
This post compares PlayN and libGDX: libgdx or playn?

Creating and using DLL in Symbian c++

i am new in symbain. i have no idea how to create symbian dll and using it in a symbian application.
i am looking some sort of tutorial or guide for:
1. how to create a dll in symbian c++?
2. how to use the created dll in an symbian app?
thanks in advance.
Start at hemelix, especially here and here, then take a look at the official documentation at Nokia Symbian Belle Developers' Library which also contains examples (for example here and here).
(Let me warn you though: Symbian development is really tough. Think twice before diving in...)

Can I develop an Adobe AIR application without Flash Builder?

Can i develop an Adobe AIR application without Flash Builder?
I want to run it from command line. If you have any example please share with me.
You can use Flash Develop as an alternative to Flash Builder, which is opensource / free.
Flash Develop is the best open source tool .
Yes. You need the Flex SDK which is available free of charge here. This means you need to hook it up with an IDE of your choice. The flip side is you won't have any debugger to help you along.
Note, Adobe offers free licenses of FlashBuilder for students and unemployed professionals too! See this.

what are the down side when developing adobe AIR application?

hi
looking into the framework, what do you think about it as development framework for
cross platform desktop apps
from first look , i can see that all your source code are not encrypted
also does not support multi threaded
what else i must consider ?
i think this website gives a good overview about the pros and contras of adobe air:
http://www.itwriting.com/blog/?p=310
there are already thread here that talk about that issue:
Advantages/disadvantages of writing a web app using Adobe Air/Java as opposed to platform specfic languages?
and if you want to protect your source code, there are some things that will help you:
high performance encryption in adobe air / flash

Quickest way to build a simple Symbian app?

I have a Symbian 9.1 handset, Nokia E65, based on Nokia S60 series UI. I'd like to build a simple, full screen, graphic application. It should be able to display some text and pictures and have a basic interaction from the keyboard. That's for me only, not to be deployed.
Now, what do you think is the quickest and most painless way to have it done?
I have the following skills:
- HTML, PHP, ASP.net, JS
- ASP.net and C#, Silverlight
- Java, but mostly for networking, not UI
- Some C++
I have downloaded the Nokia IDE, but it is scary at first sight :)
Any tutorial or example are welcome!
Edit:
In particular, two questions:
is there a possibility to make a stand-alone flash application for that handset?
how about the QT mobile version?
For your device, definitely use Python for S60. It is much easier to start with than Symbian's C++ SDK and in case you ever need more low level functionality than python gives you, you can write small modules in c++ and use them in your Python program.
For a simple application like the one you are describing, Python will do just fine. You don't even need any of Nokia's IDEs / tools on the PC, you can just write the code in any text editor, copy it to the phone and test it live.
As others have mentioned, other options include:
Symbian C++ SDK : As you have discovered the tools and not the most intuitive to work with, development is not straight forward either.
Nokia's WRT : Using javascript/css/html, but it is not available for your phone.
Qt : Not available for your phone.
Java Me : Probably your second best option, your code will be slightly larger but more protable. The tools are not as straight forward as with Python, but definitely not as complicated as with Symbian.
If you think you may like to do some further development on the Symbian platform in future, I'd strongly suggest looking at Qt. Unfortunately, however, you can't use it on your E65, since Qt requires S60 3.1 or higher. (The E65 runs S60 3.0).
Since Qt coding in done in C++, you also have access to native platform APIs if required. For most apps however, the (considerably more user-friendly) Qt APIs provide all the functionality you need.
Depending on your background, the learning curve may be steeper than using Java or Python, but the pay-off is that you get access to a very powerful toolkit. And of course, as long as you use only Qt APIs, your app should be easily portable to other Qt platforms if necessary.
Go for Java ME.
All the things you list in your post is possible to do in Java.
The Symbian SDK for C++ can be downloaded here.
NSBasic is another option.
Kindness,
Dan
May I suggest Python? For newer Symbian handsets I'd recommend Web Runtime (WRT), but it is not supported on good old E65.
I'm obviously biased but I would suggest getting the 2D graphics example code from the "Quick Recipes On Symbian OS" book:
If you know HTML and JS already, you should be able to write a Web widget for your Symbian device pretty easily, using the tools available through Forum Nokia. More info here:
http://www.forum.nokia.com/Technology_Topics/Web_Technologies/Web_Runtime/
These widgets are standalone full screen applications that use the device WebKit browser engine for rendering and UI. You can also use keyboard inputs and customize the softkeys if you wish.